1 ENV["RAILS_ENV"] = "test" if (ENV["RAILS_ENV"] != "diagnostics")
3 unless ENV["NO_COVERAGE_TEST"]
6 require 'simplecov-rcov'
7 class SimpleCov::Formatter::MergedFormatter
9 SimpleCov::Formatter::HTMLFormatter.new.format(result)
10 SimpleCov::Formatter::RcovFormatter.new.format(result)
13 SimpleCov.formatter = SimpleCov::Formatter::MergedFormatter
16 add_filter 'initializers/secret_token'
19 $stderr.puts "SimpleCov unavailable (#{e}). Proceeding without."
23 require File.expand_path('../../config/environment', __FILE__)
24 require 'rails/test_help'
25 require 'mocha/mini_test'
27 class ActiveSupport::TestCase
28 # Setup all fixtures in test/fixtures/*.(yml|csv) for all tests in
31 # Note: You'll currently still have to declare fixtures explicitly
32 # in integration tests -- they do not yet inherit this setting
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']
40 Thread.current[:arvados_api_token] = nil
41 Thread.current[:user] = nil
42 Thread.current[:reader_tokens] = nil
43 # Diagnostics suite doesn't run a server, so there's no cache to clear.
44 Rails.cache.clear unless (Rails.env == "diagnostics")
45 # Restore configuration settings changed during tests
46 $application_config.each do |k,v|
48 Rails.configuration.send (k + '='), v
54 module ApiFixtureLoader
55 def self.included(base)
56 base.extend(ClassMethods)
61 def api_fixture(name, *keys)
62 # Returns the data structure from the named API server test fixture.
63 @@api_fixtures[name] ||= \
65 path = File.join(ApiServerForTests::ARV_API_SERVER_DIR,
66 'test', 'fixtures', "#{name}.yml")
68 trim_index = file.index('# Test Helper trims the rest of the file')
69 file = file[0, trim_index] if trim_index
72 keys.inject(@@api_fixtures[name]) { |hash, key| hash[key] }
75 def api_fixture(name, *keys)
76 self.class.api_fixture(name, *keys)
79 def find_fixture(object_class, name)
80 object_class.find(api_fixture(object_class.to_s.pluralize.underscore,
85 class ActiveSupport::TestCase
86 include ApiFixtureLoader
87 def session_for api_client_auth_name
89 arvados_api_token: api_fixture('api_client_authorizations')[api_client_auth_name.to_s]['api_token']
93 Oj.load(@response.body)
97 class ApiServerForTests
98 ARV_API_SERVER_DIR = File.expand_path('../../../../services/api', __FILE__)
99 SERVER_PID_PATH = File.expand_path('tmp/pids/wbtest-server.pid', ARV_API_SERVER_DIR)
100 WEBSOCKET_PID_PATH = File.expand_path('tmp/pids/wstest-server.pid', ARV_API_SERVER_DIR)
101 @main_process_pid = $$
104 $stderr.puts "_system #{cmd.inspect}"
105 Bundler.with_clean_env do
106 if not system({'RAILS_ENV' => 'test', "ARVADOS_WEBSOCKETS" => (if @websocket then "ws-only" end)}, *cmd)
107 raise RuntimeError, "#{cmd[0]} returned exit code #{$?.exitstatus}"
113 unless File.exists? './self-signed.key'
114 _system('openssl', 'req', '-new', '-x509', '-nodes',
115 '-out', './self-signed.pem',
116 '-keyout', './self-signed.key',
118 '-subj', '/CN=localhost')
123 if (pid = find_server_pid)
124 $stderr.puts "Sending TERM to API server, pid #{pid}"
125 Process.kill 'TERM', pid
132 pid = IO.read(@pidfile).to_i
133 $stderr.puts "API server is running, pid #{pid.inspect}"
140 ::MiniTest.after_run do
144 @websocket = args.include?("--websockets")
146 @pidfile = if @websocket
152 # Kill server left over from previous test run
155 Capybara.javascript_driver = :poltergeist
156 Dir.chdir(ARV_API_SERVER_DIR) do |apidir|
157 ENV["NO_COVERAGE_TEST"] = "1"
159 _system('bundle', 'exec', 'passenger', 'start', '-d', '-p3333',
160 '--pid-file', @pidfile)
163 _system('bundle', 'exec', 'rake', 'db:test:load')
164 _system('bundle', 'exec', 'rake', 'db:fixtures:load')
165 _system('bundle', 'exec', 'passenger', 'start', '-d', '-p3000',
166 '--pid-file', @pidfile,
168 '--ssl-certificate', 'self-signed.pem',
169 '--ssl-certificate-key', 'self-signed.key')
171 timeout = Time.now.tv_sec + 10
173 while (not good_pid) and (Time.now.tv_sec < timeout)
175 server_pid = find_server_pid
176 good_pid = (server_pid and
178 (Process.kill(0, server_pid) rescue false))
181 raise RuntimeError, "could not find API server Rails pid"
187 class ActionController::TestCase
192 def check_counter action
195 assert_equal 1, 2, "Multiple actions in functional test"
199 [:get, :post, :put, :patch, :delete].each do |method|
200 define_method method do |action, *args|
207 # If it quacks like a duck, it must be a HTTP request object.
222 if ENV["RAILS_ENV"].eql? 'test'
223 ApiServerForTests.new.run
224 ApiServerForTests.new.run ["--websockets"]