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'
25 require 'mocha/mini_test'
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
52 Rails.logger.warn "\n\n#{'=' * 70}\n#{self.class}\##{method_name}\n#{'-' * 70}\n\n"
56 Thread.current[:api_client_ip_address] = nil
57 Thread.current[:api_client_authorization] = nil
58 Thread.current[:api_client_uuid] = nil
59 Thread.current[:api_client] = nil
60 Thread.current[:user] = nil
64 def assert_not_allowed
65 # Provide a block that calls a Rails boolean "true or false" success value,
66 # like model.save or model.destroy. This method will test that it either
67 # returns false, or raises a Permission Denied exception.
70 rescue ArvadosModel::PermissionDeniedError
74 def add_permission_link from_who, to_what, perm_type
76 Link.create!(tail_uuid: from_who.uuid,
77 head_uuid: to_what.uuid,
78 link_class: 'permission',
83 def restore_configuration
84 # Restore configuration settings changed during tests
85 $application_config.each do |k,v|
87 Rails.configuration.send (k + '='), v
92 def set_user_from_auth(auth_name)
93 client_auth = api_client_authorizations(auth_name)
94 Thread.current[:api_client_authorization] = client_auth
95 Thread.current[:api_client] = client_auth.api_client
96 Thread.current[:user] = client_auth.user
100 self.request.headers["Accept"] = "text/json"
103 def authorize_with api_client_auth_name
104 authorize_with_token api_client_authorizations(api_client_auth_name).api_token
107 def authorize_with_token token
109 t = t.api_token if t.respond_to? :api_token
110 ArvadosApiToken.new.call("rack.input" => "",
111 "HTTP_AUTHORIZATION" => "OAuth2 #{t}")
115 skip "RAILS_TEST_SHORT is set" unless (ENV['RAILS_TEST_SHORT'] || '').empty?
119 class ActionController::TestCase
124 def check_counter action
126 if @test_counter == 2
127 assert_equal 1, 2, "Multiple actions in functional test"
131 [:get, :post, :put, :patch, :delete].each do |method|
132 define_method method do |action, *args|
139 class ActionDispatch::IntegrationTest
141 Thread.current[:api_client_ip_address] = nil
142 Thread.current[:api_client_authorization] = nil
143 Thread.current[:api_client_uuid] = nil
144 Thread.current[:api_client] = nil
145 Thread.current[:user] = nil
149 # Ensure permissions are computed from the test fixtures.
150 User.invalidate_permissions_cache