Skip to content

Commit

Permalink
Refactor: Convert the tests for Issues#index and #show APIs to should…
Browse files Browse the repository at this point in the history
…a. #6447

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4364 e93f8b46-1217-0410-a6f0-8f06a7374b81
  • Loading branch information
edavis10 committed Nov 4, 2010
1 parent 30dc4fe commit c967899
Show file tree
Hide file tree
Showing 2 changed files with 76 additions and 54 deletions.
65 changes: 15 additions & 50 deletions test/integration/api_test/issues_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -46,55 +46,33 @@ def setup
Setting.rest_api_enabled = '1'
end

# Use a private project to make sure auth is really working and not just
# only showing public issues.
context "/index.xml" do
setup do
get '/issues.xml'
end

should_respond_with :success
should_respond_with_content_type 'application/xml'
should_allow_api_authentication(:get, "/projects/private-child/issues.xml")
end

context "/index.json" do
setup do
get '/issues.json'
end

should_respond_with :success
should_respond_with_content_type 'application/json'

should 'return a valid JSON string' do
assert ActiveSupport::JSON.decode(response.body)
end
should_allow_api_authentication(:get, "/projects/private-child/issues.json")
end

context "/index.xml with filter" do
setup do
get '/issues.xml?status_id=5'
end

should_respond_with :success
should_respond_with_content_type 'application/xml'
should_allow_api_authentication(:get, "/projects/private-child/issues.xml?status_id=5")

should "show only issues with the status_id" do
get '/issues.xml?status_id=5'
assert_tag :tag => 'issues',
:children => { :count => Issue.visible.count(:conditions => {:status_id => 5}),
:only => { :tag => 'issue' } }
end
end

context "/index.json with filter" do
setup do
get '/issues.json?status_id=5'
end

should_respond_with :success
should_respond_with_content_type 'application/json'

should 'return a valid JSON string' do
assert ActiveSupport::JSON.decode(response.body)
end
should_allow_api_authentication(:get, "/projects/private-child/issues.json?status_id=5")

should "show only issues with the status_id" do
get '/issues.json?status_id=5'

json = ActiveSupport::JSON.decode(response.body)
status_ids_used = json.collect {|j| j['status_id'] }
assert_equal 3, status_ids_used.length
Expand All @@ -103,26 +81,13 @@ def setup

end

context "/issues/1.xml" do
setup do
get '/issues/1.xml'
end

should_respond_with :success
should_respond_with_content_type 'application/xml'
# Issue 6 is on a private project
context "/issues/6.xml" do
should_allow_api_authentication(:get, "/issues/6.xml")
end

context "/issues/1.json" do
setup do
get '/issues/1.json'
end

should_respond_with :success
should_respond_with_content_type 'application/json'

should 'return a valid JSON string' do
assert ActiveSupport::JSON.decode(response.body)
end
context "/issues/6.json" do
should_allow_api_authentication(:get, "/issues/6.json")
end

context "POST /issues.xml" do
Expand Down
65 changes: 61 additions & 4 deletions test/test_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,21 @@ def self.should_create_a_new_user(&block)
end
end

# Test that a request allows the three types of API authentication
#
# * HTTP Basic with username and password
# * HTTP Basic with an api key for the username
# * Key based with the key=X parameter
#
# @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_api_authentication(http_method, url, parameters={})
should_allow_http_basic_auth_with_username_and_password(http_method, url, parameters)
should_allow_http_basic_auth_with_key(http_method, url, parameters)
should_allow_key_based_auth(http_method, url, parameters)
end

# Test that a request allows the username and password for HTTP BASIC
#
# @param [Symbol] http_method the HTTP method for request (:get, :post, :put, :delete)
Expand Down Expand Up @@ -245,14 +260,15 @@ 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!
@user = User.generate_with_protected!(:admin => true)
@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_be_a_valid_response_string_based_on_url(url)
should "login as the user" do
assert_equal @user, User.current
end
Expand All @@ -279,17 +295,25 @@ def self.should_allow_http_basic_auth_with_key(http_method, url, parameters={})
#
# @param [Symbol] http_method the HTTP method for request (:get, :post, :put, :delete)
# @param [String] url the request url, without the key=ZXY parameter
def self.should_allow_key_based_auth(http_method, url)
# @param [optional, Hash] parameters additional request parameters
def self.should_allow_key_based_auth(http_method, url, parameters={})
context "should allow key based auth using key=X for #{http_method} #{url}" do
context "with a valid api token" do
setup do
@user = User.generate_with_protected!
@user = User.generate_with_protected!(:admin => true)
@token = Token.generate!(:user => @user, :action => 'api')
send(http_method, url + "?key=#{@token.value}")
# Simple url parse to add on ?key= or &key=
request_url = if url.match(/\?/)
url + "&key=#{@token.value}"
else
url + "?key=#{@token.value}"
end
send(http_method, request_url, parameters)
end

should_respond_with :success
should_respond_with_content_type_based_on_url(url)
should_be_a_valid_response_string_based_on_url(url)
should "login as the user" do
assert_equal @user, User.current
end
Expand Down Expand Up @@ -329,6 +353,39 @@ def self.should_respond_with_content_type_based_on_url(url)
end

end

# Uses the url to assert which format the response should be in
#
# '/project/issues.xml' => should_be_a_valid_xml_string
# '/project/issues.json' => should_be_a_valid_json_string
#
# @param [String] url Request
def self.should_be_a_valid_response_string_based_on_url(url)
case
when url.match(/xml/i)
should_be_a_valid_xml_string
when url.match(/json/i)
should_be_a_valid_json_string
else
raise "Unknown content type for should_be_a_valid_response_based_on_url: #{url}"
end

end

# Checks that the response is a valid JSON string
def self.should_be_a_valid_json_string
should "be a valid JSON string" do
assert ActiveSupport::JSON.decode(response.body)
end
end

# Checks that the response is a valid XML string
def self.should_be_a_valid_xml_string
should "be a valid XML string" do
assert REXML::Document.new(response.body)
end
end

end

# Simple module to "namespace" all of the API tests
Expand Down

0 comments on commit c967899

Please sign in to comment.