Add simplecov-rcov.
[arvados.git] / services / api / test / test_helper.rb
1 ENV["RAILS_ENV"] = "test"
2 unless ENV["NO_COVERAGE_TEST"]
3   begin
4     require 'simplecov'
5     require 'simplecov-rcov'
6     class SimpleCov::Formatter::MergedFormatter
7       def format(result)
8         SimpleCov::Formatter::HTMLFormatter.new.format(result)
9         SimpleCov::Formatter::RcovFormatter.new.format(result)
10       end
11     end
12     SimpleCov.formatter = SimpleCov::Formatter::MergedFormatter
13     SimpleCov.start do
14       add_filter '/test/'
15       add_filter 'initializers/secret_token'
16       add_filter 'initializers/omniauth'
17     end
18   rescue Exception => e
19     $stderr.puts "SimpleCov unavailable (#{e}). Proceeding without."
20   end
21 end
22
23 require File.expand_path('../../config/environment', __FILE__)
24 require 'rails/test_help'
25
26 module ArvadosTestSupport
27   def json_response
28     ActiveSupport::JSON.decode @response.body
29   end
30
31   def api_token(api_client_auth_name)
32     api_client_authorizations(api_client_auth_name).api_token
33   end
34
35   def auth(api_client_auth_name)
36     {'HTTP_AUTHORIZATION' => "OAuth2 #{api_token(api_client_auth_name)}"}
37   end
38 end
39
40 class ActiveSupport::TestCase
41   # Setup all fixtures in test/fixtures/*.(yml|csv) for all tests in alphabetical order.
42   #
43   # Note: You'll currently still have to declare fixtures explicitly in integration tests
44   # -- they do not yet inherit this setting
45   fixtures :all
46
47   include ArvadosTestSupport
48
49   teardown do
50     Thread.current[:api_client_ip_address] = nil
51     Thread.current[:api_client_authorization] = nil
52     Thread.current[:api_client_uuid] = nil
53     Thread.current[:api_client] = nil
54     Thread.current[:user] = nil
55   end
56
57   def expect_json
58     self.request.headers["Accept"] = "text/json"
59   end
60
61   def authorize_with(api_client_auth_name)
62     ArvadosApiToken.new.call ({"rack.input" => "", "HTTP_AUTHORIZATION" => "OAuth2 #{api_client_authorizations(api_client_auth_name).api_token}"})
63   end
64 end
65
66 class ActionDispatch::IntegrationTest
67   teardown do
68     Thread.current[:api_client_ip_address] = nil
69     Thread.current[:api_client_authorization] = nil
70     Thread.current[:api_client_uuid] = nil
71     Thread.current[:api_client] = nil
72     Thread.current[:user] = nil
73   end
74 end
75
76 # Ensure permissions are computed from the test fixtures.
77 User.invalidate_permissions_cache