diff options
| author | Xinhui | 2017-08-31 17:35:50 +0200 |
|---|---|---|
| committer | Xinhui | 2017-08-31 17:43:19 +0200 |
| commit | 732375cb86150cc675e1c61556cd17160e35f564 (patch) | |
| tree | 50a06e9144b2200ee015d228842731b04b839774 /spec/support/api_key.rb | |
| parent | c7ca08f191733293fc084abadc729cd3c224e120 (diff) | |
| parent | 26c4b71042d258da2fc9ccd67855219b9b012c6b (diff) | |
| download | chouette-core-732375cb86150cc675e1c61556cd17160e35f564.tar.bz2 | |
Merge branch 'master' into stif_netex_objectid
Diffstat (limited to 'spec/support/api_key.rb')
| -rw-r--r-- | spec/support/api_key.rb | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/spec/support/api_key.rb b/spec/support/api_key.rb index 9353fac15..cc08cd7f1 100644 --- a/spec/support/api_key.rb +++ b/spec/support/api_key.rb @@ -1,20 +1,28 @@ module ApiKeyHelper + def authorization_token_header(key) + {'Authorization' => "Token token=#{key}"} + end + def get_api_key - Api::V1::ApiKey.first_or_create( :referential_id => referential.id, :name => "test") + Api::V1::ApiKey.first_or_create(referential: referential, organisation: organisation) end + def config_formatted_request_with_authorization( format) request.env['HTTP_AUTHORIZATION'] = ActionController::HttpAuthentication::Token.encode_credentials( get_api_key.token) request.accept = format end + def config_formatted_request_with_dummy_authorization( format) request.env['HTTP_AUTHORIZATION'] = ActionController::HttpAuthentication::Token.encode_credentials( "dummy") request.accept = format end + def config_formatted_request_without_authorization( format) request.env['HTTP_AUTHORIZATION'] = nil request.accept = format end + def json_xml_format? request.accept == "application/json" || request.accept == "application/xml" end |
