@@ -1,1247 +1,1267 | |||
|
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.dirname(__FILE__) + '/../test_helper' |
|
19 | 19 | require 'issues_controller' |
|
20 | 20 | |
|
21 | 21 | # Re-raise errors caught by the controller. |
|
22 | 22 | class IssuesController; def rescue_action(e) raise e end; end |
|
23 | 23 | |
|
24 | 24 | class IssuesControllerTest < ActionController::TestCase |
|
25 | 25 | fixtures :projects, |
|
26 | 26 | :users, |
|
27 | 27 | :roles, |
|
28 | 28 | :members, |
|
29 | 29 | :member_roles, |
|
30 | 30 | :issues, |
|
31 | 31 | :issue_statuses, |
|
32 | 32 | :versions, |
|
33 | 33 | :trackers, |
|
34 | 34 | :projects_trackers, |
|
35 | 35 | :issue_categories, |
|
36 | 36 | :enabled_modules, |
|
37 | 37 | :enumerations, |
|
38 | 38 | :attachments, |
|
39 | 39 | :workflows, |
|
40 | 40 | :custom_fields, |
|
41 | 41 | :custom_values, |
|
42 | 42 | :custom_fields_projects, |
|
43 | 43 | :custom_fields_trackers, |
|
44 | 44 | :time_entries, |
|
45 | 45 | :journals, |
|
46 | 46 | :journal_details, |
|
47 | 47 | :queries |
|
48 | 48 | |
|
49 | 49 | def setup |
|
50 | 50 | @controller = IssuesController.new |
|
51 | 51 | @request = ActionController::TestRequest.new |
|
52 | 52 | @response = ActionController::TestResponse.new |
|
53 | 53 | User.current = nil |
|
54 | 54 | end |
|
55 | 55 | |
|
56 | 56 | def test_index |
|
57 | 57 | Setting.default_language = 'en' |
|
58 | 58 | |
|
59 | 59 | get :index |
|
60 | 60 | assert_response :success |
|
61 | 61 | assert_template 'index.rhtml' |
|
62 | 62 | assert_not_nil assigns(:issues) |
|
63 | 63 | assert_nil assigns(:project) |
|
64 | 64 | assert_tag :tag => 'a', :content => /Can't print recipes/ |
|
65 | 65 | assert_tag :tag => 'a', :content => /Subproject issue/ |
|
66 | 66 | # private projects hidden |
|
67 | 67 | assert_no_tag :tag => 'a', :content => /Issue of a private subproject/ |
|
68 | 68 | assert_no_tag :tag => 'a', :content => /Issue on project 2/ |
|
69 | 69 | # project column |
|
70 | 70 | assert_tag :tag => 'th', :content => /Project/ |
|
71 | 71 | end |
|
72 | 72 | |
|
73 | 73 | def test_index_should_not_list_issues_when_module_disabled |
|
74 | 74 | EnabledModule.delete_all("name = 'issue_tracking' AND project_id = 1") |
|
75 | 75 | get :index |
|
76 | 76 | assert_response :success |
|
77 | 77 | assert_template 'index.rhtml' |
|
78 | 78 | assert_not_nil assigns(:issues) |
|
79 | 79 | assert_nil assigns(:project) |
|
80 | 80 | assert_no_tag :tag => 'a', :content => /Can't print recipes/ |
|
81 | 81 | assert_tag :tag => 'a', :content => /Subproject issue/ |
|
82 | 82 | end |
|
83 | 83 | |
|
84 | 84 | def test_index_should_not_list_issues_when_module_disabled |
|
85 | 85 | EnabledModule.delete_all("name = 'issue_tracking' AND project_id = 1") |
|
86 | 86 | get :index |
|
87 | 87 | assert_response :success |
|
88 | 88 | assert_template 'index.rhtml' |
|
89 | 89 | assert_not_nil assigns(:issues) |
|
90 | 90 | assert_nil assigns(:project) |
|
91 | 91 | assert_no_tag :tag => 'a', :content => /Can't print recipes/ |
|
92 | 92 | assert_tag :tag => 'a', :content => /Subproject issue/ |
|
93 | 93 | end |
|
94 | 94 | |
|
95 | 95 | def test_index_with_project |
|
96 | 96 | Setting.display_subprojects_issues = 0 |
|
97 | 97 | get :index, :project_id => 1 |
|
98 | 98 | assert_response :success |
|
99 | 99 | assert_template 'index.rhtml' |
|
100 | 100 | assert_not_nil assigns(:issues) |
|
101 | 101 | assert_tag :tag => 'a', :content => /Can't print recipes/ |
|
102 | 102 | assert_no_tag :tag => 'a', :content => /Subproject issue/ |
|
103 | 103 | end |
|
104 | 104 | |
|
105 | 105 | def test_index_with_project_and_subprojects |
|
106 | 106 | Setting.display_subprojects_issues = 1 |
|
107 | 107 | get :index, :project_id => 1 |
|
108 | 108 | assert_response :success |
|
109 | 109 | assert_template 'index.rhtml' |
|
110 | 110 | assert_not_nil assigns(:issues) |
|
111 | 111 | assert_tag :tag => 'a', :content => /Can't print recipes/ |
|
112 | 112 | assert_tag :tag => 'a', :content => /Subproject issue/ |
|
113 | 113 | assert_no_tag :tag => 'a', :content => /Issue of a private subproject/ |
|
114 | 114 | end |
|
115 | 115 | |
|
116 | 116 | def test_index_with_project_and_subprojects_should_show_private_subprojects |
|
117 | 117 | @request.session[:user_id] = 2 |
|
118 | 118 | Setting.display_subprojects_issues = 1 |
|
119 | 119 | get :index, :project_id => 1 |
|
120 | 120 | assert_response :success |
|
121 | 121 | assert_template 'index.rhtml' |
|
122 | 122 | assert_not_nil assigns(:issues) |
|
123 | 123 | assert_tag :tag => 'a', :content => /Can't print recipes/ |
|
124 | 124 | assert_tag :tag => 'a', :content => /Subproject issue/ |
|
125 | 125 | assert_tag :tag => 'a', :content => /Issue of a private subproject/ |
|
126 | 126 | end |
|
127 | 127 | |
|
128 | 128 | def test_index_with_project_and_filter |
|
129 | 129 | get :index, :project_id => 1, :set_filter => 1 |
|
130 | 130 | assert_response :success |
|
131 | 131 | assert_template 'index.rhtml' |
|
132 | 132 | assert_not_nil assigns(:issues) |
|
133 | 133 | end |
|
134 | 134 | |
|
135 | 135 | def test_index_with_query |
|
136 | 136 | get :index, :project_id => 1, :query_id => 5 |
|
137 | 137 | assert_response :success |
|
138 | 138 | assert_template 'index.rhtml' |
|
139 | 139 | assert_not_nil assigns(:issues) |
|
140 | 140 | assert_nil assigns(:issue_count_by_group) |
|
141 | 141 | end |
|
142 | 142 | |
|
143 | 143 | def test_index_with_query_grouped_by_tracker |
|
144 | 144 | get :index, :project_id => 1, :query_id => 6 |
|
145 | 145 | assert_response :success |
|
146 | 146 | assert_template 'index.rhtml' |
|
147 | 147 | assert_not_nil assigns(:issues) |
|
148 | 148 | assert_not_nil assigns(:issue_count_by_group) |
|
149 | 149 | end |
|
150 | 150 | |
|
151 | 151 | def test_index_with_query_grouped_by_list_custom_field |
|
152 | 152 | get :index, :project_id => 1, :query_id => 9 |
|
153 | 153 | assert_response :success |
|
154 | 154 | assert_template 'index.rhtml' |
|
155 | 155 | assert_not_nil assigns(:issues) |
|
156 | 156 | assert_not_nil assigns(:issue_count_by_group) |
|
157 | 157 | end |
|
158 | 158 | |
|
159 | 159 | def test_index_sort_by_field_not_included_in_columns |
|
160 | 160 | Setting.issue_list_default_columns = %w(subject author) |
|
161 | 161 | get :index, :sort => 'tracker' |
|
162 | 162 | end |
|
163 | 163 | |
|
164 | 164 | def test_index_csv_with_project |
|
165 | 165 | Setting.default_language = 'en' |
|
166 | 166 | |
|
167 | 167 | get :index, :format => 'csv' |
|
168 | 168 | assert_response :success |
|
169 | 169 | assert_not_nil assigns(:issues) |
|
170 | 170 | assert_equal 'text/csv', @response.content_type |
|
171 | 171 | assert @response.body.starts_with?("#,") |
|
172 | 172 | |
|
173 | 173 | get :index, :project_id => 1, :format => 'csv' |
|
174 | 174 | assert_response :success |
|
175 | 175 | assert_not_nil assigns(:issues) |
|
176 | 176 | assert_equal 'text/csv', @response.content_type |
|
177 | 177 | end |
|
178 | 178 | |
|
179 | 179 | def test_index_pdf |
|
180 | 180 | get :index, :format => 'pdf' |
|
181 | 181 | assert_response :success |
|
182 | 182 | assert_not_nil assigns(:issues) |
|
183 | 183 | assert_equal 'application/pdf', @response.content_type |
|
184 | 184 | |
|
185 | 185 | get :index, :project_id => 1, :format => 'pdf' |
|
186 | 186 | assert_response :success |
|
187 | 187 | assert_not_nil assigns(:issues) |
|
188 | 188 | assert_equal 'application/pdf', @response.content_type |
|
189 | 189 | |
|
190 | 190 | get :index, :project_id => 1, :query_id => 6, :format => 'pdf' |
|
191 | 191 | assert_response :success |
|
192 | 192 | assert_not_nil assigns(:issues) |
|
193 | 193 | assert_equal 'application/pdf', @response.content_type |
|
194 | 194 | end |
|
195 | 195 | |
|
196 | 196 | def test_index_pdf_with_query_grouped_by_list_custom_field |
|
197 | 197 | get :index, :project_id => 1, :query_id => 9, :format => 'pdf' |
|
198 | 198 | assert_response :success |
|
199 | 199 | assert_not_nil assigns(:issues) |
|
200 | 200 | assert_not_nil assigns(:issue_count_by_group) |
|
201 | 201 | assert_equal 'application/pdf', @response.content_type |
|
202 | 202 | end |
|
203 | 203 | |
|
204 | 204 | def test_index_sort |
|
205 | 205 | get :index, :sort => 'tracker,id:desc' |
|
206 | 206 | assert_response :success |
|
207 | 207 | |
|
208 | 208 | sort_params = @request.session['issues_index_sort'] |
|
209 | 209 | assert sort_params.is_a?(String) |
|
210 | 210 | assert_equal 'tracker,id:desc', sort_params |
|
211 | 211 | |
|
212 | 212 | issues = assigns(:issues) |
|
213 | 213 | assert_not_nil issues |
|
214 | 214 | assert !issues.empty? |
|
215 | 215 | assert_equal issues.sort {|a,b| a.tracker == b.tracker ? b.id <=> a.id : a.tracker <=> b.tracker }.collect(&:id), issues.collect(&:id) |
|
216 | 216 | end |
|
217 | 217 | |
|
218 | 218 | def test_index_with_columns |
|
219 | 219 | columns = ['tracker', 'subject', 'assigned_to'] |
|
220 | 220 | get :index, :set_filter => 1, :query => { 'column_names' => columns} |
|
221 | 221 | assert_response :success |
|
222 | 222 | |
|
223 | 223 | # query should use specified columns |
|
224 | 224 | query = assigns(:query) |
|
225 | 225 | assert_kind_of Query, query |
|
226 | 226 | assert_equal columns, query.column_names.map(&:to_s) |
|
227 | 227 | |
|
228 | 228 | # columns should be stored in session |
|
229 | 229 | assert_kind_of Hash, session[:query] |
|
230 | 230 | assert_kind_of Array, session[:query][:column_names] |
|
231 | 231 | assert_equal columns, session[:query][:column_names].map(&:to_s) |
|
232 | 232 | end |
|
233 | 233 | |
|
234 | 234 | def test_gantt |
|
235 | 235 | get :gantt, :project_id => 1 |
|
236 | 236 | assert_response :success |
|
237 | 237 | assert_template 'gantt.rhtml' |
|
238 | 238 | assert_not_nil assigns(:gantt) |
|
239 | 239 | events = assigns(:gantt).events |
|
240 | 240 | assert_not_nil events |
|
241 | 241 | # Issue with start and due dates |
|
242 | 242 | i = Issue.find(1) |
|
243 | 243 | assert_not_nil i.due_date |
|
244 | 244 | assert events.include?(Issue.find(1)) |
|
245 | 245 | # Issue with without due date but targeted to a version with date |
|
246 | 246 | i = Issue.find(2) |
|
247 | 247 | assert_nil i.due_date |
|
248 | 248 | assert events.include?(i) |
|
249 | 249 | end |
|
250 | 250 | |
|
251 | 251 | def test_cross_project_gantt |
|
252 | 252 | get :gantt |
|
253 | 253 | assert_response :success |
|
254 | 254 | assert_template 'gantt.rhtml' |
|
255 | 255 | assert_not_nil assigns(:gantt) |
|
256 | 256 | events = assigns(:gantt).events |
|
257 | 257 | assert_not_nil events |
|
258 | 258 | end |
|
259 | 259 | |
|
260 | 260 | def test_gantt_export_to_pdf |
|
261 | 261 | get :gantt, :project_id => 1, :format => 'pdf' |
|
262 | 262 | assert_response :success |
|
263 | 263 | assert_equal 'application/pdf', @response.content_type |
|
264 | 264 | assert @response.body.starts_with?('%PDF') |
|
265 | 265 | assert_not_nil assigns(:gantt) |
|
266 | 266 | end |
|
267 | 267 | |
|
268 | 268 | def test_cross_project_gantt_export_to_pdf |
|
269 | 269 | get :gantt, :format => 'pdf' |
|
270 | 270 | assert_response :success |
|
271 | 271 | assert_equal 'application/pdf', @response.content_type |
|
272 | 272 | assert @response.body.starts_with?('%PDF') |
|
273 | 273 | assert_not_nil assigns(:gantt) |
|
274 | 274 | end |
|
275 | 275 | |
|
276 | 276 | if Object.const_defined?(:Magick) |
|
277 | 277 | def test_gantt_image |
|
278 | 278 | get :gantt, :project_id => 1, :format => 'png' |
|
279 | 279 | assert_response :success |
|
280 | 280 | assert_equal 'image/png', @response.content_type |
|
281 | 281 | end |
|
282 | 282 | else |
|
283 | 283 | puts "RMagick not installed. Skipping tests !!!" |
|
284 | 284 | end |
|
285 | 285 | |
|
286 | 286 | def test_calendar |
|
287 | 287 | get :calendar, :project_id => 1 |
|
288 | 288 | assert_response :success |
|
289 | 289 | assert_template 'calendar' |
|
290 | 290 | assert_not_nil assigns(:calendar) |
|
291 | 291 | end |
|
292 | 292 | |
|
293 | 293 | def test_cross_project_calendar |
|
294 | 294 | get :calendar |
|
295 | 295 | assert_response :success |
|
296 | 296 | assert_template 'calendar' |
|
297 | 297 | assert_not_nil assigns(:calendar) |
|
298 | 298 | end |
|
299 | 299 | |
|
300 | 300 | def test_changes |
|
301 | 301 | get :changes, :project_id => 1 |
|
302 | 302 | assert_response :success |
|
303 | 303 | assert_not_nil assigns(:journals) |
|
304 | 304 | assert_equal 'application/atom+xml', @response.content_type |
|
305 | 305 | end |
|
306 | 306 | |
|
307 | 307 | def test_show_by_anonymous |
|
308 | 308 | get :show, :id => 1 |
|
309 | 309 | assert_response :success |
|
310 | 310 | assert_template 'show.rhtml' |
|
311 | 311 | assert_not_nil assigns(:issue) |
|
312 | 312 | assert_equal Issue.find(1), assigns(:issue) |
|
313 | 313 | |
|
314 | 314 | # anonymous role is allowed to add a note |
|
315 | 315 | assert_tag :tag => 'form', |
|
316 | 316 | :descendant => { :tag => 'fieldset', |
|
317 | 317 | :child => { :tag => 'legend', |
|
318 | 318 | :content => /Notes/ } } |
|
319 | 319 | end |
|
320 | 320 | |
|
321 | 321 | def test_show_by_manager |
|
322 | 322 | @request.session[:user_id] = 2 |
|
323 | 323 | get :show, :id => 1 |
|
324 | 324 | assert_response :success |
|
325 | 325 | |
|
326 | 326 | assert_tag :tag => 'form', |
|
327 | 327 | :descendant => { :tag => 'fieldset', |
|
328 | 328 | :child => { :tag => 'legend', |
|
329 | 329 | :content => /Change properties/ } }, |
|
330 | 330 | :descendant => { :tag => 'fieldset', |
|
331 | 331 | :child => { :tag => 'legend', |
|
332 | 332 | :content => /Log time/ } }, |
|
333 | 333 | :descendant => { :tag => 'fieldset', |
|
334 | 334 | :child => { :tag => 'legend', |
|
335 | 335 | :content => /Notes/ } } |
|
336 | 336 | end |
|
337 | 337 | |
|
338 | 338 | def test_show_should_deny_anonymous_access_without_permission |
|
339 | 339 | Role.anonymous.remove_permission!(:view_issues) |
|
340 | 340 | get :show, :id => 1 |
|
341 | 341 | assert_response :redirect |
|
342 | 342 | end |
|
343 | 343 | |
|
344 | 344 | def test_show_should_deny_non_member_access_without_permission |
|
345 | 345 | Role.non_member.remove_permission!(:view_issues) |
|
346 | 346 | @request.session[:user_id] = 9 |
|
347 | 347 | get :show, :id => 1 |
|
348 | 348 | assert_response 403 |
|
349 | 349 | end |
|
350 | 350 | |
|
351 | 351 | def test_show_should_deny_member_access_without_permission |
|
352 | 352 | Role.find(1).remove_permission!(:view_issues) |
|
353 | 353 | @request.session[:user_id] = 2 |
|
354 | 354 | get :show, :id => 1 |
|
355 | 355 | assert_response 403 |
|
356 | 356 | end |
|
357 | 357 | |
|
358 | 358 | def test_show_should_not_disclose_relations_to_invisible_issues |
|
359 | 359 | Setting.cross_project_issue_relations = '1' |
|
360 | 360 | IssueRelation.create!(:issue_from => Issue.find(1), :issue_to => Issue.find(2), :relation_type => 'relates') |
|
361 | 361 | # Relation to a private project issue |
|
362 | 362 | IssueRelation.create!(:issue_from => Issue.find(1), :issue_to => Issue.find(4), :relation_type => 'relates') |
|
363 | 363 | |
|
364 | 364 | get :show, :id => 1 |
|
365 | 365 | assert_response :success |
|
366 | 366 | |
|
367 | 367 | assert_tag :div, :attributes => { :id => 'relations' }, |
|
368 | 368 | :descendant => { :tag => 'a', :content => /#2$/ } |
|
369 | 369 | assert_no_tag :div, :attributes => { :id => 'relations' }, |
|
370 | 370 | :descendant => { :tag => 'a', :content => /#4$/ } |
|
371 | 371 | end |
|
372 | 372 | |
|
373 | 373 | def test_show_atom |
|
374 | 374 | get :show, :id => 2, :format => 'atom' |
|
375 | 375 | assert_response :success |
|
376 | 376 | assert_template 'changes.rxml' |
|
377 | 377 | # Inline image |
|
378 | 378 | assert @response.body.include?("<img src=\"http://test.host/attachments/download/10\" alt=\"\" />"), "Body did not match. Body: #{@response.body}" |
|
379 | 379 | end |
|
380 | 380 | |
|
381 | 381 | def test_show_export_to_pdf |
|
382 | 382 | get :show, :id => 3, :format => 'pdf' |
|
383 | 383 | assert_response :success |
|
384 | 384 | assert_equal 'application/pdf', @response.content_type |
|
385 | 385 | assert @response.body.starts_with?('%PDF') |
|
386 | 386 | assert_not_nil assigns(:issue) |
|
387 | 387 | end |
|
388 | 388 | |
|
389 | 389 | def test_get_new |
|
390 | 390 | @request.session[:user_id] = 2 |
|
391 | 391 | get :new, :project_id => 1, :tracker_id => 1 |
|
392 | 392 | assert_response :success |
|
393 | 393 | assert_template 'new' |
|
394 | 394 | |
|
395 | 395 | assert_tag :tag => 'input', :attributes => { :name => 'issue[custom_field_values][2]', |
|
396 | 396 | :value => 'Default string' } |
|
397 | 397 | end |
|
398 | 398 | |
|
399 | 399 | def test_get_new_without_tracker_id |
|
400 | 400 | @request.session[:user_id] = 2 |
|
401 | 401 | get :new, :project_id => 1 |
|
402 | 402 | assert_response :success |
|
403 | 403 | assert_template 'new' |
|
404 | 404 | |
|
405 | 405 | issue = assigns(:issue) |
|
406 | 406 | assert_not_nil issue |
|
407 | 407 | assert_equal Project.find(1).trackers.first, issue.tracker |
|
408 | 408 | end |
|
409 | 409 | |
|
410 | 410 | def test_get_new_with_no_default_status_should_display_an_error |
|
411 | 411 | @request.session[:user_id] = 2 |
|
412 | 412 | IssueStatus.delete_all |
|
413 | 413 | |
|
414 | 414 | get :new, :project_id => 1 |
|
415 | 415 | assert_response 500 |
|
416 | 416 | assert_not_nil flash[:error] |
|
417 | 417 | assert_tag :tag => 'div', :attributes => { :class => /error/ }, |
|
418 | 418 | :content => /No default issue/ |
|
419 | 419 | end |
|
420 | 420 | |
|
421 | 421 | def test_get_new_with_no_tracker_should_display_an_error |
|
422 | 422 | @request.session[:user_id] = 2 |
|
423 | 423 | Tracker.delete_all |
|
424 | 424 | |
|
425 | 425 | get :new, :project_id => 1 |
|
426 | 426 | assert_response 500 |
|
427 | 427 | assert_not_nil flash[:error] |
|
428 | 428 | assert_tag :tag => 'div', :attributes => { :class => /error/ }, |
|
429 | 429 | :content => /No tracker/ |
|
430 | 430 | end |
|
431 | 431 | |
|
432 | 432 | def test_update_new_form |
|
433 | 433 | @request.session[:user_id] = 2 |
|
434 | 434 | xhr :post, :update_form, :project_id => 1, |
|
435 | 435 | :issue => {:tracker_id => 2, |
|
436 | 436 | :subject => 'This is the test_new issue', |
|
437 | 437 | :description => 'This is the description', |
|
438 | 438 | :priority_id => 5} |
|
439 | 439 | assert_response :success |
|
440 | 440 | assert_template 'attributes' |
|
441 | 441 | |
|
442 | 442 | issue = assigns(:issue) |
|
443 | 443 | assert_kind_of Issue, issue |
|
444 | 444 | assert_equal 1, issue.project_id |
|
445 | 445 | assert_equal 2, issue.tracker_id |
|
446 | 446 | assert_equal 'This is the test_new issue', issue.subject |
|
447 | 447 | end |
|
448 | 448 | |
|
449 | 449 | def test_post_new |
|
450 | 450 | @request.session[:user_id] = 2 |
|
451 | 451 | assert_difference 'Issue.count' do |
|
452 | 452 | post :new, :project_id => 1, |
|
453 | 453 | :issue => {:tracker_id => 3, |
|
454 | 454 | :subject => 'This is the test_new issue', |
|
455 | 455 | :description => 'This is the description', |
|
456 | 456 | :priority_id => 5, |
|
457 | 457 | :estimated_hours => '', |
|
458 | 458 | :custom_field_values => {'2' => 'Value for field 2'}} |
|
459 | 459 | end |
|
460 | 460 | assert_redirected_to :controller => 'issues', :action => 'show', :id => Issue.last.id |
|
461 | 461 | |
|
462 | 462 | issue = Issue.find_by_subject('This is the test_new issue') |
|
463 | 463 | assert_not_nil issue |
|
464 | 464 | assert_equal 2, issue.author_id |
|
465 | 465 | assert_equal 3, issue.tracker_id |
|
466 | 466 | assert_nil issue.estimated_hours |
|
467 | 467 | v = issue.custom_values.find(:first, :conditions => {:custom_field_id => 2}) |
|
468 | 468 | assert_not_nil v |
|
469 | 469 | assert_equal 'Value for field 2', v.value |
|
470 | 470 | end |
|
471 | 471 | |
|
472 | 472 | def test_post_new_and_continue |
|
473 | 473 | @request.session[:user_id] = 2 |
|
474 | 474 | post :new, :project_id => 1, |
|
475 | 475 | :issue => {:tracker_id => 3, |
|
476 | 476 | :subject => 'This is first issue', |
|
477 | 477 | :priority_id => 5}, |
|
478 | 478 | :continue => '' |
|
479 | 479 | assert_redirected_to :controller => 'issues', :action => 'new', :tracker_id => 3 |
|
480 | 480 | end |
|
481 | 481 | |
|
482 | 482 | def test_post_new_without_custom_fields_param |
|
483 | 483 | @request.session[:user_id] = 2 |
|
484 | 484 | assert_difference 'Issue.count' do |
|
485 | 485 | post :new, :project_id => 1, |
|
486 | 486 | :issue => {:tracker_id => 1, |
|
487 | 487 | :subject => 'This is the test_new issue', |
|
488 | 488 | :description => 'This is the description', |
|
489 | 489 | :priority_id => 5} |
|
490 | 490 | end |
|
491 | 491 | assert_redirected_to :controller => 'issues', :action => 'show', :id => Issue.last.id |
|
492 | 492 | end |
|
493 | 493 | |
|
494 | 494 | def test_post_new_with_required_custom_field_and_without_custom_fields_param |
|
495 | 495 | field = IssueCustomField.find_by_name('Database') |
|
496 | 496 | field.update_attribute(:is_required, true) |
|
497 | 497 | |
|
498 | 498 | @request.session[:user_id] = 2 |
|
499 | 499 | post :new, :project_id => 1, |
|
500 | 500 | :issue => {:tracker_id => 1, |
|
501 | 501 | :subject => 'This is the test_new issue', |
|
502 | 502 | :description => 'This is the description', |
|
503 | 503 | :priority_id => 5} |
|
504 | 504 | assert_response :success |
|
505 | 505 | assert_template 'new' |
|
506 | 506 | issue = assigns(:issue) |
|
507 | 507 | assert_not_nil issue |
|
508 | 508 | assert_equal I18n.translate('activerecord.errors.messages.invalid'), issue.errors.on(:custom_values) |
|
509 | 509 | end |
|
510 | 510 | |
|
511 | 511 | def test_post_new_with_watchers |
|
512 | 512 | @request.session[:user_id] = 2 |
|
513 | 513 | ActionMailer::Base.deliveries.clear |
|
514 | 514 | |
|
515 | 515 | assert_difference 'Watcher.count', 2 do |
|
516 | 516 | post :new, :project_id => 1, |
|
517 | 517 | :issue => {:tracker_id => 1, |
|
518 | 518 | :subject => 'This is a new issue with watchers', |
|
519 | 519 | :description => 'This is the description', |
|
520 | 520 | :priority_id => 5, |
|
521 | 521 | :watcher_user_ids => ['2', '3']} |
|
522 | 522 | end |
|
523 | 523 | issue = Issue.find_by_subject('This is a new issue with watchers') |
|
524 | 524 | assert_not_nil issue |
|
525 | 525 | assert_redirected_to :controller => 'issues', :action => 'show', :id => issue |
|
526 | 526 | |
|
527 | 527 | # Watchers added |
|
528 | 528 | assert_equal [2, 3], issue.watcher_user_ids.sort |
|
529 | 529 | assert issue.watched_by?(User.find(3)) |
|
530 | 530 | # Watchers notified |
|
531 | 531 | mail = ActionMailer::Base.deliveries.last |
|
532 | 532 | assert_kind_of TMail::Mail, mail |
|
533 | 533 | assert [mail.bcc, mail.cc].flatten.include?(User.find(3).mail) |
|
534 | 534 | end |
|
535 | 535 | |
|
536 | 536 | def test_post_new_should_send_a_notification |
|
537 | 537 | ActionMailer::Base.deliveries.clear |
|
538 | 538 | @request.session[:user_id] = 2 |
|
539 | 539 | assert_difference 'Issue.count' do |
|
540 | 540 | post :new, :project_id => 1, |
|
541 | 541 | :issue => {:tracker_id => 3, |
|
542 | 542 | :subject => 'This is the test_new issue', |
|
543 | 543 | :description => 'This is the description', |
|
544 | 544 | :priority_id => 5, |
|
545 | 545 | :estimated_hours => '', |
|
546 | 546 | :custom_field_values => {'2' => 'Value for field 2'}} |
|
547 | 547 | end |
|
548 | 548 | assert_redirected_to :controller => 'issues', :action => 'show', :id => Issue.last.id |
|
549 | 549 | |
|
550 | 550 | assert_equal 1, ActionMailer::Base.deliveries.size |
|
551 | 551 | end |
|
552 | 552 | |
|
553 | 553 | def test_post_should_preserve_fields_values_on_validation_failure |
|
554 | 554 | @request.session[:user_id] = 2 |
|
555 | 555 | post :new, :project_id => 1, |
|
556 | 556 | :issue => {:tracker_id => 1, |
|
557 | 557 | # empty subject |
|
558 | 558 | :subject => '', |
|
559 | 559 | :description => 'This is a description', |
|
560 | 560 | :priority_id => 6, |
|
561 | 561 | :custom_field_values => {'1' => 'Oracle', '2' => 'Value for field 2'}} |
|
562 | 562 | assert_response :success |
|
563 | 563 | assert_template 'new' |
|
564 | 564 | |
|
565 | 565 | assert_tag :textarea, :attributes => { :name => 'issue[description]' }, |
|
566 | 566 | :content => 'This is a description' |
|
567 | 567 | assert_tag :select, :attributes => { :name => 'issue[priority_id]' }, |
|
568 | 568 | :child => { :tag => 'option', :attributes => { :selected => 'selected', |
|
569 | 569 | :value => '6' }, |
|
570 | 570 | :content => 'High' } |
|
571 | 571 | # Custom fields |
|
572 | 572 | assert_tag :select, :attributes => { :name => 'issue[custom_field_values][1]' }, |
|
573 | 573 | :child => { :tag => 'option', :attributes => { :selected => 'selected', |
|
574 | 574 | :value => 'Oracle' }, |
|
575 | 575 | :content => 'Oracle' } |
|
576 | 576 | assert_tag :input, :attributes => { :name => 'issue[custom_field_values][2]', |
|
577 | 577 | :value => 'Value for field 2'} |
|
578 | 578 | end |
|
579 | 579 | |
|
580 | 580 | def test_post_new_should_ignore_non_safe_attributes |
|
581 | 581 | @request.session[:user_id] = 2 |
|
582 | 582 | assert_nothing_raised do |
|
583 | 583 | post :new, :project_id => 1, :issue => { :tracker => "A param can not be a Tracker" } |
|
584 | 584 | end |
|
585 | 585 | end |
|
586 | 586 | |
|
587 | 587 | def test_copy_issue |
|
588 | 588 | @request.session[:user_id] = 2 |
|
589 | 589 | get :new, :project_id => 1, :copy_from => 1 |
|
590 | 590 | assert_template 'new' |
|
591 | 591 | assert_not_nil assigns(:issue) |
|
592 | 592 | orig = Issue.find(1) |
|
593 | 593 | assert_equal orig.subject, assigns(:issue).subject |
|
594 | 594 | end |
|
595 | 595 | |
|
596 | 596 | def test_get_edit |
|
597 | 597 | @request.session[:user_id] = 2 |
|
598 | 598 | get :edit, :id => 1 |
|
599 | 599 | assert_response :success |
|
600 | 600 | assert_template 'edit' |
|
601 | 601 | assert_not_nil assigns(:issue) |
|
602 | 602 | assert_equal Issue.find(1), assigns(:issue) |
|
603 | 603 | end |
|
604 | 604 | |
|
605 | 605 | def test_get_edit_with_params |
|
606 | 606 | @request.session[:user_id] = 2 |
|
607 | 607 | get :edit, :id => 1, :issue => { :status_id => 5, :priority_id => 7 } |
|
608 | 608 | assert_response :success |
|
609 | 609 | assert_template 'edit' |
|
610 | 610 | |
|
611 | 611 | issue = assigns(:issue) |
|
612 | 612 | assert_not_nil issue |
|
613 | 613 | |
|
614 | 614 | assert_equal 5, issue.status_id |
|
615 | 615 | assert_tag :select, :attributes => { :name => 'issue[status_id]' }, |
|
616 | 616 | :child => { :tag => 'option', |
|
617 | 617 | :content => 'Closed', |
|
618 | 618 | :attributes => { :selected => 'selected' } } |
|
619 | 619 | |
|
620 | 620 | assert_equal 7, issue.priority_id |
|
621 | 621 | assert_tag :select, :attributes => { :name => 'issue[priority_id]' }, |
|
622 | 622 | :child => { :tag => 'option', |
|
623 | 623 | :content => 'Urgent', |
|
624 | 624 | :attributes => { :selected => 'selected' } } |
|
625 | 625 | end |
|
626 | 626 | |
|
627 | 627 | def test_update_edit_form |
|
628 | 628 | @request.session[:user_id] = 2 |
|
629 | 629 | xhr :post, :update_form, :project_id => 1, |
|
630 | 630 | :id => 1, |
|
631 | 631 | :issue => {:tracker_id => 2, |
|
632 | 632 | :subject => 'This is the test_new issue', |
|
633 | 633 | :description => 'This is the description', |
|
634 | 634 | :priority_id => 5} |
|
635 | 635 | assert_response :success |
|
636 | 636 | assert_template 'attributes' |
|
637 | 637 | |
|
638 | 638 | issue = assigns(:issue) |
|
639 | 639 | assert_kind_of Issue, issue |
|
640 | 640 | assert_equal 1, issue.id |
|
641 | 641 | assert_equal 1, issue.project_id |
|
642 | 642 | assert_equal 2, issue.tracker_id |
|
643 | 643 | assert_equal 'This is the test_new issue', issue.subject |
|
644 | 644 | end |
|
645 | 645 | |
|
646 | 646 | def test_reply_to_issue |
|
647 | 647 | @request.session[:user_id] = 2 |
|
648 | 648 | get :reply, :id => 1 |
|
649 | 649 | assert_response :success |
|
650 | 650 | assert_select_rjs :show, "update" |
|
651 | 651 | end |
|
652 | 652 | |
|
653 | 653 | def test_reply_to_note |
|
654 | 654 | @request.session[:user_id] = 2 |
|
655 | 655 | get :reply, :id => 1, :journal_id => 2 |
|
656 | 656 | assert_response :success |
|
657 | 657 | assert_select_rjs :show, "update" |
|
658 | 658 | end |
|
659 | 659 | |
|
660 | 660 | def test_update_using_invalid_http_verbs |
|
661 | 661 | @request.session[:user_id] = 2 |
|
662 | 662 | subject = 'Updated by an invalid http verb' |
|
663 | 663 | |
|
664 | 664 | get :update, :id => 1, :issue => {:subject => subject} |
|
665 | 665 | assert_not_equal subject, Issue.find(1).subject |
|
666 | 666 | |
|
667 | 667 | post :update, :id => 1, :issue => {:subject => subject} |
|
668 | 668 | assert_not_equal subject, Issue.find(1).subject |
|
669 | 669 | |
|
670 | 670 | delete :update, :id => 1, :issue => {:subject => subject} |
|
671 | 671 | assert_not_equal subject, Issue.find(1).subject |
|
672 | 672 | end |
|
673 | 673 | |
|
674 | 674 | def test_put_update_without_custom_fields_param |
|
675 | 675 | @request.session[:user_id] = 2 |
|
676 | 676 | ActionMailer::Base.deliveries.clear |
|
677 | 677 | |
|
678 | 678 | issue = Issue.find(1) |
|
679 | 679 | assert_equal '125', issue.custom_value_for(2).value |
|
680 | 680 | old_subject = issue.subject |
|
681 | 681 | new_subject = 'Subject modified by IssuesControllerTest#test_post_edit' |
|
682 | 682 | |
|
683 | 683 | assert_difference('Journal.count') do |
|
684 | 684 | assert_difference('JournalDetail.count', 2) do |
|
685 | 685 | put :update, :id => 1, :issue => {:subject => new_subject, |
|
686 | 686 | :priority_id => '6', |
|
687 | 687 | :category_id => '1' # no change |
|
688 | 688 | } |
|
689 | 689 | end |
|
690 | 690 | end |
|
691 | 691 | assert_redirected_to :action => 'show', :id => '1' |
|
692 | 692 | issue.reload |
|
693 | 693 | assert_equal new_subject, issue.subject |
|
694 | 694 | # Make sure custom fields were not cleared |
|
695 | 695 | assert_equal '125', issue.custom_value_for(2).value |
|
696 | 696 | |
|
697 | 697 | mail = ActionMailer::Base.deliveries.last |
|
698 | 698 | assert_kind_of TMail::Mail, mail |
|
699 | 699 | assert mail.subject.starts_with?("[#{issue.project.name} - #{issue.tracker.name} ##{issue.id}]") |
|
700 | 700 | assert mail.body.include?("Subject changed from #{old_subject} to #{new_subject}") |
|
701 | 701 | end |
|
702 | 702 | |
|
703 | 703 | def test_put_update_with_custom_field_change |
|
704 | 704 | @request.session[:user_id] = 2 |
|
705 | 705 | issue = Issue.find(1) |
|
706 | 706 | assert_equal '125', issue.custom_value_for(2).value |
|
707 | 707 | |
|
708 | 708 | assert_difference('Journal.count') do |
|
709 | 709 | assert_difference('JournalDetail.count', 3) do |
|
710 | 710 | put :update, :id => 1, :issue => {:subject => 'Custom field change', |
|
711 | 711 | :priority_id => '6', |
|
712 | 712 | :category_id => '1', # no change |
|
713 | 713 | :custom_field_values => { '2' => 'New custom value' } |
|
714 | 714 | } |
|
715 | 715 | end |
|
716 | 716 | end |
|
717 | 717 | assert_redirected_to :action => 'show', :id => '1' |
|
718 | 718 | issue.reload |
|
719 | 719 | assert_equal 'New custom value', issue.custom_value_for(2).value |
|
720 | 720 | |
|
721 | 721 | mail = ActionMailer::Base.deliveries.last |
|
722 | 722 | assert_kind_of TMail::Mail, mail |
|
723 | 723 | assert mail.body.include?("Searchable field changed from 125 to New custom value") |
|
724 | 724 | end |
|
725 | 725 | |
|
726 | 726 | def test_put_update_with_status_and_assignee_change |
|
727 | 727 | issue = Issue.find(1) |
|
728 | 728 | assert_equal 1, issue.status_id |
|
729 | 729 | @request.session[:user_id] = 2 |
|
730 | 730 | assert_difference('TimeEntry.count', 0) do |
|
731 | 731 | put :update, |
|
732 | 732 | :id => 1, |
|
733 | 733 | :issue => { :status_id => 2, :assigned_to_id => 3 }, |
|
734 | 734 | :notes => 'Assigned to dlopper', |
|
735 | 735 | :time_entry => { :hours => '', :comments => '', :activity_id => TimeEntryActivity.first } |
|
736 | 736 | end |
|
737 | 737 | assert_redirected_to :action => 'show', :id => '1' |
|
738 | 738 | issue.reload |
|
739 | 739 | assert_equal 2, issue.status_id |
|
740 | 740 | j = Journal.find(:first, :order => 'id DESC') |
|
741 | 741 | assert_equal 'Assigned to dlopper', j.notes |
|
742 | 742 | assert_equal 2, j.details.size |
|
743 | 743 | |
|
744 | 744 | mail = ActionMailer::Base.deliveries.last |
|
745 | 745 | assert mail.body.include?("Status changed from New to Assigned") |
|
746 | 746 | # subject should contain the new status |
|
747 | 747 | assert mail.subject.include?("(#{ IssueStatus.find(2).name })") |
|
748 | 748 | end |
|
749 | 749 | |
|
750 | 750 | def test_put_update_with_note_only |
|
751 | 751 | notes = 'Note added by IssuesControllerTest#test_update_with_note_only' |
|
752 | 752 | # anonymous user |
|
753 | 753 | put :update, |
|
754 | 754 | :id => 1, |
|
755 | 755 | :notes => notes |
|
756 | 756 | assert_redirected_to :action => 'show', :id => '1' |
|
757 | 757 | j = Journal.find(:first, :order => 'id DESC') |
|
758 | 758 | assert_equal notes, j.notes |
|
759 | 759 | assert_equal 0, j.details.size |
|
760 | 760 | assert_equal User.anonymous, j.user |
|
761 | 761 | |
|
762 | 762 | mail = ActionMailer::Base.deliveries.last |
|
763 | 763 | assert mail.body.include?(notes) |
|
764 | 764 | end |
|
765 | 765 | |
|
766 | 766 | def test_put_update_with_note_and_spent_time |
|
767 | 767 | @request.session[:user_id] = 2 |
|
768 | 768 | spent_hours_before = Issue.find(1).spent_hours |
|
769 | 769 | assert_difference('TimeEntry.count') do |
|
770 | 770 | put :update, |
|
771 | 771 | :id => 1, |
|
772 | 772 | :notes => '2.5 hours added', |
|
773 | 773 | :time_entry => { :hours => '2.5', :comments => '', :activity_id => TimeEntryActivity.first } |
|
774 | 774 | end |
|
775 | 775 | assert_redirected_to :action => 'show', :id => '1' |
|
776 | 776 | |
|
777 | 777 | issue = Issue.find(1) |
|
778 | 778 | |
|
779 | 779 | j = Journal.find(:first, :order => 'id DESC') |
|
780 | 780 | assert_equal '2.5 hours added', j.notes |
|
781 | 781 | assert_equal 0, j.details.size |
|
782 | 782 | |
|
783 | 783 | t = issue.time_entries.find(:first, :order => 'id DESC') |
|
784 | 784 | assert_not_nil t |
|
785 | 785 | assert_equal 2.5, t.hours |
|
786 | 786 | assert_equal spent_hours_before + 2.5, issue.spent_hours |
|
787 | 787 | end |
|
788 | 788 | |
|
789 | 789 | def test_put_update_with_attachment_only |
|
790 | 790 | set_tmp_attachments_directory |
|
791 | 791 | |
|
792 | 792 | # Delete all fixtured journals, a race condition can occur causing the wrong |
|
793 | 793 | # journal to get fetched in the next find. |
|
794 | 794 | Journal.delete_all |
|
795 | 795 | |
|
796 | 796 | # anonymous user |
|
797 | 797 | put :update, |
|
798 | 798 | :id => 1, |
|
799 | 799 | :notes => '', |
|
800 | 800 | :attachments => {'1' => {'file' => uploaded_test_file('testfile.txt', 'text/plain')}} |
|
801 | 801 | assert_redirected_to :action => 'show', :id => '1' |
|
802 | 802 | j = Issue.find(1).journals.find(:first, :order => 'id DESC') |
|
803 | 803 | assert j.notes.blank? |
|
804 | 804 | assert_equal 1, j.details.size |
|
805 | 805 | assert_equal 'testfile.txt', j.details.first.value |
|
806 | 806 | assert_equal User.anonymous, j.user |
|
807 | 807 | |
|
808 | 808 | mail = ActionMailer::Base.deliveries.last |
|
809 | 809 | assert mail.body.include?('testfile.txt') |
|
810 | 810 | end |
|
811 | ||
|
811 | ||
|
812 | def test_put_update_with_attachment_that_fails_to_save | |
|
813 | set_tmp_attachments_directory | |
|
814 | ||
|
815 | # Delete all fixtured journals, a race condition can occur causing the wrong | |
|
816 | # journal to get fetched in the next find. | |
|
817 | Journal.delete_all | |
|
818 | ||
|
819 | # Mock out the unsaved attachment | |
|
820 | Attachment.any_instance.stubs(:create).returns(Attachment.new) | |
|
821 | ||
|
822 | # anonymous user | |
|
823 | put :update, | |
|
824 | :id => 1, | |
|
825 | :notes => '', | |
|
826 | :attachments => {'1' => {'file' => uploaded_test_file('testfile.txt', 'text/plain')}} | |
|
827 | assert_redirected_to :action => 'show', :id => '1' | |
|
828 | assert_equal '1 file(s) could not be saved.', flash[:warning] | |
|
829 | ||
|
830 | end if Object.const_defined?(:Mocha) | |
|
831 | ||
|
812 | 832 | def test_put_update_with_no_change |
|
813 | 833 | issue = Issue.find(1) |
|
814 | 834 | issue.journals.clear |
|
815 | 835 | ActionMailer::Base.deliveries.clear |
|
816 | 836 | |
|
817 | 837 | put :update, |
|
818 | 838 | :id => 1, |
|
819 | 839 | :notes => '' |
|
820 | 840 | assert_redirected_to :action => 'show', :id => '1' |
|
821 | 841 | |
|
822 | 842 | issue.reload |
|
823 | 843 | assert issue.journals.empty? |
|
824 | 844 | # No email should be sent |
|
825 | 845 | assert ActionMailer::Base.deliveries.empty? |
|
826 | 846 | end |
|
827 | 847 | |
|
828 | 848 | def test_put_update_should_send_a_notification |
|
829 | 849 | @request.session[:user_id] = 2 |
|
830 | 850 | ActionMailer::Base.deliveries.clear |
|
831 | 851 | issue = Issue.find(1) |
|
832 | 852 | old_subject = issue.subject |
|
833 | 853 | new_subject = 'Subject modified by IssuesControllerTest#test_post_edit' |
|
834 | 854 | |
|
835 | 855 | put :update, :id => 1, :issue => {:subject => new_subject, |
|
836 | 856 | :priority_id => '6', |
|
837 | 857 | :category_id => '1' # no change |
|
838 | 858 | } |
|
839 | 859 | assert_equal 1, ActionMailer::Base.deliveries.size |
|
840 | 860 | end |
|
841 | 861 | |
|
842 | 862 | def test_put_update_with_invalid_spent_time |
|
843 | 863 | @request.session[:user_id] = 2 |
|
844 | 864 | notes = 'Note added by IssuesControllerTest#test_post_edit_with_invalid_spent_time' |
|
845 | 865 | |
|
846 | 866 | assert_no_difference('Journal.count') do |
|
847 | 867 | put :update, |
|
848 | 868 | :id => 1, |
|
849 | 869 | :notes => notes, |
|
850 | 870 | :time_entry => {"comments"=>"", "activity_id"=>"", "hours"=>"2z"} |
|
851 | 871 | end |
|
852 | 872 | assert_response :success |
|
853 | 873 | assert_template 'edit' |
|
854 | 874 | |
|
855 | 875 | assert_tag :textarea, :attributes => { :name => 'notes' }, |
|
856 | 876 | :content => notes |
|
857 | 877 | assert_tag :input, :attributes => { :name => 'time_entry[hours]', :value => "2z" } |
|
858 | 878 | end |
|
859 | 879 | |
|
860 | 880 | def test_put_update_should_allow_fixed_version_to_be_set_to_a_subproject |
|
861 | 881 | issue = Issue.find(2) |
|
862 | 882 | @request.session[:user_id] = 2 |
|
863 | 883 | |
|
864 | 884 | put :update, |
|
865 | 885 | :id => issue.id, |
|
866 | 886 | :issue => { |
|
867 | 887 | :fixed_version_id => 4 |
|
868 | 888 | } |
|
869 | 889 | |
|
870 | 890 | assert_response :redirect |
|
871 | 891 | issue.reload |
|
872 | 892 | assert_equal 4, issue.fixed_version_id |
|
873 | 893 | assert_not_equal issue.project_id, issue.fixed_version.project_id |
|
874 | 894 | end |
|
875 | 895 | |
|
876 | 896 | def test_put_update_should_redirect_back_using_the_back_url_parameter |
|
877 | 897 | issue = Issue.find(2) |
|
878 | 898 | @request.session[:user_id] = 2 |
|
879 | 899 | |
|
880 | 900 | put :update, |
|
881 | 901 | :id => issue.id, |
|
882 | 902 | :issue => { |
|
883 | 903 | :fixed_version_id => 4 |
|
884 | 904 | }, |
|
885 | 905 | :back_url => '/issues' |
|
886 | 906 | |
|
887 | 907 | assert_response :redirect |
|
888 | 908 | assert_redirected_to '/issues' |
|
889 | 909 | end |
|
890 | 910 | |
|
891 | 911 | def test_put_update_should_not_redirect_back_using_the_back_url_parameter_off_the_host |
|
892 | 912 | issue = Issue.find(2) |
|
893 | 913 | @request.session[:user_id] = 2 |
|
894 | 914 | |
|
895 | 915 | put :update, |
|
896 | 916 | :id => issue.id, |
|
897 | 917 | :issue => { |
|
898 | 918 | :fixed_version_id => 4 |
|
899 | 919 | }, |
|
900 | 920 | :back_url => 'http://google.com' |
|
901 | 921 | |
|
902 | 922 | assert_response :redirect |
|
903 | 923 | assert_redirected_to :controller => 'issues', :action => 'show', :id => issue.id |
|
904 | 924 | end |
|
905 | 925 | |
|
906 | 926 | def test_get_bulk_edit |
|
907 | 927 | @request.session[:user_id] = 2 |
|
908 | 928 | get :bulk_edit, :ids => [1, 2] |
|
909 | 929 | assert_response :success |
|
910 | 930 | assert_template 'bulk_edit' |
|
911 | 931 | |
|
912 | 932 | # Project specific custom field, date type |
|
913 | 933 | field = CustomField.find(9) |
|
914 | 934 | assert !field.is_for_all? |
|
915 | 935 | assert_equal 'date', field.field_format |
|
916 | 936 | assert_tag :input, :attributes => {:name => 'issue[custom_field_values][9]'} |
|
917 | 937 | |
|
918 | 938 | # System wide custom field |
|
919 | 939 | assert CustomField.find(1).is_for_all? |
|
920 | 940 | assert_tag :select, :attributes => {:name => 'issue[custom_field_values][1]'} |
|
921 | 941 | end |
|
922 | 942 | |
|
923 | 943 | def test_bulk_edit |
|
924 | 944 | @request.session[:user_id] = 2 |
|
925 | 945 | # update issues priority |
|
926 | 946 | post :bulk_edit, :ids => [1, 2], :notes => 'Bulk editing', |
|
927 | 947 | :issue => {:priority_id => 7, |
|
928 | 948 | :assigned_to_id => '', |
|
929 | 949 | :custom_field_values => {'2' => ''}} |
|
930 | 950 | |
|
931 | 951 | assert_response 302 |
|
932 | 952 | # check that the issues were updated |
|
933 | 953 | assert_equal [7, 7], Issue.find_all_by_id([1, 2]).collect {|i| i.priority.id} |
|
934 | 954 | |
|
935 | 955 | issue = Issue.find(1) |
|
936 | 956 | journal = issue.journals.find(:first, :order => 'created_on DESC') |
|
937 | 957 | assert_equal '125', issue.custom_value_for(2).value |
|
938 | 958 | assert_equal 'Bulk editing', journal.notes |
|
939 | 959 | assert_equal 1, journal.details.size |
|
940 | 960 | end |
|
941 | 961 | |
|
942 | 962 | def test_bullk_edit_should_send_a_notification |
|
943 | 963 | @request.session[:user_id] = 2 |
|
944 | 964 | ActionMailer::Base.deliveries.clear |
|
945 | 965 | post(:bulk_edit, |
|
946 | 966 | { |
|
947 | 967 | :ids => [1, 2], |
|
948 | 968 | :notes => 'Bulk editing', |
|
949 | 969 | :issue => { |
|
950 | 970 | :priority_id => 7, |
|
951 | 971 | :assigned_to_id => '', |
|
952 | 972 | :custom_field_values => {'2' => ''} |
|
953 | 973 | } |
|
954 | 974 | }) |
|
955 | 975 | |
|
956 | 976 | assert_response 302 |
|
957 | 977 | assert_equal 2, ActionMailer::Base.deliveries.size |
|
958 | 978 | end |
|
959 | 979 | |
|
960 | 980 | def test_bulk_edit_status |
|
961 | 981 | @request.session[:user_id] = 2 |
|
962 | 982 | # update issues priority |
|
963 | 983 | post :bulk_edit, :ids => [1, 2], :notes => 'Bulk editing status', |
|
964 | 984 | :issue => {:priority_id => '', |
|
965 | 985 | :assigned_to_id => '', |
|
966 | 986 | :status_id => '5'} |
|
967 | 987 | |
|
968 | 988 | assert_response 302 |
|
969 | 989 | issue = Issue.find(1) |
|
970 | 990 | assert issue.closed? |
|
971 | 991 | end |
|
972 | 992 | |
|
973 | 993 | def test_bulk_edit_custom_field |
|
974 | 994 | @request.session[:user_id] = 2 |
|
975 | 995 | # update issues priority |
|
976 | 996 | post :bulk_edit, :ids => [1, 2], :notes => 'Bulk editing custom field', |
|
977 | 997 | :issue => {:priority_id => '', |
|
978 | 998 | :assigned_to_id => '', |
|
979 | 999 | :custom_field_values => {'2' => '777'}} |
|
980 | 1000 | |
|
981 | 1001 | assert_response 302 |
|
982 | 1002 | |
|
983 | 1003 | issue = Issue.find(1) |
|
984 | 1004 | journal = issue.journals.find(:first, :order => 'created_on DESC') |
|
985 | 1005 | assert_equal '777', issue.custom_value_for(2).value |
|
986 | 1006 | assert_equal 1, journal.details.size |
|
987 | 1007 | assert_equal '125', journal.details.first.old_value |
|
988 | 1008 | assert_equal '777', journal.details.first.value |
|
989 | 1009 | end |
|
990 | 1010 | |
|
991 | 1011 | def test_bulk_unassign |
|
992 | 1012 | assert_not_nil Issue.find(2).assigned_to |
|
993 | 1013 | @request.session[:user_id] = 2 |
|
994 | 1014 | # unassign issues |
|
995 | 1015 | post :bulk_edit, :ids => [1, 2], :notes => 'Bulk unassigning', :issue => {:assigned_to_id => 'none'} |
|
996 | 1016 | assert_response 302 |
|
997 | 1017 | # check that the issues were updated |
|
998 | 1018 | assert_nil Issue.find(2).assigned_to |
|
999 | 1019 | end |
|
1000 | 1020 | |
|
1001 | 1021 | def test_post_bulk_edit_should_allow_fixed_version_to_be_set_to_a_subproject |
|
1002 | 1022 | @request.session[:user_id] = 2 |
|
1003 | 1023 | |
|
1004 | 1024 | post :bulk_edit, :ids => [1,2], :issue => {:fixed_version_id => 4} |
|
1005 | 1025 | |
|
1006 | 1026 | assert_response :redirect |
|
1007 | 1027 | issues = Issue.find([1,2]) |
|
1008 | 1028 | issues.each do |issue| |
|
1009 | 1029 | assert_equal 4, issue.fixed_version_id |
|
1010 | 1030 | assert_not_equal issue.project_id, issue.fixed_version.project_id |
|
1011 | 1031 | end |
|
1012 | 1032 | end |
|
1013 | 1033 | |
|
1014 | 1034 | def test_post_bulk_edit_should_redirect_back_using_the_back_url_parameter |
|
1015 | 1035 | @request.session[:user_id] = 2 |
|
1016 | 1036 | post :bulk_edit, :ids => [1,2], :back_url => '/issues' |
|
1017 | 1037 | |
|
1018 | 1038 | assert_response :redirect |
|
1019 | 1039 | assert_redirected_to '/issues' |
|
1020 | 1040 | end |
|
1021 | 1041 | |
|
1022 | 1042 | def test_post_bulk_edit_should_not_redirect_back_using_the_back_url_parameter_off_the_host |
|
1023 | 1043 | @request.session[:user_id] = 2 |
|
1024 | 1044 | post :bulk_edit, :ids => [1,2], :back_url => 'http://google.com' |
|
1025 | 1045 | |
|
1026 | 1046 | assert_response :redirect |
|
1027 | 1047 | assert_redirected_to :controller => 'issues', :action => 'index', :project_id => Project.find(1).identifier |
|
1028 | 1048 | end |
|
1029 | 1049 | |
|
1030 | 1050 | def test_move_one_issue_to_another_project |
|
1031 | 1051 | @request.session[:user_id] = 2 |
|
1032 | 1052 | post :move, :id => 1, :new_project_id => 2, :tracker_id => '', :assigned_to_id => '', :status_id => '', :start_date => '', :due_date => '' |
|
1033 | 1053 | assert_redirected_to :action => 'index', :project_id => 'ecookbook' |
|
1034 | 1054 | assert_equal 2, Issue.find(1).project_id |
|
1035 | 1055 | end |
|
1036 | 1056 | |
|
1037 | 1057 | def test_move_one_issue_to_another_project_should_follow_when_needed |
|
1038 | 1058 | @request.session[:user_id] = 2 |
|
1039 | 1059 | post :move, :id => 1, :new_project_id => 2, :follow => '1' |
|
1040 | 1060 | assert_redirected_to '/issues/1' |
|
1041 | 1061 | end |
|
1042 | 1062 | |
|
1043 | 1063 | def test_bulk_move_to_another_project |
|
1044 | 1064 | @request.session[:user_id] = 2 |
|
1045 | 1065 | post :move, :ids => [1, 2], :new_project_id => 2 |
|
1046 | 1066 | assert_redirected_to :action => 'index', :project_id => 'ecookbook' |
|
1047 | 1067 | # Issues moved to project 2 |
|
1048 | 1068 | assert_equal 2, Issue.find(1).project_id |
|
1049 | 1069 | assert_equal 2, Issue.find(2).project_id |
|
1050 | 1070 | # No tracker change |
|
1051 | 1071 | assert_equal 1, Issue.find(1).tracker_id |
|
1052 | 1072 | assert_equal 2, Issue.find(2).tracker_id |
|
1053 | 1073 | end |
|
1054 | 1074 | |
|
1055 | 1075 | def test_bulk_move_to_another_tracker |
|
1056 | 1076 | @request.session[:user_id] = 2 |
|
1057 | 1077 | post :move, :ids => [1, 2], :new_tracker_id => 2 |
|
1058 | 1078 | assert_redirected_to :action => 'index', :project_id => 'ecookbook' |
|
1059 | 1079 | assert_equal 2, Issue.find(1).tracker_id |
|
1060 | 1080 | assert_equal 2, Issue.find(2).tracker_id |
|
1061 | 1081 | end |
|
1062 | 1082 | |
|
1063 | 1083 | def test_bulk_copy_to_another_project |
|
1064 | 1084 | @request.session[:user_id] = 2 |
|
1065 | 1085 | assert_difference 'Issue.count', 2 do |
|
1066 | 1086 | assert_no_difference 'Project.find(1).issues.count' do |
|
1067 | 1087 | post :move, :ids => [1, 2], :new_project_id => 2, :copy_options => {:copy => '1'} |
|
1068 | 1088 | end |
|
1069 | 1089 | end |
|
1070 | 1090 | assert_redirected_to 'projects/ecookbook/issues' |
|
1071 | 1091 | end |
|
1072 | 1092 | |
|
1073 | 1093 | context "#move via bulk copy" do |
|
1074 | 1094 | should "allow not changing the issue's attributes" do |
|
1075 | 1095 | @request.session[:user_id] = 2 |
|
1076 | 1096 | issue_before_move = Issue.find(1) |
|
1077 | 1097 | assert_difference 'Issue.count', 1 do |
|
1078 | 1098 | assert_no_difference 'Project.find(1).issues.count' do |
|
1079 | 1099 | post :move, :ids => [1], :new_project_id => 2, :copy_options => {:copy => '1'}, :new_tracker_id => '', :assigned_to_id => '', :status_id => '', :start_date => '', :due_date => '' |
|
1080 | 1100 | end |
|
1081 | 1101 | end |
|
1082 | 1102 | issue_after_move = Issue.first(:order => 'id desc', :conditions => {:project_id => 2}) |
|
1083 | 1103 | assert_equal issue_before_move.tracker_id, issue_after_move.tracker_id |
|
1084 | 1104 | assert_equal issue_before_move.status_id, issue_after_move.status_id |
|
1085 | 1105 | assert_equal issue_before_move.assigned_to_id, issue_after_move.assigned_to_id |
|
1086 | 1106 | end |
|
1087 | 1107 | |
|
1088 | 1108 | should "allow changing the issue's attributes" do |
|
1089 | 1109 | @request.session[:user_id] = 2 |
|
1090 | 1110 | assert_difference 'Issue.count', 2 do |
|
1091 | 1111 | assert_no_difference 'Project.find(1).issues.count' do |
|
1092 | 1112 | post :move, :ids => [1, 2], :new_project_id => 2, :copy_options => {:copy => '1'}, :new_tracker_id => '', :assigned_to_id => 4, :status_id => 3, :start_date => '2009-12-01', :due_date => '2009-12-31' |
|
1093 | 1113 | end |
|
1094 | 1114 | end |
|
1095 | 1115 | |
|
1096 | 1116 | copied_issues = Issue.all(:limit => 2, :order => 'id desc', :conditions => {:project_id => 2}) |
|
1097 | 1117 | assert_equal 2, copied_issues.size |
|
1098 | 1118 | copied_issues.each do |issue| |
|
1099 | 1119 | assert_equal 2, issue.project_id, "Project is incorrect" |
|
1100 | 1120 | assert_equal 4, issue.assigned_to_id, "Assigned to is incorrect" |
|
1101 | 1121 | assert_equal 3, issue.status_id, "Status is incorrect" |
|
1102 | 1122 | assert_equal '2009-12-01', issue.start_date.to_s, "Start date is incorrect" |
|
1103 | 1123 | assert_equal '2009-12-31', issue.due_date.to_s, "Due date is incorrect" |
|
1104 | 1124 | end |
|
1105 | 1125 | end |
|
1106 | 1126 | end |
|
1107 | 1127 | |
|
1108 | 1128 | def test_copy_to_another_project_should_follow_when_needed |
|
1109 | 1129 | @request.session[:user_id] = 2 |
|
1110 | 1130 | post :move, :ids => [1], :new_project_id => 2, :copy_options => {:copy => '1'}, :follow => '1' |
|
1111 | 1131 | issue = Issue.first(:order => 'id DESC') |
|
1112 | 1132 | assert_redirected_to :controller => 'issues', :action => 'show', :id => issue |
|
1113 | 1133 | end |
|
1114 | 1134 | |
|
1115 | 1135 | def test_context_menu_one_issue |
|
1116 | 1136 | @request.session[:user_id] = 2 |
|
1117 | 1137 | get :context_menu, :ids => [1] |
|
1118 | 1138 | assert_response :success |
|
1119 | 1139 | assert_template 'context_menu' |
|
1120 | 1140 | assert_tag :tag => 'a', :content => 'Edit', |
|
1121 | 1141 | :attributes => { :href => '/issues/1/edit', |
|
1122 | 1142 | :class => 'icon-edit' } |
|
1123 | 1143 | assert_tag :tag => 'a', :content => 'Closed', |
|
1124 | 1144 | :attributes => { :href => '/issues/1/edit?issue%5Bstatus_id%5D=5', |
|
1125 | 1145 | :class => '' } |
|
1126 | 1146 | assert_tag :tag => 'a', :content => 'Immediate', |
|
1127 | 1147 | :attributes => { :href => '/issues/bulk_edit?ids%5B%5D=1&issue%5Bpriority_id%5D=8', |
|
1128 | 1148 | :class => '' } |
|
1129 | 1149 | # Versions |
|
1130 | 1150 | assert_tag :tag => 'a', :content => '2.0', |
|
1131 | 1151 | :attributes => { :href => '/issues/bulk_edit?ids%5B%5D=1&issue%5Bfixed_version_id%5D=3', |
|
1132 | 1152 | :class => '' } |
|
1133 | 1153 | assert_tag :tag => 'a', :content => 'eCookbook Subproject 1 - 2.0', |
|
1134 | 1154 | :attributes => { :href => '/issues/bulk_edit?ids%5B%5D=1&issue%5Bfixed_version_id%5D=4', |
|
1135 | 1155 | :class => '' } |
|
1136 | 1156 | |
|
1137 | 1157 | assert_tag :tag => 'a', :content => 'Dave Lopper', |
|
1138 | 1158 | :attributes => { :href => '/issues/bulk_edit?ids%5B%5D=1&issue%5Bassigned_to_id%5D=3', |
|
1139 | 1159 | :class => '' } |
|
1140 | 1160 | assert_tag :tag => 'a', :content => 'Duplicate', |
|
1141 | 1161 | :attributes => { :href => '/projects/ecookbook/issues/1/copy', |
|
1142 | 1162 | :class => 'icon-duplicate' } |
|
1143 | 1163 | assert_tag :tag => 'a', :content => 'Copy', |
|
1144 | 1164 | :attributes => { :href => '/issues/move?copy_options%5Bcopy%5D=t&ids%5B%5D=1', |
|
1145 | 1165 | :class => 'icon-copy' } |
|
1146 | 1166 | assert_tag :tag => 'a', :content => 'Move', |
|
1147 | 1167 | :attributes => { :href => '/issues/move?ids%5B%5D=1', |
|
1148 | 1168 | :class => 'icon-move' } |
|
1149 | 1169 | assert_tag :tag => 'a', :content => 'Delete', |
|
1150 | 1170 | :attributes => { :href => '/issues/destroy?ids%5B%5D=1', |
|
1151 | 1171 | :class => 'icon-del' } |
|
1152 | 1172 | end |
|
1153 | 1173 | |
|
1154 | 1174 | def test_context_menu_one_issue_by_anonymous |
|
1155 | 1175 | get :context_menu, :ids => [1] |
|
1156 | 1176 | assert_response :success |
|
1157 | 1177 | assert_template 'context_menu' |
|
1158 | 1178 | assert_tag :tag => 'a', :content => 'Delete', |
|
1159 | 1179 | :attributes => { :href => '#', |
|
1160 | 1180 | :class => 'icon-del disabled' } |
|
1161 | 1181 | end |
|
1162 | 1182 | |
|
1163 | 1183 | def test_context_menu_multiple_issues_of_same_project |
|
1164 | 1184 | @request.session[:user_id] = 2 |
|
1165 | 1185 | get :context_menu, :ids => [1, 2] |
|
1166 | 1186 | assert_response :success |
|
1167 | 1187 | assert_template 'context_menu' |
|
1168 | 1188 | assert_tag :tag => 'a', :content => 'Edit', |
|
1169 | 1189 | :attributes => { :href => '/issues/bulk_edit?ids%5B%5D=1&ids%5B%5D=2', |
|
1170 | 1190 | :class => 'icon-edit' } |
|
1171 | 1191 | assert_tag :tag => 'a', :content => 'Immediate', |
|
1172 | 1192 | :attributes => { :href => '/issues/bulk_edit?ids%5B%5D=1&ids%5B%5D=2&issue%5Bpriority_id%5D=8', |
|
1173 | 1193 | :class => '' } |
|
1174 | 1194 | assert_tag :tag => 'a', :content => 'Dave Lopper', |
|
1175 | 1195 | :attributes => { :href => '/issues/bulk_edit?ids%5B%5D=1&ids%5B%5D=2&issue%5Bassigned_to_id%5D=3', |
|
1176 | 1196 | :class => '' } |
|
1177 | 1197 | assert_tag :tag => 'a', :content => 'Copy', |
|
1178 | 1198 | :attributes => { :href => '/issues/move?copy_options%5Bcopy%5D=t&ids%5B%5D=1&ids%5B%5D=2', |
|
1179 | 1199 | :class => 'icon-copy' } |
|
1180 | 1200 | assert_tag :tag => 'a', :content => 'Move', |
|
1181 | 1201 | :attributes => { :href => '/issues/move?ids%5B%5D=1&ids%5B%5D=2', |
|
1182 | 1202 | :class => 'icon-move' } |
|
1183 | 1203 | assert_tag :tag => 'a', :content => 'Delete', |
|
1184 | 1204 | :attributes => { :href => '/issues/destroy?ids%5B%5D=1&ids%5B%5D=2', |
|
1185 | 1205 | :class => 'icon-del' } |
|
1186 | 1206 | end |
|
1187 | 1207 | |
|
1188 | 1208 | def test_context_menu_multiple_issues_of_different_project |
|
1189 | 1209 | @request.session[:user_id] = 2 |
|
1190 | 1210 | get :context_menu, :ids => [1, 2, 4] |
|
1191 | 1211 | assert_response :success |
|
1192 | 1212 | assert_template 'context_menu' |
|
1193 | 1213 | assert_tag :tag => 'a', :content => 'Delete', |
|
1194 | 1214 | :attributes => { :href => '#', |
|
1195 | 1215 | :class => 'icon-del disabled' } |
|
1196 | 1216 | end |
|
1197 | 1217 | |
|
1198 | 1218 | def test_destroy_issue_with_no_time_entries |
|
1199 | 1219 | assert_nil TimeEntry.find_by_issue_id(2) |
|
1200 | 1220 | @request.session[:user_id] = 2 |
|
1201 | 1221 | post :destroy, :id => 2 |
|
1202 | 1222 | assert_redirected_to :action => 'index', :project_id => 'ecookbook' |
|
1203 | 1223 | assert_nil Issue.find_by_id(2) |
|
1204 | 1224 | end |
|
1205 | 1225 | |
|
1206 | 1226 | def test_destroy_issues_with_time_entries |
|
1207 | 1227 | @request.session[:user_id] = 2 |
|
1208 | 1228 | post :destroy, :ids => [1, 3] |
|
1209 | 1229 | assert_response :success |
|
1210 | 1230 | assert_template 'destroy' |
|
1211 | 1231 | assert_not_nil assigns(:hours) |
|
1212 | 1232 | assert Issue.find_by_id(1) && Issue.find_by_id(3) |
|
1213 | 1233 | end |
|
1214 | 1234 | |
|
1215 | 1235 | def test_destroy_issues_and_destroy_time_entries |
|
1216 | 1236 | @request.session[:user_id] = 2 |
|
1217 | 1237 | post :destroy, :ids => [1, 3], :todo => 'destroy' |
|
1218 | 1238 | assert_redirected_to :action => 'index', :project_id => 'ecookbook' |
|
1219 | 1239 | assert !(Issue.find_by_id(1) || Issue.find_by_id(3)) |
|
1220 | 1240 | assert_nil TimeEntry.find_by_id([1, 2]) |
|
1221 | 1241 | end |
|
1222 | 1242 | |
|
1223 | 1243 | def test_destroy_issues_and_assign_time_entries_to_project |
|
1224 | 1244 | @request.session[:user_id] = 2 |
|
1225 | 1245 | post :destroy, :ids => [1, 3], :todo => 'nullify' |
|
1226 | 1246 | assert_redirected_to :action => 'index', :project_id => 'ecookbook' |
|
1227 | 1247 | assert !(Issue.find_by_id(1) || Issue.find_by_id(3)) |
|
1228 | 1248 | assert_nil TimeEntry.find(1).issue_id |
|
1229 | 1249 | assert_nil TimeEntry.find(2).issue_id |
|
1230 | 1250 | end |
|
1231 | 1251 | |
|
1232 | 1252 | def test_destroy_issues_and_reassign_time_entries_to_another_issue |
|
1233 | 1253 | @request.session[:user_id] = 2 |
|
1234 | 1254 | post :destroy, :ids => [1, 3], :todo => 'reassign', :reassign_to_id => 2 |
|
1235 | 1255 | assert_redirected_to :action => 'index', :project_id => 'ecookbook' |
|
1236 | 1256 | assert !(Issue.find_by_id(1) || Issue.find_by_id(3)) |
|
1237 | 1257 | assert_equal 2, TimeEntry.find(1).issue_id |
|
1238 | 1258 | assert_equal 2, TimeEntry.find(2).issue_id |
|
1239 | 1259 | end |
|
1240 | 1260 | |
|
1241 | 1261 | def test_default_search_scope |
|
1242 | 1262 | get :index |
|
1243 | 1263 | assert_tag :div, :attributes => {:id => 'quick-search'}, |
|
1244 | 1264 | :child => {:tag => 'form', |
|
1245 | 1265 | :child => {:tag => 'input', :attributes => {:name => 'issues', :type => 'hidden', :value => '1'}}} |
|
1246 | 1266 | end |
|
1247 | 1267 | end |
General Comments 0
You need to be logged in to leave comments.
Login now