From 53c1ae99f587d6d7f85a3910f97948906ebba877 Mon Sep 17 00:00:00 2001 From: Jarrod Carlson Date: Wed, 5 Oct 2011 00:18:37 -0400 Subject: Added failing test to demonstrate digest authentication failure --- actionpack/test/controller/http_digest_authentication_test.rb | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'actionpack/test/controller') diff --git a/actionpack/test/controller/http_digest_authentication_test.rb b/actionpack/test/controller/http_digest_authentication_test.rb index b011536717..25fda58232 100644 --- a/actionpack/test/controller/http_digest_authentication_test.rb +++ b/actionpack/test/controller/http_digest_authentication_test.rb @@ -208,6 +208,16 @@ class HttpDigestAuthenticationTest < ActionController::TestCase assert !ActionController::HttpAuthentication::Digest.validate_digest_response(@request, "SuperSecret"){nil} end + test "authentication request with request-uri ending in '?'" do + @request.env['HTTP_AUTHORIZATION'] = encode_credentials(:username => 'pretty', :password => 'please', + :uri => '/http_digest_authentication_test/dummy_digest?') + @request.env['PATH_INFO'] = "/http_digest_authentication_test/dummy_digest?" + get :display + + assert_response :success + assert_equal 'Definitely Maybe', @response.body + end + private def encode_credentials(options) -- cgit v1.2.3