Merge branch 'master' into 2352-phased-pipeline-instance-state
[arvados.git] / services / api / test / test_helper.rb
1 ENV["RAILS_ENV"] = "test"
2 require File.expand_path('../../config/environment', __FILE__)
3 require 'rails/test_help'
4
5 class ActiveSupport::TestCase
6   # Setup all fixtures in test/fixtures/*.(yml|csv) for all tests in alphabetical order.
7   #
8   # Note: You'll currently still have to declare fixtures explicitly in integration tests
9   # -- they do not yet inherit this setting
10   fixtures :all
11
12   teardown do
13     Thread.current[:api_client_ip_address] = nil
14     Thread.current[:api_client_authorization] = nil
15     Thread.current[:api_client_uuid] = nil
16     Thread.current[:api_client] = nil
17     Thread.current[:user] = nil
18   end
19
20   def expect_json
21     self.request.headers["Accept"] = "text/json"
22   end
23
24   def authorize_with(api_client_auth_name)
25     self.request.env['HTTP_AUTHORIZATION'] = "OAuth2 #{api_client_authorizations(api_client_auth_name).api_token}"
26   end
27
28   # Add more helper methods to be used by all tests here...
29 end
30
31 class ActionDispatch::IntegrationTest
32
33   teardown do
34     Thread.current[:api_client_ip_address] = nil
35     Thread.current[:api_client_authorization] = nil
36     Thread.current[:api_client_uuid] = nil
37     Thread.current[:api_client] = nil
38     Thread.current[:user] = nil
39   end
40
41   def jresponse
42     @jresponse ||= ActiveSupport::JSON.decode @response.body
43   end
44
45   def auth auth_fixture
46     {'HTTP_AUTHORIZATION' => "OAuth2 #{api_client_authorizations(auth_fixture).api_token}"}
47   end
48 end
49
50 # Ensure permissions are computed from the test fixtures.
51 User.invalidate_permissions_cache