1 ENV["RAILS_ENV"] = "test"
2 unless ENV["NO_COVERAGE_TEST"]
5 require 'simplecov-rcov'
6 class SimpleCov::Formatter::MergedFormatter
8 SimpleCov::Formatter::HTMLFormatter.new.format(result)
9 SimpleCov::Formatter::RcovFormatter.new.format(result)
12 SimpleCov.formatter = SimpleCov::Formatter::MergedFormatter
15 add_filter 'initializers/secret_token'
16 add_filter 'initializers/omniauth'
19 $stderr.puts "SimpleCov unavailable (#{e}). Proceeding without."
23 require File.expand_path('../../config/environment', __FILE__)
24 require 'rails/test_help'
27 module ArvadosTestSupport
29 Oj.strict_load response.body
32 def api_token(api_client_auth_name)
33 api_client_authorizations(api_client_auth_name).api_token
36 def auth(api_client_auth_name)
37 {'HTTP_AUTHORIZATION' => "OAuth2 #{api_token(api_client_auth_name)}"}
41 return lambda { model.errors.full_messages.inspect }
45 class ActiveSupport::TestCase
46 include FactoryGirl::Syntax::Methods
49 include ArvadosTestSupport
50 include CurrentApiClient
53 Rails.logger.warn "\n\n#{'=' * 70}\n#{self.class}\##{method_name}\n#{'-' * 70}\n\n"
57 Thread.current[:api_client_ip_address] = nil
58 Thread.current[:api_client_authorization] = nil
59 Thread.current[:api_client_uuid] = nil
60 Thread.current[:api_client] = nil
61 Thread.current[:user] = nil
65 def assert_not_allowed
66 # Provide a block that calls a Rails boolean "true or false" success value,
67 # like model.save or model.destroy. This method will test that it either
68 # returns false, or raises a Permission Denied exception.
71 rescue ArvadosModel::PermissionDeniedError
75 def add_permission_link from_who, to_what, perm_type
77 Link.create!(tail_uuid: from_who.uuid,
78 head_uuid: to_what.uuid,
79 link_class: 'permission',
84 def restore_configuration
85 # Restore configuration settings changed during tests
86 $application_config.each do |k,v|
88 Rails.configuration.send (k + '='), v
93 def set_user_from_auth(auth_name)
94 client_auth = api_client_authorizations(auth_name)
95 Thread.current[:api_client_authorization] = client_auth
96 Thread.current[:api_client] = client_auth.api_client
97 Thread.current[:user] = client_auth.user
101 self.request.headers["Accept"] = "text/json"
104 def authorize_with api_client_auth_name
105 authorize_with_token api_client_authorizations(api_client_auth_name).api_token
108 def authorize_with_token token
110 t = t.api_token if t.respond_to? :api_token
111 ArvadosApiToken.new.call("rack.input" => "",
112 "HTTP_AUTHORIZATION" => "OAuth2 #{t}")
115 def self.skip_slow_tests?
116 !(ENV['RAILS_TEST_SHORT'] || '').empty?
119 def self.skip(*args, &block)
122 def self.slow_test(name, &block)
123 define_method(name, block) unless skip_slow_tests?
126 alias_method :skip, :omit
129 class ActionController::TestCase
134 def check_counter action
136 if @test_counter == 2
137 assert_equal 1, 2, "Multiple actions in functional test"
141 [:get, :post, :put, :patch, :delete].each do |method|
142 define_method method do |action, *args|
155 @test_case.shutdown()
160 def self.startup; end
161 def self.shutdown; end
164 class ActionDispatch::IntegrationTest
166 Thread.current[:api_client_ip_address] = nil
167 Thread.current[:api_client_authorization] = nil
168 Thread.current[:api_client_uuid] = nil
169 Thread.current[:api_client] = nil
170 Thread.current[:user] = nil
174 # Ensure permissions are computed from the test fixtures.
175 User.invalidate_permissions_cache