annotate test/functional/sys_controller_test.rb @ 1327:287f201c2802 redmine-2.2-integration

Add italic
author Chris Cannam <chris.cannam@soundsoftware.ac.uk>
date Wed, 19 Jun 2013 20:56:22 +0100
parents 433d4f72a19b
children 622f24f53b42
rev   line source
Chris@0 1 # Redmine - project management software
Chris@1115 2 # Copyright (C) 2006-2012 Jean-Philippe Lang
Chris@0 3 #
Chris@0 4 # This program is free software; you can redistribute it and/or
Chris@0 5 # modify it under the terms of the GNU General Public License
Chris@0 6 # as published by the Free Software Foundation; either version 2
Chris@0 7 # of the License, or (at your option) any later version.
Chris@909 8 #
Chris@0 9 # This program is distributed in the hope that it will be useful,
Chris@0 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
Chris@0 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Chris@0 12 # GNU General Public License for more details.
Chris@909 13 #
Chris@0 14 # You should have received a copy of the GNU General Public License
Chris@0 15 # along with this program; if not, write to the Free Software
Chris@0 16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Chris@0 17
Chris@119 18 require File.expand_path('../../test_helper', __FILE__)
Chris@0 19 require 'sys_controller'
Chris@441 20 require 'mocha'
Chris@0 21
Chris@0 22 # Re-raise errors caught by the controller.
Chris@0 23 class SysController; def rescue_action(e) raise e end; end
Chris@0 24
Chris@0 25 class SysControllerTest < ActionController::TestCase
Chris@441 26 fixtures :projects, :repositories, :enabled_modules
Chris@909 27
Chris@0 28 def setup
Chris@0 29 @controller = SysController.new
Chris@0 30 @request = ActionController::TestRequest.new
Chris@0 31 @response = ActionController::TestResponse.new
Chris@0 32 Setting.sys_api_enabled = '1'
Chris@0 33 Setting.enabled_scm = %w(Subversion Git)
Chris@0 34 end
Chris@909 35
Chris@1115 36 def teardown
Chris@1115 37 Setting.clear_cache
Chris@1115 38 end
Chris@1115 39
Chris@0 40 def test_projects_with_repository_enabled
Chris@0 41 get :projects
Chris@0 42 assert_response :success
Chris@0 43 assert_equal 'application/xml', @response.content_type
Chris@0 44 with_options :tag => 'projects' do |test|
Chris@0 45 test.assert_tag :children => { :count => Project.active.has_module(:repository).count }
Chris@909 46 test.assert_tag 'project', :child => {:tag => 'identifier', :sibling => {:tag => 'is-public'}}
Chris@0 47 end
Chris@909 48 assert_no_tag 'extra-info'
Chris@909 49 assert_no_tag 'extra_info'
Chris@0 50 end
Chris@0 51
Chris@0 52 def test_create_project_repository
Chris@0 53 assert_nil Project.find(4).repository
Chris@909 54
Chris@909 55 post :create_project_repository, :id => 4,
Chris@0 56 :vendor => 'Subversion',
Chris@0 57 :repository => { :url => 'file:///create/project/repository/subproject2'}
Chris@0 58 assert_response :created
Chris@909 59 assert_equal 'application/xml', @response.content_type
Chris@909 60
Chris@0 61 r = Project.find(4).repository
Chris@0 62 assert r.is_a?(Repository::Subversion)
Chris@0 63 assert_equal 'file:///create/project/repository/subproject2', r.url
Chris@909 64
Chris@909 65 assert_tag 'repository-subversion',
Chris@909 66 :child => {
Chris@909 67 :tag => 'id', :content => r.id.to_s,
Chris@909 68 :sibling => {:tag => 'url', :content => r.url}
Chris@909 69 }
Chris@909 70 assert_no_tag 'extra-info'
Chris@909 71 assert_no_tag 'extra_info'
Chris@0 72 end
Chris@909 73
Chris@1115 74 def test_create_already_existing
Chris@1115 75 post :create_project_repository, :id => 1,
Chris@1115 76 :vendor => 'Subversion',
Chris@1115 77 :repository => { :url => 'file:///create/project/repository/subproject2'}
Chris@1115 78
Chris@1115 79 assert_response :conflict
Chris@1115 80 end
Chris@1115 81
Chris@1115 82 def test_create_with_failure
Chris@1115 83 post :create_project_repository, :id => 4,
Chris@1115 84 :vendor => 'Subversion',
Chris@1115 85 :repository => { :url => 'invalid url'}
Chris@1115 86
Chris@1115 87 assert_response :unprocessable_entity
Chris@1115 88 end
Chris@1115 89
Chris@0 90 def test_fetch_changesets
Chris@1115 91 Repository::Subversion.any_instance.expects(:fetch_changesets).twice.returns(true)
Chris@0 92 get :fetch_changesets
Chris@0 93 assert_response :success
Chris@0 94 end
Chris@909 95
Chris@1115 96 def test_fetch_changesets_one_project_by_identifier
Chris@1115 97 Repository::Subversion.any_instance.expects(:fetch_changesets).once.returns(true)
Chris@0 98 get :fetch_changesets, :id => 'ecookbook'
Chris@0 99 assert_response :success
Chris@0 100 end
Chris@909 101
Chris@1115 102 def test_fetch_changesets_one_project_by_id
Chris@1115 103 Repository::Subversion.any_instance.expects(:fetch_changesets).once.returns(true)
Chris@1115 104 get :fetch_changesets, :id => '1'
Chris@1115 105 assert_response :success
Chris@1115 106 end
Chris@1115 107
Chris@0 108 def test_fetch_changesets_unknown_project
Chris@0 109 get :fetch_changesets, :id => 'unknown'
Chris@0 110 assert_response 404
Chris@0 111 end
Chris@909 112
Chris@0 113 def test_disabled_ws_should_respond_with_403_error
Chris@0 114 with_settings :sys_api_enabled => '0' do
Chris@0 115 get :projects
Chris@0 116 assert_response 403
Chris@0 117 end
Chris@0 118 end
Chris@909 119
Chris@0 120 def test_api_key
Chris@0 121 with_settings :sys_api_key => 'my_secret_key' do
Chris@0 122 get :projects, :key => 'my_secret_key'
Chris@0 123 assert_response :success
Chris@0 124 end
Chris@0 125 end
Chris@909 126
Chris@0 127 def test_wrong_key_should_respond_with_403_error
Chris@0 128 with_settings :sys_api_enabled => 'my_secret_key' do
Chris@0 129 get :projects, :key => 'wrong_key'
Chris@0 130 assert_response 403
Chris@0 131 end
Chris@0 132 end
Chris@0 133 end