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:38 +03:00
|
|
|
|
2010-11-01 18:26:05 +03:00
|
|
|
class ApiTest::HttpBasicLoginTest < ActionController::IntegrationTest
|
2009-12-23 09:27:38 +03:00
|
|
|
fixtures :all
|
|
|
|
|
|
|
|
def setup
|
2009-12-23 09:27:44 +03:00
|
|
|
Setting.rest_api_enabled = '1'
|
2009-12-23 09:27:38 +03:00
|
|
|
Setting.login_required = '1'
|
|
|
|
end
|
|
|
|
|
|
|
|
def teardown
|
2009-12-23 09:27:44 +03:00
|
|
|
Setting.rest_api_enabled = '0'
|
2009-12-23 09:27:38 +03:00
|
|
|
Setting.login_required = '0'
|
|
|
|
end
|
2011-05-30 22:52:25 +04:00
|
|
|
|
2009-12-23 09:27:38 +03:00
|
|
|
# Using the NewsController because it's a simple API.
|
|
|
|
context "get /news" do
|
2010-11-02 18:52:06 +03:00
|
|
|
setup do
|
|
|
|
project = Project.find('onlinestore')
|
|
|
|
EnabledModule.create(:project => project, :name => 'news')
|
|
|
|
end
|
2009-12-23 09:27:38 +03:00
|
|
|
|
|
|
|
context "in :xml format" do
|
2010-11-02 18:52:06 +03:00
|
|
|
should_allow_http_basic_auth_with_username_and_password(:get, "/projects/onlinestore/news.xml")
|
2009-12-23 09:27:38 +03:00
|
|
|
end
|
|
|
|
|
|
|
|
context "in :json format" do
|
2010-11-02 18:52:06 +03:00
|
|
|
should_allow_http_basic_auth_with_username_and_password(:get, "/projects/onlinestore/news.json")
|
2010-04-17 16:45:23 +04:00
|
|
|
end
|
2009-12-23 09:27:38 +03:00
|
|
|
end
|
|
|
|
end
|