2011-10-29 16:19:11 +04:00
|
|
|
#-- encoding: UTF-8
|
2011-05-30 00:11:52 +04:00
|
|
|
#-- copyright
|
|
|
|
# ChiliProject is a project management system.
|
2011-05-30 22:52:25 +04:00
|
|
|
#
|
2011-05-30 00:11:52 +04:00
|
|
|
# Copyright (C) 2010-2011 the ChiliProject Team
|
2011-05-30 22:52:25 +04:00
|
|
|
#
|
2011-05-30 00:11:52 +04:00
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
# of the License, or (at your option) any later version.
|
2011-05-30 22:52:25 +04:00
|
|
|
#
|
2011-05-30 00:11:52 +04:00
|
|
|
# See doc/COPYRIGHT.rdoc for more details.
|
|
|
|
#++
|
|
|
|
|
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
|
2009-12-23 09:27:44 +03:00
|
|
|
fixtures :all
|
|
|
|
|
|
|
|
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-05-30 22:52:25 +04:00
|
|
|
|
2009-12-23 09:27:44 +03:00
|
|
|
# Using the NewsController because it's a simple API.
|
|
|
|
context "get /news with the API disabled" do
|
|
|
|
|
|
|
|
context "in :xml format" do
|
|
|
|
context "with a valid api token" do
|
|
|
|
setup do
|
|
|
|
@user = User.generate_with_protected!
|
|
|
|
@token = Token.generate!(:user => @user, :action => 'api')
|
|
|
|
get "/news.xml?key=#{@token.value}"
|
|
|
|
end
|
2011-05-30 22:52:25 +04:00
|
|
|
|
2009-12-23 09:27:44 +03:00
|
|
|
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
|
|
|
|
|
|
|
|
context "with a valid HTTP authentication" do
|
|
|
|
setup do
|
|
|
|
@user = User.generate_with_protected!(:password => 'my_password', :password_confirmation => 'my_password')
|
|
|
|
@authorization = ActionController::HttpAuthentication::Basic.encode_credentials(@user.login, 'my_password')
|
|
|
|
get "/news.xml", nil, :authorization => @authorization
|
|
|
|
end
|
2011-05-30 22:52:25 +04:00
|
|
|
|
2009-12-23 09:27:44 +03:00
|
|
|
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
|
|
|
|
|
|
|
|
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')
|
|
|
|
get "/news.xml", nil, :authorization => @authorization
|
|
|
|
end
|
2011-05-30 22:52:25 +04:00
|
|
|
|
2009-12-23 09:27:44 +03:00
|
|
|
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
|
|
|
|
|
|
|
|
context "in :json format" do
|
|
|
|
context "with a valid api token" do
|
|
|
|
setup do
|
|
|
|
@user = User.generate_with_protected!
|
|
|
|
@token = Token.generate!(:user => @user, :action => 'api')
|
|
|
|
get "/news.json?key=#{@token.value}"
|
|
|
|
end
|
2011-05-30 22:52:25 +04:00
|
|
|
|
2009-12-23 09:27:44 +03:00
|
|
|
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
|
|
|
|
|
|
|
|
context "with a valid HTTP authentication" do
|
|
|
|
setup do
|
|
|
|
@user = User.generate_with_protected!(:password => 'my_password', :password_confirmation => 'my_password')
|
|
|
|
@authorization = ActionController::HttpAuthentication::Basic.encode_credentials(@user.login, 'my_password')
|
|
|
|
get "/news.json", nil, :authorization => @authorization
|
|
|
|
end
|
2011-05-30 22:52:25 +04:00
|
|
|
|
2009-12-23 09:27:44 +03:00
|
|
|
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
|
|
|
|
|
|
|
|
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, '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
|
2011-05-30 22:52:25 +04:00
|
|
|
|
|
|
|
end
|
2009-12-23 09:27:44 +03:00
|
|
|
end
|
|
|
|
end
|