aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test
diff options
context:
space:
mode:
authorphoet <phoetmail@googlemail.com>2015-02-26 16:01:26 +0100
committerphoet <phoetmail@googlemail.com>2015-06-01 11:41:26 +0200
commit4b4e890781c788aa63c531d7fec19797656adda0 (patch)
tree179fde2b7cecb1711e30e5ec6334168cbe544efc /actionpack/test
parent90918b5f227b77b8b4fead67cfcff9339cd13031 (diff)
downloadrails-4b4e890781c788aa63c531d7fec19797656adda0.tar.gz
rails-4b4e890781c788aa63c531d7fec19797656adda0.tar.bz2
rails-4b4e890781c788aa63c531d7fec19797656adda0.zip
allow `Bearer` as well as `Token`
Diffstat (limited to 'actionpack/test')
-rw-r--r--actionpack/test/controller/http_token_authentication_test.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/actionpack/test/controller/http_token_authentication_test.rb b/actionpack/test/controller/http_token_authentication_test.rb
index c854ecaf21..802c17b6bf 100644
--- a/actionpack/test/controller/http_token_authentication_test.rb
+++ b/actionpack/test/controller/http_token_authentication_test.rb
@@ -87,6 +87,13 @@ class HttpTokenAuthenticationTest < ActionController::TestCase
assert_equal "HTTP Token: Access denied.\n", @response.body, "Authentication header was not properly parsed"
end
+ test "successful authentication request with Bearer instead of Token" do
+ @request.env['HTTP_AUTHORIZATION'] = 'Bearer lifo'
+ get :index
+
+ assert_response :success
+ end
+
test "authentication request without credential" do
get :display