1 # Copyright (C) The Arvados Authors. All rights reserved.
3 # SPDX-License-Identifier: AGPL-3.0
5 ENV["RAILS_ENV"] = "test"
6 unless ENV["NO_COVERAGE_TEST"]
8 verbose_orig = $VERBOSE
12 require 'simplecov-rcov'
14 $VERBOSE = verbose_orig
16 class SimpleCov::Formatter::MergedFormatter
18 SimpleCov::Formatter::HTMLFormatter.new.format(result)
19 SimpleCov::Formatter::RcovFormatter.new.format(result)
22 SimpleCov.formatter = SimpleCov::Formatter::MergedFormatter
25 add_filter 'initializers/secret_token'
26 add_filter 'initializers/omniauth'
29 $stderr.puts "SimpleCov unavailable (#{e}). Proceeding without."
33 require File.expand_path('../../config/environment', __FILE__)
34 require 'rails/test_help'
36 require 'mocha/mini_test'
38 module ArvadosTestSupport
40 Oj.strict_load response.body
43 def api_token(api_client_auth_name)
44 api_client_authorizations(api_client_auth_name).api_token
47 def auth(api_client_auth_name)
48 {'HTTP_AUTHORIZATION' => "OAuth2 #{api_token(api_client_auth_name)}"}
52 return lambda { model.errors.full_messages.inspect }
56 class ActiveSupport::TestCase
57 include FactoryGirl::Syntax::Methods
60 include ArvadosTestSupport
61 include CurrentApiClient
64 Thread.current[:api_client_ip_address] = nil
65 Thread.current[:api_client_authorization] = nil
66 Thread.current[:api_client_uuid] = nil
67 Thread.current[:api_client] = nil
68 Thread.current[:user] = nil
72 def assert_equal(expect, *args)
80 def assert_not_allowed
81 # Provide a block that calls a Rails boolean "true or false" success value,
82 # like model.save or model.destroy. This method will test that it either
83 # returns false, or raises a Permission Denied exception.
86 rescue ArvadosModel::PermissionDeniedError
90 def add_permission_link from_who, to_what, perm_type
92 Link.create!(tail_uuid: from_who.uuid,
93 head_uuid: to_what.uuid,
94 link_class: 'permission',
99 def restore_configuration
100 # Restore configuration settings changed during tests
101 $application_config.each do |k,v|
102 if k.match(/^[^.]*$/)
103 Rails.configuration.send (k + '='), v
108 def set_user_from_auth(auth_name)
109 client_auth = api_client_authorizations(auth_name)
110 Thread.current[:api_client_authorization] = client_auth
111 Thread.current[:api_client] = client_auth.api_client
112 Thread.current[:user] = client_auth.user
116 self.request.headers["Accept"] = "text/json"
119 def authorize_with api_client_auth_name
120 authorize_with_token api_client_authorizations(api_client_auth_name).api_token
123 def authorize_with_token token
125 t = t.api_token if t.respond_to? :api_token
126 ArvadosApiToken.new.call("rack.input" => "",
127 "HTTP_AUTHORIZATION" => "OAuth2 #{t}")
130 def salt_token(fixture:, remote:)
131 auth = api_client_authorizations(fixture)
133 token = auth.api_token
134 hmac = OpenSSL::HMAC.hexdigest('sha1', token, remote)
135 return "v2/#{uuid}/#{hmac}"
138 def self.skip_slow_tests?
139 !(ENV['RAILS_TEST_SHORT'] || '').empty?
142 def self.skip(*args, &block)
145 def self.slow_test(name, &block)
146 define_method(name, block) unless skip_slow_tests?
150 class ActionController::TestCase
155 def check_counter action
157 if @test_counter == 2
158 assert_equal 1, 2, "Multiple actions in functional test"
162 [:get, :post, :put, :patch, :delete].each do |method|
163 define_method method do |action, *args|
176 @test_case.shutdown()
181 def self.startup; end
182 def self.shutdown; end
185 class ActionDispatch::IntegrationTest
187 Thread.current[:api_client_ip_address] = nil
188 Thread.current[:api_client_authorization] = nil
189 Thread.current[:api_client_uuid] = nil
190 Thread.current[:api_client] = nil
191 Thread.current[:user] = nil
195 # Ensure permissions are computed from the test fixtures.
196 User.invalidate_permissions_cache