1 # Copyright (C) The Arvados Authors. All rights reserved.
3 # SPDX-License-Identifier: AGPL-3.0
5 require 'update_permissions'
7 ENV["RAILS_ENV"] = "test"
8 unless ENV["NO_COVERAGE_TEST"]
10 verbose_orig = $VERBOSE
14 require 'simplecov-rcov'
16 $VERBOSE = verbose_orig
18 class SimpleCov::Formatter::MergedFormatter
20 SimpleCov::Formatter::HTMLFormatter.new.format(result)
21 SimpleCov::Formatter::RcovFormatter.new.format(result)
24 SimpleCov.formatter = SimpleCov::Formatter::MergedFormatter
27 add_filter 'initializers/secret_token'
28 add_filter 'initializers/omniauth'
31 $stderr.puts "SimpleCov unavailable (#{e}). Proceeding without."
35 require File.expand_path('../../config/environment', __FILE__)
36 require 'rails/test_help'
38 require 'mocha/minitest'
40 module ArvadosTestSupport
42 Oj.strict_load response.body
45 def api_token(api_client_auth_name)
46 api_client_authorizations(api_client_auth_name).token
49 def auth(api_client_auth_name)
50 {'HTTP_AUTHORIZATION' => "Bearer #{api_token(api_client_auth_name)}"}
54 return lambda { model.errors.full_messages.inspect }
58 class ActiveSupport::TestCase
59 include FactoryBot::Syntax::Methods
62 include ArvadosTestSupport
63 include CurrentApiClient
66 Thread.current[:api_client_ip_address] = nil
67 Thread.current[:api_client_authorization] = nil
68 Thread.current[:api_client_uuid] = nil
69 Thread.current[:api_client] = nil
70 Thread.current[:token] = nil
71 Thread.current[:user] = nil
76 # Confirm that any changed configuration doesn't include non-symbol keys
77 $arvados_config.keys.each do |conf_name|
78 conf = Rails.configuration.send(conf_name)
79 confirm_keys_as_symbols(conf, conf_name) if conf.respond_to?('keys')
83 def assert_equal(expect, *args)
91 def assert_not_allowed
92 # Provide a block that calls a Rails boolean "true or false" success value,
93 # like model.save or model.destroy. This method will test that it either
94 # returns false, or raises a Permission Denied exception.
97 rescue ArvadosModel::PermissionDeniedError
101 def add_permission_link from_who, to_what, perm_type
102 act_as_system_user do
103 Link.create!(tail_uuid: from_who.uuid,
104 head_uuid: to_what.uuid,
105 link_class: 'permission',
110 def confirm_keys_as_symbols(conf, conf_name)
111 assert(conf.is_a?(ActiveSupport::OrderedOptions), "#{conf_name} should be an OrderedOptions object")
112 conf.keys.each do |k|
113 assert(k.is_a?(Symbol), "Key '#{k}' on section '#{conf_name}' should be a Symbol")
114 confirm_keys_as_symbols(conf[k], "#{conf_name}.#{k}") if conf[k].respond_to?('keys')
118 def restore_configuration
119 # Restore configuration settings changed during tests
120 ConfigLoader.copy_into_config $arvados_config, Rails.configuration
121 ConfigLoader.copy_into_config $remaining_config, Rails.configuration
124 def set_user_from_auth(auth_name)
125 client_auth = api_client_authorizations(auth_name)
126 client_auth.user.forget_cached_group_perms
127 Thread.current[:api_client_authorization] = client_auth
128 Thread.current[:api_client] = client_auth.api_client
129 Thread.current[:user] = client_auth.user
130 Thread.current[:token] = client_auth.token
134 self.request.headers["Accept"] = "text/json"
137 def authorize_with api_client_auth_name
138 authorize_with_token api_client_authorizations(api_client_auth_name).token
141 def authorize_with_token token
143 t = t.token if t.respond_to? :token
144 ArvadosApiToken.new.call("rack.input" => "",
145 "HTTP_AUTHORIZATION" => "Bearer #{t}")
148 def salt_token(fixture:, remote:)
149 auth = api_client_authorizations(fixture)
151 token = auth.api_token
152 hmac = OpenSSL::HMAC.hexdigest('sha1', token, remote)
153 return "v2/#{uuid}/#{hmac}"
156 def self.skip_slow_tests?
157 !(ENV['RAILS_TEST_SHORT'] || '').empty?
160 def self.skip(*args, &block)
163 def self.slow_test(name, &block)
164 test(name, &block) unless skip_slow_tests?
168 class ActionController::TestCase
171 self.request.headers['Accept'] = 'application/json'
172 self.request.headers['Content-Type'] = 'application/json'
175 def check_counter action
177 if @test_counter == 2
178 assert_equal 1, 2, "Multiple actions in functional test"
182 [:get, :post, :put, :patch, :delete].each do |method|
183 define_method method do |action, *args|
185 # After Rails 5.0 upgrade, some params don't get properly serialized.
186 # One case are filters: [['attr', 'op', 'val']] become [['attr'], ['op'], ['val']]
187 # if not passed upstream as a JSON string.
188 if args[0].is_a?(Hash) && args[0][:params].is_a?(Hash)
189 args[0][:params].each do |key, _|
190 next if key == :exclude_script_versions # Job Reuse tests
191 # Keys could be: :filters, :where, etc
192 if [Array, Hash].include?(args[0][:params][key].class)
193 args[0][:params][key] = SafeJSON.dump(args[0][:params][key])
208 @test_case.shutdown()
213 def self.startup; end
214 def self.shutdown; end
217 class ActionDispatch::IntegrationTest
219 Thread.current[:api_client_ip_address] = nil
220 Thread.current[:api_client_authorization] = nil
221 Thread.current[:api_client_uuid] = nil
222 Thread.current[:api_client] = nil
223 Thread.current[:token] = nil
224 Thread.current[:user] = nil
228 # Ensure permissions are computed from the test fixtures.