Refactor: convert API key tests using HTTP Basic to a shoulda macro
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4363 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
7e359d3d7e
commit
30dc4fec99
|
@ -17,68 +17,11 @@ class ApiTest::HttpBasicLoginWithApiTokenTest < ActionController::IntegrationTes
|
||||||
context "get /news" do
|
context "get /news" do
|
||||||
|
|
||||||
context "in :xml format" do
|
context "in :xml format" do
|
||||||
context "with a valid HTTP authentication using the API token" do
|
should_allow_http_basic_auth_with_key(:get, "/news.xml")
|
||||||
setup do
|
|
||||||
@user = User.generate_with_protected!
|
|
||||||
@token = Token.generate!(:user => @user, :action => 'api')
|
|
||||||
@authorization = ActionController::HttpAuthentication::Basic.encode_credentials(@token.value, 'X')
|
|
||||||
get "/news.xml", nil, :authorization => @authorization
|
|
||||||
end
|
|
||||||
|
|
||||||
should_respond_with :success
|
|
||||||
should_respond_with_content_type :xml
|
|
||||||
should "login as the user" do
|
|
||||||
assert_equal @user, User.current
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
context "with an invalid HTTP authentication" do
|
|
||||||
setup do
|
|
||||||
@user = User.generate_with_protected!
|
|
||||||
@token = Token.generate!(:user => @user, :action => 'feeds')
|
|
||||||
@authorization = ActionController::HttpAuthentication::Basic.encode_credentials(@token.value, 'X')
|
|
||||||
get "/news.xml", nil, :authorization => @authorization
|
|
||||||
end
|
|
||||||
|
|
||||||
should_respond_with :unauthorized
|
|
||||||
should_respond_with_content_type :xml
|
|
||||||
should "not login as the user" do
|
|
||||||
assert_equal User.anonymous, User.current
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
context "in :json format" do
|
context "in :json format" do
|
||||||
context "with a valid HTTP authentication" do
|
should_allow_http_basic_auth_with_key(:get, "/news.json")
|
||||||
setup do
|
|
||||||
@user = User.generate_with_protected!
|
|
||||||
@token = Token.generate!(:user => @user, :action => 'api')
|
|
||||||
@authorization = ActionController::HttpAuthentication::Basic.encode_credentials(@token.value, 'DoesNotMatter')
|
|
||||||
get "/news.json", nil, :authorization => @authorization
|
|
||||||
end
|
|
||||||
|
|
||||||
should_respond_with :success
|
|
||||||
should_respond_with_content_type :json
|
|
||||||
should "login as the user" do
|
|
||||||
assert_equal @user, User.current
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
context "with an invalid HTTP authentication" do
|
|
||||||
setup do
|
|
||||||
@user = User.generate_with_protected!
|
|
||||||
@token = Token.generate!(:user => @user, :action => 'feeds')
|
|
||||||
@authorization = ActionController::HttpAuthentication::Basic.encode_credentials(@token.value, 'DoesNotMatter')
|
|
||||||
get "/news.json", nil, :authorization => @authorization
|
|
||||||
end
|
|
||||||
|
|
||||||
should_respond_with :unauthorized
|
|
||||||
should_respond_with_content_type :json
|
|
||||||
should "not login as the user" do
|
|
||||||
assert_equal User.anonymous, User.current
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -236,6 +236,45 @@ class ActiveSupport::TestCase
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# Test that a request allows the API key with HTTP BASIC
|
||||||
|
#
|
||||||
|
# @param [Symbol] http_method the HTTP method for request (:get, :post, :put, :delete)
|
||||||
|
# @param [String] url the request url
|
||||||
|
# @param [optional, Hash] parameters additional request parameters
|
||||||
|
def self.should_allow_http_basic_auth_with_key(http_method, url, parameters={})
|
||||||
|
context "should allow http basic auth with a key for #{http_method} #{url}" do
|
||||||
|
context "with a valid HTTP authentication using the API token" do
|
||||||
|
setup do
|
||||||
|
@user = User.generate_with_protected!
|
||||||
|
@token = Token.generate!(:user => @user, :action => 'api')
|
||||||
|
@authorization = ActionController::HttpAuthentication::Basic.encode_credentials(@token.value, 'X')
|
||||||
|
send(http_method, url, parameters, {:authorization => @authorization})
|
||||||
|
end
|
||||||
|
|
||||||
|
should_respond_with :success
|
||||||
|
should_respond_with_content_type_based_on_url(url)
|
||||||
|
should "login as the user" do
|
||||||
|
assert_equal @user, User.current
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
context "with an invalid HTTP authentication" do
|
||||||
|
setup do
|
||||||
|
@user = User.generate_with_protected!
|
||||||
|
@token = Token.generate!(:user => @user, :action => 'feeds')
|
||||||
|
@authorization = ActionController::HttpAuthentication::Basic.encode_credentials(@token.value, 'X')
|
||||||
|
send(http_method, url, parameters, {:authorization => @authorization})
|
||||||
|
end
|
||||||
|
|
||||||
|
should_respond_with :unauthorized
|
||||||
|
should_respond_with_content_type_based_on_url(url)
|
||||||
|
should "not login as the user" do
|
||||||
|
assert_equal User.anonymous, User.current
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
# Test that a request allows full key authentication
|
# Test that a request allows full key authentication
|
||||||
#
|
#
|
||||||
# @param [Symbol] http_method the HTTP method for request (:get, :post, :put, :delete)
|
# @param [Symbol] http_method the HTTP method for request (:get, :post, :put, :delete)
|
||||||
|
|
Loading…
Reference in New Issue