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
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 class ActiveSupport::TestCase
42 include FactoryGirl::Syntax::Methods
45 include ArvadosTestSupport
48 Thread.current[:api_client_ip_address] = nil
49 Thread.current[:api_client_authorization] = nil
50 Thread.current[:api_client_uuid] = nil
51 Thread.current[:api_client] = nil
52 Thread.current[:user] = nil
56 def assert_not_allowed
57 # Provide a block that calls a Rails boolean "true or false" success value,
58 # like model.save or model.destroy. This method will test that it either
59 # returns false, or raises a Permission Denied exception.
62 rescue ArvadosModel::PermissionDeniedError
66 def add_permission_link from_who, to_what, perm_type
68 Link.create!(tail_uuid: from_who.uuid,
69 head_uuid: to_what.uuid,
70 link_class: 'permission',
75 def restore_configuration
76 # Restore configuration settings changed during tests
77 $application_config.each do |k,v|
79 Rails.configuration.send (k + '='), v
84 def set_user_from_auth(auth_name)
85 client_auth = api_client_authorizations(auth_name)
86 Thread.current[:api_client_authorization] = client_auth
87 Thread.current[:api_client] = client_auth.api_client
88 Thread.current[:user] = client_auth.user
92 self.request.headers["Accept"] = "text/json"
95 def authorize_with api_client_auth_name
96 authorize_with_token api_client_authorizations(api_client_auth_name).api_token
99 def authorize_with_token token
101 t = t.api_token if t.respond_to? :api_token
102 ArvadosApiToken.new.call("rack.input" => "",
103 "HTTP_AUTHORIZATION" => "OAuth2 #{t}")
107 class ActionController::TestCase
112 def check_counter action
115 assert_equal 1, 2, "Multiple actions in functional test"
119 [:get, :post, :put, :patch, :delete].each do |method|
120 define_method method do |action, *args|
127 class ActionDispatch::IntegrationTest
129 Thread.current[:api_client_ip_address] = nil
130 Thread.current[:api_client_authorization] = nil
131 Thread.current[:api_client_uuid] = nil
132 Thread.current[:api_client] = nil
133 Thread.current[:user] = nil
137 # Ensure permissions are computed from the test fixtures.
138 User.invalidate_permissions_cache