Merge branch '3381-job-progress-bar-bug' closes #3381
[arvados.git] / apps / workbench / test / test_helper.rb
1 ENV["RAILS_ENV"] = "test" if (ENV["RAILS_ENV"] != "diagnostics")
2
3 unless ENV["NO_COVERAGE_TEST"]
4   begin
5     require 'simplecov'
6     require 'simplecov-rcov'
7     class SimpleCov::Formatter::MergedFormatter
8       def format(result)
9         SimpleCov::Formatter::HTMLFormatter.new.format(result)
10         SimpleCov::Formatter::RcovFormatter.new.format(result)
11       end
12     end
13     SimpleCov.formatter = SimpleCov::Formatter::MergedFormatter
14     SimpleCov.start do
15       add_filter '/test/'
16       add_filter 'initializers/secret_token'
17     end
18   rescue Exception => e
19     $stderr.puts "SimpleCov unavailable (#{e}). Proceeding without."
20   end
21 end
22
23 require File.expand_path('../../config/environment', __FILE__)
24 require 'rails/test_help'
25 require 'mocha/mini_test'
26
27 class ActiveSupport::TestCase
28   # Setup all fixtures in test/fixtures/*.(yml|csv) for all tests in
29   # alphabetical order.
30   #
31   # Note: You'll currently still have to declare fixtures explicitly
32   # in integration tests -- they do not yet inherit this setting
33   fixtures :all
34   def use_token token_name
35     auth = api_fixture('api_client_authorizations')[token_name.to_s]
36     Thread.current[:arvados_api_token] = auth['api_token']
37   end
38
39   teardown do
40     Thread.current[:arvados_api_token] = nil
41     Thread.current[:reader_tokens] = nil
42     # Restore configuration settings changed during tests
43     $application_config.each do |k,v|
44       if k.match /^[^.]*$/
45         Rails.configuration.send (k + '='), v
46       end
47     end
48   end
49 end
50
51 module ApiFixtureLoader
52   def self.included(base)
53     base.extend(ClassMethods)
54   end
55
56   module ClassMethods
57     @@api_fixtures = {}
58     def api_fixture(name)
59       # Returns the data structure from the named API server test fixture.
60       @@api_fixtures[name] ||= \
61       begin
62         path = File.join(ApiServerForTests::ARV_API_SERVER_DIR,
63                          'test', 'fixtures', "#{name}.yml")
64         YAML.load(IO.read(path))
65       end
66     end
67   end
68   def api_fixture name
69     self.class.api_fixture name
70   end
71 end
72
73 class ActiveSupport::TestCase
74   include ApiFixtureLoader
75   def session_for api_client_auth_name
76     {
77       arvados_api_token: api_fixture('api_client_authorizations')[api_client_auth_name.to_s]['api_token']
78     }
79   end
80   def json_response
81     Oj.load(@response.body)
82   end
83 end
84
85 class ApiServerForTests
86   ARV_API_SERVER_DIR = File.expand_path('../../../../services/api', __FILE__)
87   SERVER_PID_PATH = File.expand_path('tmp/pids/wbtest-server.pid', ARV_API_SERVER_DIR)
88   @main_process_pid = $$
89
90   def self._system(*cmd)
91     $stderr.puts "_system #{cmd.inspect}"
92     Bundler.with_clean_env do
93       if not system({'RAILS_ENV' => 'test'}, *cmd)
94         raise RuntimeError, "#{cmd[0]} returned exit code #{$?.exitstatus}"
95       end
96     end
97   end
98
99   def self.make_ssl_cert
100     unless File.exists? './self-signed.key'
101       _system('openssl', 'req', '-new', '-x509', '-nodes',
102               '-out', './self-signed.pem',
103               '-keyout', './self-signed.key',
104               '-days', '3650',
105               '-subj', '/CN=localhost')
106     end
107   end
108
109   def self.kill_server
110     if (pid = find_server_pid)
111       $stderr.puts "Sending TERM to API server, pid #{pid}"
112       Process.kill 'TERM', pid
113     end
114   end
115
116   def self.find_server_pid
117     pid = nil
118     begin
119       pid = IO.read(SERVER_PID_PATH).to_i
120       $stderr.puts "API server is running, pid #{pid.inspect}"
121     rescue Errno::ENOENT
122     end
123     return pid
124   end
125
126   def self.run(args=[])
127     ::MiniTest.after_run do
128       self.kill_server
129     end
130
131     # Kill server left over from previous test run
132     self.kill_server
133
134     Capybara.javascript_driver = :poltergeist
135     Dir.chdir(ARV_API_SERVER_DIR) do |apidir|
136       ENV["NO_COVERAGE_TEST"] = "1"
137       make_ssl_cert
138       _system('bundle', 'exec', 'rake', 'db:test:load')
139       _system('bundle', 'exec', 'rake', 'db:fixtures:load')
140       _system('bundle', 'exec', 'passenger', 'start', '-d', '-p3000',
141               '--pid-file', SERVER_PID_PATH,
142               '--ssl',
143               '--ssl-certificate', 'self-signed.pem',
144               '--ssl-certificate-key', 'self-signed.key')
145       timeout = Time.now.tv_sec + 10
146       good_pid = false
147       while (not good_pid) and (Time.now.tv_sec < timeout)
148         sleep 0.2
149         server_pid = find_server_pid
150         good_pid = (server_pid and
151                     (server_pid > 0) and
152                     (Process.kill(0, server_pid) rescue false))
153       end
154       if not good_pid
155         raise RuntimeError, "could not find API server Rails pid"
156       end
157     end
158   end
159 end
160
161 class ActionController::TestCase
162   setup do
163     @counter = 0
164   end
165
166   def check_counter action
167     @counter += 1
168     if @counter == 2
169       assert_equal 1, 2, "Multiple actions in functional test"
170     end
171   end
172
173   [:get, :post, :put, :patch, :delete].each do |method|
174     define_method method do |action, *args|
175       check_counter action
176       super action, *args
177     end
178   end
179 end
180
181 if ENV["RAILS_ENV"].eql? 'test'
182   ApiServerForTests.run
183 end