@@ -1,170 +1,176 | |||
|
1 | 1 | # redMine - project management software |
|
2 | 2 | # Copyright (C) 2006-2008 Jean-Philippe Lang |
|
3 | 3 | # |
|
4 | 4 | # This program is free software; you can redistribute it and/or |
|
5 | 5 | # modify it under the terms of the GNU General Public License |
|
6 | 6 | # as published by the Free Software Foundation; either version 2 |
|
7 | 7 | # of the License, or (at your option) any later version. |
|
8 | 8 | # |
|
9 | 9 | # This program is distributed in the hope that it will be useful, |
|
10 | 10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 | 11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 | 12 | # GNU General Public License for more details. |
|
13 | 13 | # |
|
14 | 14 | # You should have received a copy of the GNU General Public License |
|
15 | 15 | # along with this program; if not, write to the Free Software |
|
16 | 16 | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
|
17 | 17 | |
|
18 | 18 | require File.expand_path('../../test_helper', __FILE__) |
|
19 | 19 | require 'repositories_controller' |
|
20 | 20 | |
|
21 | 21 | # Re-raise errors caught by the controller. |
|
22 | 22 | class RepositoriesController; def rescue_action(e) raise e end; end |
|
23 | 23 | |
|
24 | 24 | class RepositoriesMercurialControllerTest < ActionController::TestCase |
|
25 | 25 | fixtures :projects, :users, :roles, :members, :member_roles, :repositories, :enabled_modules |
|
26 | 26 | |
|
27 | 27 | # No '..' in the repository path |
|
28 | 28 | REPOSITORY_PATH = RAILS_ROOT.gsub(%r{config\/\.\.}, '') + '/tmp/test/mercurial_repository' |
|
29 | 29 | |
|
30 | 30 | def setup |
|
31 | 31 | @controller = RepositoriesController.new |
|
32 | 32 | @request = ActionController::TestRequest.new |
|
33 | 33 | @response = ActionController::TestResponse.new |
|
34 | 34 | User.current = nil |
|
35 | 35 | Repository::Mercurial.create(:project => Project.find(3), :url => REPOSITORY_PATH) |
|
36 | 36 | end |
|
37 | 37 | |
|
38 | 38 | if File.directory?(REPOSITORY_PATH) |
|
39 | 39 | def test_show |
|
40 | 40 | get :show, :id => 3 |
|
41 | 41 | assert_response :success |
|
42 | 42 | assert_template 'show' |
|
43 | 43 | assert_not_nil assigns(:entries) |
|
44 | 44 | assert_not_nil assigns(:changesets) |
|
45 | 45 | end |
|
46 | 46 | |
|
47 | 47 | def test_show_root |
|
48 | 48 | get :show, :id => 3 |
|
49 | 49 | assert_response :success |
|
50 | 50 | assert_template 'show' |
|
51 | 51 | assert_not_nil assigns(:entries) |
|
52 | 52 | assert_equal 4, assigns(:entries).size |
|
53 | 53 | assert assigns(:entries).detect {|e| e.name == 'images' && e.kind == 'dir'} |
|
54 | 54 | assert assigns(:entries).detect {|e| e.name == 'sources' && e.kind == 'dir'} |
|
55 | 55 | assert assigns(:entries).detect {|e| e.name == 'README' && e.kind == 'file'} |
|
56 | 56 | end |
|
57 | 57 | |
|
58 | 58 | def test_show_directory |
|
59 | 59 | get :show, :id => 3, :path => ['images'] |
|
60 | 60 | assert_response :success |
|
61 | 61 | assert_template 'show' |
|
62 | 62 | assert_not_nil assigns(:entries) |
|
63 | 63 | assert_equal ['delete.png', 'edit.png'], assigns(:entries).collect(&:name) |
|
64 | 64 | entry = assigns(:entries).detect {|e| e.name == 'edit.png'} |
|
65 | 65 | assert_not_nil entry |
|
66 | 66 | assert_equal 'file', entry.kind |
|
67 | 67 | assert_equal 'images/edit.png', entry.path |
|
68 | 68 | end |
|
69 | 69 | |
|
70 | 70 | def test_show_at_given_revision |
|
71 | get :show, :id => 3, :path => ['images'], :rev => 0 | |
|
71 | [0, '0', '0885933ad4f6'].each do |r1| | |
|
72 | get :show, :id => 3, :path => ['images'], :rev => r1 | |
|
72 | 73 | assert_response :success |
|
73 | 74 | assert_template 'show' |
|
74 | 75 | assert_not_nil assigns(:entries) |
|
75 | 76 | assert_equal ['delete.png'], assigns(:entries).collect(&:name) |
|
76 | 77 | end |
|
78 | end | |
|
77 | 79 | |
|
78 | 80 | def test_show_directory_sql_escape_percent |
|
79 | get :show, :id => 3, :path => ['sql_escape', 'percent%dir'], :rev => 13 | |
|
81 | [13, '13', '3a330eb32958'].each do |r1| | |
|
82 | get :show, :id => 3, :path => ['sql_escape', 'percent%dir'], :rev => r1 | |
|
80 | 83 | assert_response :success |
|
81 | 84 | assert_template 'show' |
|
82 | 85 | |
|
83 | 86 | assert_not_nil assigns(:entries) |
|
84 | 87 | assert_equal ['percent%file1.txt', 'percentfile1.txt'], assigns(:entries).collect(&:name) |
|
85 | 88 | changesets = assigns(:changesets) |
|
86 | 89 | |
|
87 | 90 | ## This is not yet implemented. |
|
88 | 91 | # assert_not_nil changesets |
|
89 | 92 | # assert_equal %w(13 11 10 9), changesets.collect(&:revision) |
|
90 | 93 | end |
|
94 | end | |
|
91 | 95 | |
|
92 | 96 | def test_changes |
|
93 | 97 | get :changes, :id => 3, :path => ['images', 'edit.png'] |
|
94 | 98 | assert_response :success |
|
95 | 99 | assert_template 'changes' |
|
96 | 100 | assert_tag :tag => 'h2', :content => 'edit.png' |
|
97 | 101 | end |
|
98 | 102 | |
|
99 | 103 | def test_entry_show |
|
100 | 104 | get :entry, :id => 3, :path => ['sources', 'watchers_controller.rb'] |
|
101 | 105 | assert_response :success |
|
102 | 106 | assert_template 'entry' |
|
103 | 107 | # Line 10 |
|
104 | 108 | assert_tag :tag => 'th', |
|
105 | 109 | :content => '10', |
|
106 | 110 | :attributes => { :class => 'line-num' }, |
|
107 | 111 | :sibling => { :tag => 'td', :content => /WITHOUT ANY WARRANTY/ } |
|
108 | 112 | end |
|
109 | 113 | |
|
110 | 114 | def test_entry_download |
|
111 | 115 | get :entry, :id => 3, :path => ['sources', 'watchers_controller.rb'], :format => 'raw' |
|
112 | 116 | assert_response :success |
|
113 | 117 | # File content |
|
114 | 118 | assert @response.body.include?('WITHOUT ANY WARRANTY') |
|
115 | 119 | end |
|
116 | 120 | |
|
117 | 121 | def test_directory_entry |
|
118 | 122 | get :entry, :id => 3, :path => ['sources'] |
|
119 | 123 | assert_response :success |
|
120 | 124 | assert_template 'show' |
|
121 | 125 | assert_not_nil assigns(:entry) |
|
122 | 126 | assert_equal 'sources', assigns(:entry).name |
|
123 | 127 | end |
|
124 | 128 | |
|
125 | 129 | def test_diff |
|
130 | [4, '4', 'def6d2f1254a'].each do |r1| | |
|
126 | 131 | # Full diff of changeset 4 |
|
127 | 132 | get :diff, :id => 3, :rev => 4 |
|
128 | 133 | assert_response :success |
|
129 | 134 | assert_template 'diff' |
|
130 | 135 | # Line 22 removed |
|
131 | 136 | assert_tag :tag => 'th', |
|
132 | 137 | :content => '22', |
|
133 | 138 | :sibling => { :tag => 'td', |
|
134 | 139 | :attributes => { :class => /diff_out/ }, |
|
135 | 140 | :content => /def remove/ } |
|
136 | 141 | end |
|
142 | end | |
|
137 | 143 | |
|
138 | 144 | def test_annotate |
|
139 | 145 | get :annotate, :id => 3, :path => ['sources', 'watchers_controller.rb'] |
|
140 | 146 | assert_response :success |
|
141 | 147 | assert_template 'annotate' |
|
142 | 148 | # Line 23, revision 4:def6d2f1254a |
|
143 | 149 | assert_tag :tag => 'th', |
|
144 | 150 | :content => '23', |
|
145 | 151 | :attributes => { :class => 'line-num' }, |
|
146 | 152 | :sibling => |
|
147 | 153 | { |
|
148 | 154 | :tag => 'td', |
|
149 | 155 | :attributes => { :class => 'revision' }, |
|
150 | 156 | :child => { :tag => 'a', :content => '4:def6d2f1254a' } |
|
151 | 157 | } |
|
152 | 158 | assert_tag :tag => 'th', |
|
153 | 159 | :content => '23', |
|
154 | 160 | :attributes => { :class => 'line-num' }, |
|
155 | 161 | :sibling => |
|
156 | 162 | { |
|
157 | 163 | :tag => 'td' , |
|
158 | 164 | :content => 'jsmith' , |
|
159 | 165 | :attributes => { :class => 'author' }, |
|
160 | 166 | } |
|
161 | 167 | assert_tag :tag => 'th', |
|
162 | 168 | :content => '23', |
|
163 | 169 | :attributes => { :class => 'line-num' }, |
|
164 | 170 | :sibling => { :tag => 'td', :content => /watcher =/ } |
|
165 | 171 | end |
|
166 | 172 | else |
|
167 | 173 | puts "Mercurial test repository NOT FOUND. Skipping functional tests !!!" |
|
168 | 174 | def test_fake; assert true end |
|
169 | 175 | end |
|
170 | 176 | end |
General Comments 0
You need to be logged in to leave comments.
Login now