Chris@0
|
1 # Redmine - project management software
|
Chris@1494
|
2 # Copyright (C) 2006-2014 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
|
Chris@0
|
20 class SysControllerTest < ActionController::TestCase
|
Chris@441
|
21 fixtures :projects, :repositories, :enabled_modules
|
Chris@909
|
22
|
Chris@0
|
23 def setup
|
Chris@0
|
24 Setting.sys_api_enabled = '1'
|
Chris@0
|
25 Setting.enabled_scm = %w(Subversion Git)
|
Chris@0
|
26 end
|
Chris@909
|
27
|
Chris@1115
|
28 def teardown
|
Chris@1115
|
29 Setting.clear_cache
|
Chris@1115
|
30 end
|
Chris@1115
|
31
|
Chris@0
|
32 def test_projects_with_repository_enabled
|
Chris@0
|
33 get :projects
|
Chris@0
|
34 assert_response :success
|
Chris@0
|
35 assert_equal 'application/xml', @response.content_type
|
Chris@0
|
36 with_options :tag => 'projects' do |test|
|
Chris@0
|
37 test.assert_tag :children => { :count => Project.active.has_module(:repository).count }
|
Chris@909
|
38 test.assert_tag 'project', :child => {:tag => 'identifier', :sibling => {:tag => 'is-public'}}
|
Chris@0
|
39 end
|
Chris@909
|
40 assert_no_tag 'extra-info'
|
Chris@909
|
41 assert_no_tag 'extra_info'
|
Chris@0
|
42 end
|
Chris@0
|
43
|
Chris@0
|
44 def test_create_project_repository
|
Chris@0
|
45 assert_nil Project.find(4).repository
|
Chris@909
|
46
|
Chris@909
|
47 post :create_project_repository, :id => 4,
|
Chris@0
|
48 :vendor => 'Subversion',
|
Chris@0
|
49 :repository => { :url => 'file:///create/project/repository/subproject2'}
|
Chris@0
|
50 assert_response :created
|
Chris@909
|
51 assert_equal 'application/xml', @response.content_type
|
Chris@909
|
52
|
Chris@0
|
53 r = Project.find(4).repository
|
Chris@0
|
54 assert r.is_a?(Repository::Subversion)
|
Chris@0
|
55 assert_equal 'file:///create/project/repository/subproject2', r.url
|
Chris@909
|
56
|
Chris@909
|
57 assert_tag 'repository-subversion',
|
Chris@909
|
58 :child => {
|
Chris@909
|
59 :tag => 'id', :content => r.id.to_s,
|
Chris@909
|
60 :sibling => {:tag => 'url', :content => r.url}
|
Chris@909
|
61 }
|
Chris@909
|
62 assert_no_tag 'extra-info'
|
Chris@909
|
63 assert_no_tag 'extra_info'
|
Chris@0
|
64 end
|
Chris@909
|
65
|
Chris@1115
|
66 def test_create_already_existing
|
Chris@1115
|
67 post :create_project_repository, :id => 1,
|
Chris@1115
|
68 :vendor => 'Subversion',
|
Chris@1115
|
69 :repository => { :url => 'file:///create/project/repository/subproject2'}
|
Chris@1115
|
70
|
Chris@1115
|
71 assert_response :conflict
|
Chris@1115
|
72 end
|
Chris@1115
|
73
|
Chris@1115
|
74 def test_create_with_failure
|
Chris@1115
|
75 post :create_project_repository, :id => 4,
|
Chris@1115
|
76 :vendor => 'Subversion',
|
Chris@1115
|
77 :repository => { :url => 'invalid url'}
|
Chris@1115
|
78
|
Chris@1115
|
79 assert_response :unprocessable_entity
|
Chris@1115
|
80 end
|
Chris@1115
|
81
|
Chris@0
|
82 def test_fetch_changesets
|
Chris@1115
|
83 Repository::Subversion.any_instance.expects(:fetch_changesets).twice.returns(true)
|
Chris@0
|
84 get :fetch_changesets
|
Chris@0
|
85 assert_response :success
|
Chris@0
|
86 end
|
Chris@909
|
87
|
Chris@1115
|
88 def test_fetch_changesets_one_project_by_identifier
|
Chris@1115
|
89 Repository::Subversion.any_instance.expects(:fetch_changesets).once.returns(true)
|
Chris@0
|
90 get :fetch_changesets, :id => 'ecookbook'
|
Chris@0
|
91 assert_response :success
|
Chris@0
|
92 end
|
Chris@909
|
93
|
Chris@1115
|
94 def test_fetch_changesets_one_project_by_id
|
Chris@1115
|
95 Repository::Subversion.any_instance.expects(:fetch_changesets).once.returns(true)
|
Chris@1115
|
96 get :fetch_changesets, :id => '1'
|
Chris@1115
|
97 assert_response :success
|
Chris@1115
|
98 end
|
Chris@1115
|
99
|
Chris@0
|
100 def test_fetch_changesets_unknown_project
|
Chris@0
|
101 get :fetch_changesets, :id => 'unknown'
|
Chris@0
|
102 assert_response 404
|
Chris@0
|
103 end
|
Chris@909
|
104
|
Chris@0
|
105 def test_disabled_ws_should_respond_with_403_error
|
Chris@0
|
106 with_settings :sys_api_enabled => '0' do
|
Chris@0
|
107 get :projects
|
Chris@0
|
108 assert_response 403
|
Chris@0
|
109 end
|
Chris@0
|
110 end
|
Chris@909
|
111
|
Chris@0
|
112 def test_api_key
|
Chris@0
|
113 with_settings :sys_api_key => 'my_secret_key' do
|
Chris@0
|
114 get :projects, :key => 'my_secret_key'
|
Chris@0
|
115 assert_response :success
|
Chris@0
|
116 end
|
Chris@0
|
117 end
|
Chris@909
|
118
|
Chris@0
|
119 def test_wrong_key_should_respond_with_403_error
|
Chris@0
|
120 with_settings :sys_api_enabled => 'my_secret_key' do
|
Chris@0
|
121 get :projects, :key => 'wrong_key'
|
Chris@0
|
122 assert_response 403
|
Chris@0
|
123 end
|
Chris@0
|
124 end
|
Chris@0
|
125 end
|