2010-12-13 02:24:34 +03:00
|
|
|
require File.expand_path('../../../test_helper', __FILE__)
|
2009-12-23 09:27:44 +03:00
|
|
|
|
2010-11-01 18:26:05 +03:00
|
|
|
class ApiTest::DisabledRestApiTest < ActionController::IntegrationTest
|
2011-09-25 08:56:27 +04:00
|
|
|
fixtures :projects, :trackers, :issue_statuses, :issues,
|
|
|
|
:enumerations, :users, :issue_categories,
|
|
|
|
:projects_trackers,
|
|
|
|
:roles,
|
|
|
|
:member_roles,
|
|
|
|
:members,
|
|
|
|
:enabled_modules,
|
|
|
|
:workflows
|
2009-12-23 09:27:44 +03:00
|
|
|
|
|
|
|
def setup
|
|
|
|
Setting.rest_api_enabled = '0'
|
|
|
|
Setting.login_required = '1'
|
|
|
|
end
|
|
|
|
|
|
|
|
def teardown
|
|
|
|
Setting.rest_api_enabled = '1'
|
|
|
|
Setting.login_required = '0'
|
|
|
|
end
|
2011-08-27 12:46:29 +04:00
|
|
|
|
2012-01-03 00:09:53 +04:00
|
|
|
def test_with_a_valid_api_token
|
2012-04-22 16:45:13 +04:00
|
|
|
@user = User.generate!
|
2012-03-04 16:29:52 +04:00
|
|
|
@token = Token.create!(:user => @user, :action => 'api')
|
2009-12-23 09:27:44 +03:00
|
|
|
|
2012-01-03 00:09:53 +04:00
|
|
|
get "/news.xml?key=#{@token.value}"
|
|
|
|
assert_response :unauthorized
|
|
|
|
assert_equal User.anonymous, User.current
|
2011-08-27 12:46:29 +04:00
|
|
|
|
2012-01-03 00:09:53 +04:00
|
|
|
get "/news.json?key=#{@token.value}"
|
|
|
|
assert_response :unauthorized
|
|
|
|
assert_equal User.anonymous, User.current
|
|
|
|
end
|
2011-08-27 12:46:29 +04:00
|
|
|
|
2012-01-03 00:09:53 +04:00
|
|
|
def test_with_valid_username_password_http_authentication
|
2012-04-22 16:45:13 +04:00
|
|
|
@user = User.generate! do |user|
|
|
|
|
user.password = 'my_password'
|
|
|
|
end
|
2009-12-23 09:27:44 +03:00
|
|
|
|
2012-01-03 00:09:53 +04:00
|
|
|
get "/news.xml", nil, credentials(@user.login, 'my_password')
|
|
|
|
assert_response :unauthorized
|
|
|
|
assert_equal User.anonymous, User.current
|
2011-08-27 12:46:29 +04:00
|
|
|
|
2012-01-03 00:09:53 +04:00
|
|
|
get "/news.json", nil, credentials(@user.login, 'my_password')
|
|
|
|
assert_response :unauthorized
|
|
|
|
assert_equal User.anonymous, User.current
|
|
|
|
end
|
2009-12-23 09:27:44 +03:00
|
|
|
|
2012-01-03 00:09:53 +04:00
|
|
|
def test_with_valid_token_http_authentication
|
2012-04-22 16:45:13 +04:00
|
|
|
@user = User.generate!
|
2012-03-04 16:29:52 +04:00
|
|
|
@token = Token.create!(:user => @user, :action => 'api')
|
2009-12-23 09:27:44 +03:00
|
|
|
|
2012-01-03 00:09:53 +04:00
|
|
|
get "/news.xml", nil, credentials(@token.value, 'X')
|
|
|
|
assert_response :unauthorized
|
|
|
|
assert_equal User.anonymous, User.current
|
2011-08-27 12:46:29 +04:00
|
|
|
|
2012-01-03 00:09:53 +04:00
|
|
|
get "/news.json", nil, credentials(@token.value, 'X')
|
|
|
|
assert_response :unauthorized
|
|
|
|
assert_equal User.anonymous, User.current
|
2009-12-23 09:27:44 +03:00
|
|
|
end
|
|
|
|
end
|