| 
									
										
										
										
											2008-09-11 17:03:26 +00:00
										 |  |  | # Redmine - project management software | 
					
						
							| 
									
										
										
										
											2012-01-28 11:16:58 +00:00
										 |  |  | # Copyright (C) 2006-2012  Jean-Philippe Lang | 
					
						
							| 
									
										
										
										
											2007-11-05 18:38:42 +00: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-16 03:48:18 +00:00
										 |  |  | # | 
					
						
							| 
									
										
										
										
											2007-11-05 18:38:42 +00:00
										 |  |  | # This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  | # but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  | # GNU General Public License for more details. | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | # | 
					
						
							| 
									
										
										
										
											2007-11-05 18:38:42 +00:00
										 |  |  | # You should have received a copy of the GNU General Public License | 
					
						
							|  |  |  | # along with this program; if not, write to the Free Software | 
					
						
							|  |  |  | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-12 23:24:34 +00:00
										 |  |  | require File.expand_path('../../test_helper', __FILE__) | 
					
						
							| 
									
										
										
										
											2007-11-05 18:38:42 +00:00
										 |  |  | require 'issues_controller' | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-13 17:14:35 +00:00
										 |  |  | class IssuesControllerTest < ActionController::TestCase | 
					
						
							| 
									
										
										
										
											2007-12-13 18:52:09 +00:00
										 |  |  |   fixtures :projects, | 
					
						
							|  |  |  |            :users, | 
					
						
							|  |  |  |            :roles, | 
					
						
							|  |  |  |            :members, | 
					
						
							| 
									
										
										
										
											2009-05-10 10:54:31 +00:00
										 |  |  |            :member_roles, | 
					
						
							| 
									
										
										
										
											2007-12-13 18:52:09 +00:00
										 |  |  |            :issues, | 
					
						
							|  |  |  |            :issue_statuses, | 
					
						
							| 
									
										
										
										
											2008-09-14 12:41:24 +00:00
										 |  |  |            :versions, | 
					
						
							| 
									
										
										
										
											2007-12-13 18:52:09 +00:00
										 |  |  |            :trackers, | 
					
						
							| 
									
										
										
										
											2008-01-20 11:30:57 +00:00
										 |  |  |            :projects_trackers, | 
					
						
							| 
									
										
										
										
											2007-12-13 18:52:09 +00:00
										 |  |  |            :issue_categories, | 
					
						
							|  |  |  |            :enabled_modules, | 
					
						
							|  |  |  |            :enumerations, | 
					
						
							| 
									
										
										
										
											2008-01-06 17:06:14 +00:00
										 |  |  |            :attachments, | 
					
						
							| 
									
										
										
										
											2008-01-20 21:29:51 +00:00
										 |  |  |            :workflows, | 
					
						
							|  |  |  |            :custom_fields, | 
					
						
							|  |  |  |            :custom_values, | 
					
						
							| 
									
										
										
										
											2009-11-27 20:49:33 +00:00
										 |  |  |            :custom_fields_projects, | 
					
						
							| 
									
										
										
										
											2008-02-29 22:54:07 +00:00
										 |  |  |            :custom_fields_trackers, | 
					
						
							| 
									
										
										
										
											2008-06-07 15:14:42 +00:00
										 |  |  |            :time_entries, | 
					
						
							|  |  |  |            :journals, | 
					
						
							| 
									
										
										
										
											2009-09-13 17:14:35 +00:00
										 |  |  |            :journal_details, | 
					
						
							| 
									
										
										
										
											2012-02-02 17:43:36 +00:00
										 |  |  |            :queries, | 
					
						
							|  |  |  |            :repositories, | 
					
						
							|  |  |  |            :changesets | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-27 02:26:36 +00:00
										 |  |  |   include Redmine::I18n | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-05 18:38:42 +00:00
										 |  |  |   def setup | 
					
						
							|  |  |  |     @controller = IssuesController.new | 
					
						
							|  |  |  |     @request    = ActionController::TestRequest.new | 
					
						
							|  |  |  |     @response   = ActionController::TestResponse.new | 
					
						
							|  |  |  |     User.current = nil | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-05 18:38:42 +00:00
										 |  |  |   def test_index | 
					
						
							| 
									
										
										
										
											2009-03-07 15:58:39 +00:00
										 |  |  |     Setting.default_language = 'en' | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-05 18:38:42 +00:00
										 |  |  |     get :index | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							| 
									
										
										
										
											2011-09-02 01:08:58 +00:00
										 |  |  |     assert_template 'index' | 
					
						
							| 
									
										
										
										
											2007-11-05 18:38:42 +00:00
										 |  |  |     assert_not_nil assigns(:issues) | 
					
						
							|  |  |  |     assert_nil assigns(:project) | 
					
						
							| 
									
										
										
										
											2008-05-14 18:19:37 +00:00
										 |  |  |     assert_tag :tag => 'a', :content => /Can't print recipes/ | 
					
						
							|  |  |  |     assert_tag :tag => 'a', :content => /Subproject issue/ | 
					
						
							|  |  |  |     # private projects hidden | 
					
						
							|  |  |  |     assert_no_tag :tag => 'a', :content => /Issue of a private subproject/ | 
					
						
							|  |  |  |     assert_no_tag :tag => 'a', :content => /Issue on project 2/ | 
					
						
							| 
									
										
										
										
											2009-03-07 15:58:39 +00:00
										 |  |  |     # project column | 
					
						
							|  |  |  |     assert_tag :tag => 'th', :content => /Project/ | 
					
						
							| 
									
										
										
										
											2007-11-05 18:38:42 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-25 18:51:03 +00:00
										 |  |  |   def test_index_should_not_list_issues_when_module_disabled | 
					
						
							|  |  |  |     EnabledModule.delete_all("name = 'issue_tracking' AND project_id = 1") | 
					
						
							| 
									
										
										
										
											2009-01-26 01:47:51 +00:00
										 |  |  |     get :index | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							| 
									
										
										
										
											2011-09-02 01:09:54 +00:00
										 |  |  |     assert_template 'index' | 
					
						
							| 
									
										
										
										
											2009-01-26 01:47:51 +00:00
										 |  |  |     assert_not_nil assigns(:issues) | 
					
						
							|  |  |  |     assert_nil assigns(:project) | 
					
						
							|  |  |  |     assert_no_tag :tag => 'a', :content => /Can't print recipes/ | 
					
						
							|  |  |  |     assert_tag :tag => 'a', :content => /Subproject issue/ | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-04-15 13:23:13 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   def test_index_should_list_visible_issues_only | 
					
						
							|  |  |  |     get :index, :per_page => 100
 | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_not_nil assigns(:issues) | 
					
						
							|  |  |  |     assert_nil assigns(:issues).detect {|issue| !issue.visible?} | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-05 18:38:42 +00:00
										 |  |  |   def test_index_with_project | 
					
						
							| 
									
										
										
										
											2008-05-14 18:19:37 +00:00
										 |  |  |     Setting.display_subprojects_issues = 0
 | 
					
						
							| 
									
										
										
										
											2007-11-05 18:38:42 +00:00
										 |  |  |     get :index, :project_id => 1
 | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							| 
									
										
										
										
											2011-09-02 01:41:22 +00:00
										 |  |  |     assert_template 'index' | 
					
						
							| 
									
										
										
										
											2007-11-05 18:38:42 +00:00
										 |  |  |     assert_not_nil assigns(:issues) | 
					
						
							| 
									
										
										
										
											2008-05-14 18:19:37 +00:00
										 |  |  |     assert_tag :tag => 'a', :content => /Can't print recipes/ | 
					
						
							|  |  |  |     assert_no_tag :tag => 'a', :content => /Subproject issue/ | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-14 18:19:37 +00:00
										 |  |  |   def test_index_with_project_and_subprojects | 
					
						
							|  |  |  |     Setting.display_subprojects_issues = 1
 | 
					
						
							|  |  |  |     get :index, :project_id => 1
 | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							| 
									
										
										
										
											2011-09-02 01:43:12 +00:00
										 |  |  |     assert_template 'index' | 
					
						
							| 
									
										
										
										
											2008-05-14 18:19:37 +00:00
										 |  |  |     assert_not_nil assigns(:issues) | 
					
						
							|  |  |  |     assert_tag :tag => 'a', :content => /Can't print recipes/ | 
					
						
							|  |  |  |     assert_tag :tag => 'a', :content => /Subproject issue/ | 
					
						
							|  |  |  |     assert_no_tag :tag => 'a', :content => /Issue of a private subproject/ | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-14 18:19:37 +00:00
										 |  |  |   def test_index_with_project_and_subprojects_should_show_private_subprojects | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     Setting.display_subprojects_issues = 1
 | 
					
						
							|  |  |  |     get :index, :project_id => 1
 | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							| 
									
										
										
										
											2011-09-02 01:42:30 +00:00
										 |  |  |     assert_template 'index' | 
					
						
							| 
									
										
										
										
											2008-05-14 18:19:37 +00:00
										 |  |  |     assert_not_nil assigns(:issues) | 
					
						
							|  |  |  |     assert_tag :tag => 'a', :content => /Can't print recipes/ | 
					
						
							|  |  |  |     assert_tag :tag => 'a', :content => /Subproject issue/ | 
					
						
							|  |  |  |     assert_tag :tag => 'a', :content => /Issue of a private subproject/ | 
					
						
							| 
									
										
										
										
											2007-11-05 18:38:42 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-07 15:38:51 +00:00
										 |  |  |   def test_index_with_project_and_default_filter | 
					
						
							| 
									
										
										
										
											2007-11-05 18:38:42 +00:00
										 |  |  |     get :index, :project_id => 1, :set_filter => 1
 | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							| 
									
										
										
										
											2011-09-02 00:13:48 +00:00
										 |  |  |     assert_template 'index' | 
					
						
							| 
									
										
										
										
											2007-11-05 18:38:42 +00:00
										 |  |  |     assert_not_nil assigns(:issues) | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-07 15:38:51 +00:00
										 |  |  |     query = assigns(:query) | 
					
						
							|  |  |  |     assert_not_nil query | 
					
						
							|  |  |  |     # default filter | 
					
						
							|  |  |  |     assert_equal({'status_id' => {:operator => 'o', :values => ['']}}, query.filters) | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-07 15:38:51 +00:00
										 |  |  |   def test_index_with_project_and_filter | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  |     get :index, :project_id => 1, :set_filter => 1, | 
					
						
							| 
									
										
										
										
											2011-04-01 15:00:23 +00:00
										 |  |  |       :f => ['tracker_id'], | 
					
						
							|  |  |  |       :op => {'tracker_id' => '='}, | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  |       :v => {'tracker_id' => ['1']} | 
					
						
							| 
									
										
										
										
											2010-11-07 15:38:51 +00:00
										 |  |  |     assert_response :success | 
					
						
							| 
									
										
										
										
											2011-09-02 01:44:07 +00:00
										 |  |  |     assert_template 'index' | 
					
						
							| 
									
										
										
										
											2010-11-07 15:38:51 +00:00
										 |  |  |     assert_not_nil assigns(:issues) | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-07 15:38:51 +00:00
										 |  |  |     query = assigns(:query) | 
					
						
							|  |  |  |     assert_not_nil query | 
					
						
							|  |  |  |     assert_equal({'tracker_id' => {:operator => '=', :values => ['1']}}, query.filters) | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-12 23:45:47 +00:00
										 |  |  |   def test_index_with_short_filters | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     to_test = { | 
					
						
							|  |  |  |       'status_id' => { | 
					
						
							|  |  |  |         'o' => { :op => 'o', :values => [''] }, | 
					
						
							|  |  |  |         'c' => { :op => 'c', :values => [''] }, | 
					
						
							|  |  |  |         '7' => { :op => '=', :values => ['7'] }, | 
					
						
							|  |  |  |         '7|3|4' => { :op => '=', :values => ['7', '3', '4'] }, | 
					
						
							|  |  |  |         '=7' => { :op => '=', :values => ['7'] }, | 
					
						
							|  |  |  |         '!3' => { :op => '!', :values => ['3'] }, | 
					
						
							|  |  |  |         '!7|3|4' => { :op => '!', :values => ['7', '3', '4'] }}, | 
					
						
							|  |  |  |       'subject' => { | 
					
						
							|  |  |  |         'This is a subject' => { :op => '=', :values => ['This is a subject'] }, | 
					
						
							|  |  |  |         'o' => { :op => '=', :values => ['o'] }, | 
					
						
							|  |  |  |         '~This is part of a subject' => { :op => '~', :values => ['This is part of a subject'] }, | 
					
						
							|  |  |  |         '!~This is part of a subject' => { :op => '!~', :values => ['This is part of a subject'] }}, | 
					
						
							| 
									
										
										
										
											2011-10-13 06:42:08 +00:00
										 |  |  |       'tracker_id' => { | 
					
						
							|  |  |  |         '3' => { :op => '=', :values => ['3'] }, | 
					
						
							| 
									
										
										
										
											2011-10-18 21:19:58 +00:00
										 |  |  |         '=3' => { :op => '=', :values => ['3'] }}, | 
					
						
							| 
									
										
										
										
											2011-10-12 23:45:47 +00:00
										 |  |  |       'start_date' => { | 
					
						
							|  |  |  |         '2011-10-12' => { :op => '=', :values => ['2011-10-12'] }, | 
					
						
							|  |  |  |         '=2011-10-12' => { :op => '=', :values => ['2011-10-12'] }, | 
					
						
							|  |  |  |         '>=2011-10-12' => { :op => '>=', :values => ['2011-10-12'] }, | 
					
						
							|  |  |  |         '<=2011-10-12' => { :op => '<=', :values => ['2011-10-12'] }, | 
					
						
							|  |  |  |         '><2011-10-01|2011-10-30' => { :op => '><', :values => ['2011-10-01', '2011-10-30'] }, | 
					
						
							|  |  |  |         '<t+2' => { :op => '<t+', :values => ['2'] }, | 
					
						
							|  |  |  |         '>t+2' => { :op => '>t+', :values => ['2'] }, | 
					
						
							|  |  |  |         't+2' => { :op => 't+', :values => ['2'] }, | 
					
						
							|  |  |  |         't' => { :op => 't', :values => [''] }, | 
					
						
							|  |  |  |         'w' => { :op => 'w', :values => [''] }, | 
					
						
							|  |  |  |         '>t-2' => { :op => '>t-', :values => ['2'] }, | 
					
						
							|  |  |  |         '<t-2' => { :op => '<t-', :values => ['2'] }, | 
					
						
							|  |  |  |         't-2' => { :op => 't-', :values => ['2'] }}, | 
					
						
							|  |  |  |       'created_on' => { | 
					
						
							|  |  |  |         '>=2011-10-12' => { :op => '>=', :values => ['2011-10-12'] }, | 
					
						
							|  |  |  |         '<t+2' => { :op => '=', :values => ['<t+2'] }, | 
					
						
							|  |  |  |         '>t+2' => { :op => '=', :values => ['>t+2'] }, | 
					
						
							|  |  |  |         't+2' => { :op => 't', :values => ['+2'] }}, | 
					
						
							|  |  |  |       'cf_1' => { | 
					
						
							|  |  |  |         'c' => { :op => '=', :values => ['c'] }, | 
					
						
							|  |  |  |         '!c' => { :op => '!', :values => ['c'] }, | 
					
						
							|  |  |  |         '!*' => { :op => '!*', :values => [''] }, | 
					
						
							|  |  |  |         '*' => { :op => '*', :values => [''] }}, | 
					
						
							|  |  |  |       'estimated_hours' => { | 
					
						
							|  |  |  |         '=13.4' => { :op => '=', :values => ['13.4'] }, | 
					
						
							|  |  |  |         '>=45' => { :op => '>=', :values => ['45'] }, | 
					
						
							|  |  |  |         '<=125' => { :op => '<=', :values => ['125'] }, | 
					
						
							|  |  |  |         '><10.5|20.5' => { :op => '><', :values => ['10.5', '20.5'] }, | 
					
						
							|  |  |  |         '!*' => { :op => '!*', :values => [''] }, | 
					
						
							|  |  |  |         '*' => { :op => '*', :values => [''] }} | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     default_filter = { 'status_id' => {:operator => 'o', :values => [''] }} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     to_test.each do |field, expression_and_expected| | 
					
						
							|  |  |  |       expression_and_expected.each do |filter_expression, expected| | 
					
						
							| 
									
										
										
										
											2011-10-13 06:19:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-12 23:45:47 +00:00
										 |  |  |         get :index, :set_filter => 1, field => filter_expression | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         assert_response :success | 
					
						
							|  |  |  |         assert_template 'index' | 
					
						
							|  |  |  |         assert_not_nil assigns(:issues) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         query = assigns(:query) | 
					
						
							|  |  |  |         assert_not_nil query | 
					
						
							|  |  |  |         assert query.has_filter?(field) | 
					
						
							|  |  |  |         assert_equal(default_filter.merge({field => {:operator => expected[:op], :values => expected[:values]}}), query.filters) | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-07 15:38:51 +00:00
										 |  |  |   def test_index_with_project_and_empty_filters | 
					
						
							|  |  |  |     get :index, :project_id => 1, :set_filter => 1, :fields => [''] | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							| 
									
										
										
										
											2011-09-02 00:14:31 +00:00
										 |  |  |     assert_template 'index' | 
					
						
							| 
									
										
										
										
											2010-11-07 15:38:51 +00:00
										 |  |  |     assert_not_nil assigns(:issues) | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-07 15:38:51 +00:00
										 |  |  |     query = assigns(:query) | 
					
						
							|  |  |  |     assert_not_nil query | 
					
						
							|  |  |  |     # no filter | 
					
						
							|  |  |  |     assert_equal({}, query.filters) | 
					
						
							| 
									
										
										
										
											2007-11-05 18:38:42 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-26 13:09:14 +00:00
										 |  |  |   def test_index_with_query | 
					
						
							|  |  |  |     get :index, :project_id => 1, :query_id => 5
 | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							| 
									
										
										
										
											2011-09-02 00:15:14 +00:00
										 |  |  |     assert_template 'index' | 
					
						
							| 
									
										
										
										
											2009-04-26 13:09:14 +00:00
										 |  |  |     assert_not_nil assigns(:issues) | 
					
						
							|  |  |  |     assert_nil assigns(:issue_count_by_group) | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-16 18:07:30 +00:00
										 |  |  |   def test_index_with_query_grouped_by_tracker | 
					
						
							| 
									
										
										
										
											2009-04-26 13:09:14 +00:00
										 |  |  |     get :index, :project_id => 1, :query_id => 6
 | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							| 
									
										
										
										
											2011-09-02 00:16:01 +00:00
										 |  |  |     assert_template 'index' | 
					
						
							| 
									
										
										
										
											2009-04-26 13:09:14 +00:00
										 |  |  |     assert_not_nil assigns(:issues) | 
					
						
							| 
									
										
										
										
											2009-12-02 18:57:17 +00:00
										 |  |  |     assert_not_nil assigns(:issue_count_by_group) | 
					
						
							| 
									
										
										
										
											2009-11-16 18:07:30 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-16 18:07:30 +00:00
										 |  |  |   def test_index_with_query_grouped_by_list_custom_field | 
					
						
							|  |  |  |     get :index, :project_id => 1, :query_id => 9
 | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							| 
									
										
										
										
											2011-09-02 00:16:47 +00:00
										 |  |  |     assert_template 'index' | 
					
						
							| 
									
										
										
										
											2009-11-16 18:07:30 +00:00
										 |  |  |     assert_not_nil assigns(:issues) | 
					
						
							| 
									
										
										
										
											2009-12-02 18:57:17 +00:00
										 |  |  |     assert_not_nil assigns(:issue_count_by_group) | 
					
						
							| 
									
										
										
										
											2009-04-26 13:09:14 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-08-31 14:12:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-07 21:35:14 +00:00
										 |  |  |   def test_index_with_query_id_and_project_id_should_set_session_query | 
					
						
							|  |  |  |     get :index, :project_id => 1, :query_id => 4
 | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_kind_of Hash, session[:query] | 
					
						
							|  |  |  |     assert_equal 4, session[:query][:id] | 
					
						
							|  |  |  |     assert_equal 1, session[:query][:project_id] | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_index_with_cross_project_query_in_session_should_show_project_issues | 
					
						
							|  |  |  |     q = Query.create!(:name => "test", :user_id => 2, :is_public => false, :project => nil) | 
					
						
							|  |  |  |     @request.session[:query] = {:id => q.id, :project_id => 1} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     with_settings :display_subprojects_issues => '0' do | 
					
						
							|  |  |  |       get :index, :project_id => 1
 | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_not_nil assigns(:query) | 
					
						
							|  |  |  |     assert_equal q.id, assigns(:query).id | 
					
						
							|  |  |  |     assert_equal 1, assigns(:query).project_id | 
					
						
							|  |  |  |     assert_equal [1], assigns(:issues).map(&:project_id).uniq | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-03 11:01:08 +00:00
										 |  |  |   def test_private_query_should_not_be_available_to_other_users | 
					
						
							|  |  |  |     q = Query.create!(:name => "private", :user => User.find(2), :is_public => false, :project => nil) | 
					
						
							|  |  |  |     @request.session[:user_id] = 3
 | 
					
						
							| 
									
										
										
										
											2011-08-31 14:12:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-03 11:01:08 +00:00
										 |  |  |     get :index, :query_id => q.id | 
					
						
							|  |  |  |     assert_response 403
 | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-08-31 14:12:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-03 11:01:08 +00:00
										 |  |  |   def test_private_query_should_be_available_to_its_user | 
					
						
							|  |  |  |     q = Query.create!(:name => "private", :user => User.find(2), :is_public => false, :project => nil) | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							| 
									
										
										
										
											2011-08-31 14:12:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-03 11:01:08 +00:00
										 |  |  |     get :index, :query_id => q.id | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-08-31 14:12:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-03 11:01:08 +00:00
										 |  |  |   def test_public_query_should_be_available_to_other_users | 
					
						
							|  |  |  |     q = Query.create!(:name => "private", :user => User.find(2), :is_public => true, :project => nil) | 
					
						
							|  |  |  |     @request.session[:user_id] = 3
 | 
					
						
							| 
									
										
										
										
											2011-08-31 14:12:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-03 11:01:08 +00:00
										 |  |  |     get :index, :query_id => q.id | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-20 13:23:20 +00:00
										 |  |  |   def test_index_csv | 
					
						
							| 
									
										
										
										
											2007-11-05 18:38:42 +00:00
										 |  |  |     get :index, :format => 'csv' | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_not_nil assigns(:issues) | 
					
						
							|  |  |  |     assert_equal 'text/csv', @response.content_type | 
					
						
							| 
									
										
										
										
											2009-11-04 13:22:26 +00:00
										 |  |  |     assert @response.body.starts_with?("#,") | 
					
						
							| 
									
										
										
										
											2011-11-20 13:23:20 +00:00
										 |  |  |     lines = @response.body.chomp.split("\n") | 
					
						
							|  |  |  |     assert_equal assigns(:query).columns.size + 1, lines[0].split(',').size | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2007-11-05 18:38:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-20 13:23:20 +00:00
										 |  |  |   def test_index_csv_with_project | 
					
						
							| 
									
										
										
										
											2007-11-05 18:38:42 +00:00
										 |  |  |     get :index, :project_id => 1, :format => 'csv' | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_not_nil assigns(:issues) | 
					
						
							|  |  |  |     assert_equal 'text/csv', @response.content_type | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-20 13:23:20 +00:00
										 |  |  |   def test_index_csv_with_description | 
					
						
							|  |  |  |     get :index, :format => 'csv', :description => '1' | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_not_nil assigns(:issues) | 
					
						
							|  |  |  |     assert_equal 'text/csv', @response.content_type | 
					
						
							|  |  |  |     assert @response.body.starts_with?("#,") | 
					
						
							|  |  |  |     lines = @response.body.chomp.split("\n") | 
					
						
							|  |  |  |     assert_equal assigns(:query).columns.size + 2, lines[0].split(',').size | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-04 11:03:44 +00:00
										 |  |  |   def test_index_csv_with_spent_time_column | 
					
						
							|  |  |  |     issue = Issue.generate!(:project_id => 1, :tracker_id => 1, :subject => 'test_index_csv_with_spent_time_column') | 
					
						
							|  |  |  |     TimeEntry.generate!(:project_id => issue.project_id, :issue_id => issue.id, :hours => 7.33) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     get :index, :format => 'csv', :set_filter => '1', :c => %w(subject spent_hours) | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_equal 'text/csv', @response.content_type | 
					
						
							|  |  |  |     lines = @response.body.chomp.split("\n") | 
					
						
							|  |  |  |     assert_include "#{issue.id},#{issue.subject},7.33", lines | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-20 13:23:20 +00:00
										 |  |  |   def test_index_csv_with_all_columns | 
					
						
							|  |  |  |     get :index, :format => 'csv', :columns => 'all' | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_not_nil assigns(:issues) | 
					
						
							|  |  |  |     assert_equal 'text/csv', @response.content_type | 
					
						
							|  |  |  |     assert @response.body.starts_with?("#,") | 
					
						
							|  |  |  |     lines = @response.body.chomp.split("\n") | 
					
						
							|  |  |  |     assert_equal assigns(:query).available_columns.size + 1, lines[0].split(',').size | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-29 22:01:40 +00:00
										 |  |  |   def test_index_csv_with_multi_column_field | 
					
						
							|  |  |  |     CustomField.find(1).update_attribute :multiple, true | 
					
						
							|  |  |  |     issue = Issue.find(1) | 
					
						
							|  |  |  |     issue.custom_field_values = {1 => ['MySQL', 'Oracle']} | 
					
						
							|  |  |  |     issue.save! | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     get :index, :format => 'csv', :columns => 'all' | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     lines = @response.body.chomp.split("\n") | 
					
						
							|  |  |  |     assert lines.detect {|line| line.include?('"MySQL, Oracle"')} | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-16 13:49:40 +00:00
										 |  |  |   def test_index_csv_big_5 | 
					
						
							|  |  |  |     with_settings :default_language => "zh-TW" do | 
					
						
							|  |  |  |       str_utf8  = "\xe4\xb8\x80\xe6\x9c\x88" | 
					
						
							|  |  |  |       str_big5  = "\xa4@\xa4\xeb" | 
					
						
							|  |  |  |       if str_utf8.respond_to?(:force_encoding) | 
					
						
							|  |  |  |         str_utf8.force_encoding('UTF-8') | 
					
						
							|  |  |  |         str_big5.force_encoding('Big5') | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |       issue = Issue.new(:project_id => 1, :tracker_id => 1, :author_id => 3, | 
					
						
							|  |  |  |                         :status_id => 1, :priority => IssuePriority.all.first, | 
					
						
							|  |  |  |                         :subject => str_utf8) | 
					
						
							|  |  |  |       assert issue.save | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       get :index, :project_id => 1,  | 
					
						
							|  |  |  |                   :f => ['subject'],  | 
					
						
							|  |  |  |                   :op => '=', :values => [str_utf8], | 
					
						
							|  |  |  |                   :format => 'csv' | 
					
						
							|  |  |  |       assert_equal 'text/csv', @response.content_type | 
					
						
							| 
									
										
										
										
											2011-11-20 13:23:20 +00:00
										 |  |  |       lines = @response.body.chomp.split("\n") | 
					
						
							| 
									
										
										
										
											2011-11-16 13:49:40 +00:00
										 |  |  |       s1 = "\xaa\xac\xbaA" | 
					
						
							|  |  |  |       if str_utf8.respond_to?(:force_encoding) | 
					
						
							|  |  |  |         s1.force_encoding('Big5') | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |       assert lines[0].include?(s1) | 
					
						
							|  |  |  |       assert lines[1].include?(str_big5) | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-16 15:36:26 +00:00
										 |  |  |   def test_index_csv_cannot_convert_should_be_replaced_big_5 | 
					
						
							|  |  |  |     with_settings :default_language => "zh-TW" do | 
					
						
							|  |  |  |       str_utf8  = "\xe4\xbb\xa5\xe5\x86\x85" | 
					
						
							|  |  |  |       if str_utf8.respond_to?(:force_encoding) | 
					
						
							|  |  |  |         str_utf8.force_encoding('UTF-8') | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |       issue = Issue.new(:project_id => 1, :tracker_id => 1, :author_id => 3, | 
					
						
							|  |  |  |                         :status_id => 1, :priority => IssuePriority.all.first, | 
					
						
							|  |  |  |                         :subject => str_utf8) | 
					
						
							|  |  |  |       assert issue.save | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       get :index, :project_id => 1,  | 
					
						
							|  |  |  |                   :f => ['subject'],  | 
					
						
							|  |  |  |                   :op => '=', :values => [str_utf8], | 
					
						
							| 
									
										
										
										
											2011-11-20 13:23:20 +00:00
										 |  |  |                   :c => ['status', 'subject'], | 
					
						
							|  |  |  |                   :format => 'csv', | 
					
						
							|  |  |  |                   :set_filter => 1
 | 
					
						
							| 
									
										
										
										
											2011-11-16 15:36:26 +00:00
										 |  |  |       assert_equal 'text/csv', @response.content_type | 
					
						
							| 
									
										
										
										
											2011-11-20 13:23:20 +00:00
										 |  |  |       lines = @response.body.chomp.split("\n") | 
					
						
							|  |  |  |       s1 = "\xaa\xac\xbaA" # status | 
					
						
							| 
									
										
										
										
											2011-11-16 15:36:26 +00:00
										 |  |  |       if str_utf8.respond_to?(:force_encoding) | 
					
						
							|  |  |  |         s1.force_encoding('Big5') | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |       assert lines[0].include?(s1) | 
					
						
							| 
									
										
										
										
											2011-11-20 13:23:20 +00:00
										 |  |  |       s2 = lines[1].split(",")[2] | 
					
						
							| 
									
										
										
										
											2011-11-16 15:36:26 +00:00
										 |  |  |       if s1.respond_to?(:force_encoding) | 
					
						
							| 
									
										
										
										
											2011-11-20 13:23:20 +00:00
										 |  |  |         s3 = "\xa5H?" # subject | 
					
						
							| 
									
										
										
										
											2011-11-16 15:36:26 +00:00
										 |  |  |         s3.force_encoding('Big5') | 
					
						
							|  |  |  |         assert_equal s3, s2 | 
					
						
							|  |  |  |       elsif RUBY_PLATFORM == 'java' | 
					
						
							|  |  |  |         assert_equal "??", s2 | 
					
						
							|  |  |  |       else | 
					
						
							|  |  |  |         assert_equal "\xa5H???", s2 | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-27 10:00:04 +00:00
										 |  |  |   def test_index_csv_tw | 
					
						
							|  |  |  |     with_settings :default_language => "zh-TW" do | 
					
						
							|  |  |  |       str1  = "test_index_csv_tw" | 
					
						
							|  |  |  |       issue = Issue.new(:project_id => 1, :tracker_id => 1, :author_id => 3, | 
					
						
							|  |  |  |                         :status_id => 1, :priority => IssuePriority.all.first, | 
					
						
							|  |  |  |                         :subject => str1, :estimated_hours => '1234.5') | 
					
						
							|  |  |  |       assert issue.save | 
					
						
							|  |  |  |       assert_equal 1234.5, issue.estimated_hours | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       get :index, :project_id => 1,  | 
					
						
							|  |  |  |                   :f => ['subject'],  | 
					
						
							|  |  |  |                   :op => '=', :values => [str1], | 
					
						
							|  |  |  |                   :c => ['estimated_hours', 'subject'], | 
					
						
							|  |  |  |                   :format => 'csv', | 
					
						
							|  |  |  |                   :set_filter => 1
 | 
					
						
							|  |  |  |       assert_equal 'text/csv', @response.content_type | 
					
						
							|  |  |  |       lines = @response.body.chomp.split("\n") | 
					
						
							| 
									
										
										
										
											2012-02-04 11:03:44 +00:00
										 |  |  |       assert_equal "#{issue.id},1234.50,#{str1}", lines[1] | 
					
						
							| 
									
										
										
										
											2011-11-27 10:00:04 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |       str_tw = "Traditional Chinese (\xe7\xb9\x81\xe9\xab\x94\xe4\xb8\xad\xe6\x96\x87)" | 
					
						
							|  |  |  |       if str_tw.respond_to?(:force_encoding) | 
					
						
							|  |  |  |         str_tw.force_encoding('UTF-8') | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |       assert_equal str_tw, l(:general_lang_name) | 
					
						
							|  |  |  |       assert_equal ',', l(:general_csv_separator) | 
					
						
							|  |  |  |       assert_equal '.', l(:general_csv_decimal_separator) | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_index_csv_fr | 
					
						
							|  |  |  |     with_settings :default_language => "fr" do | 
					
						
							|  |  |  |       str1  = "test_index_csv_fr" | 
					
						
							|  |  |  |       issue = Issue.new(:project_id => 1, :tracker_id => 1, :author_id => 3, | 
					
						
							|  |  |  |                         :status_id => 1, :priority => IssuePriority.all.first, | 
					
						
							|  |  |  |                         :subject => str1, :estimated_hours => '1234.5') | 
					
						
							|  |  |  |       assert issue.save | 
					
						
							|  |  |  |       assert_equal 1234.5, issue.estimated_hours | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       get :index, :project_id => 1,  | 
					
						
							|  |  |  |                   :f => ['subject'],  | 
					
						
							|  |  |  |                   :op => '=', :values => [str1], | 
					
						
							|  |  |  |                   :c => ['estimated_hours', 'subject'], | 
					
						
							|  |  |  |                   :format => 'csv', | 
					
						
							|  |  |  |                   :set_filter => 1
 | 
					
						
							|  |  |  |       assert_equal 'text/csv', @response.content_type | 
					
						
							|  |  |  |       lines = @response.body.chomp.split("\n") | 
					
						
							| 
									
										
										
										
											2012-02-04 11:03:44 +00:00
										 |  |  |       assert_equal "#{issue.id};1234,50;#{str1}", lines[1] | 
					
						
							| 
									
										
										
										
											2011-11-27 10:00:04 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |       str_fr = "Fran\xc3\xa7ais" | 
					
						
							|  |  |  |       if str_fr.respond_to?(:force_encoding) | 
					
						
							|  |  |  |         str_fr.force_encoding('UTF-8') | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |       assert_equal str_fr, l(:general_lang_name) | 
					
						
							|  |  |  |       assert_equal ';', l(:general_csv_separator) | 
					
						
							|  |  |  |       assert_equal ',', l(:general_csv_decimal_separator) | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-05 18:38:42 +00:00
										 |  |  |   def test_index_pdf | 
					
						
							| 
									
										
										
										
											2011-11-27 02:26:36 +00:00
										 |  |  |     ["en", "zh", "zh-TW", "ja", "ko"].each do |lang| | 
					
						
							|  |  |  |       with_settings :default_language => lang do | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-27 02:26:36 +00:00
										 |  |  |         get :index | 
					
						
							|  |  |  |         assert_response :success | 
					
						
							|  |  |  |         assert_template 'index' | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-27 02:26:36 +00:00
										 |  |  |         if lang == "ja" | 
					
						
							|  |  |  |           if RUBY_PLATFORM != 'java' | 
					
						
							|  |  |  |             assert_equal "CP932", l(:general_pdf_encoding) | 
					
						
							|  |  |  |           end | 
					
						
							|  |  |  |           if RUBY_PLATFORM == 'java' && l(:general_pdf_encoding) == "CP932" | 
					
						
							|  |  |  |             next | 
					
						
							|  |  |  |           end | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         get :index, :format => 'pdf' | 
					
						
							|  |  |  |         assert_response :success | 
					
						
							|  |  |  |         assert_not_nil assigns(:issues) | 
					
						
							|  |  |  |         assert_equal 'application/pdf', @response.content_type | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         get :index, :project_id => 1, :format => 'pdf' | 
					
						
							|  |  |  |         assert_response :success | 
					
						
							|  |  |  |         assert_not_nil assigns(:issues) | 
					
						
							|  |  |  |         assert_equal 'application/pdf', @response.content_type | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         get :index, :project_id => 1, :query_id => 6, :format => 'pdf' | 
					
						
							|  |  |  |         assert_response :success | 
					
						
							|  |  |  |         assert_not_nil assigns(:issues) | 
					
						
							|  |  |  |         assert_equal 'application/pdf', @response.content_type | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2007-11-05 18:38:42 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-18 18:00:27 +00:00
										 |  |  |   def test_index_pdf_with_query_grouped_by_list_custom_field | 
					
						
							|  |  |  |     get :index, :project_id => 1, :query_id => 9, :format => 'pdf' | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_not_nil assigns(:issues) | 
					
						
							|  |  |  |     assert_not_nil assigns(:issue_count_by_group) | 
					
						
							|  |  |  |     assert_equal 'application/pdf', @response.content_type | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-24 10:03:13 +00:00
										 |  |  |   def test_index_sort | 
					
						
							| 
									
										
										
										
											2009-03-12 18:43:19 +00:00
										 |  |  |     get :index, :sort => 'tracker,id:desc' | 
					
						
							| 
									
										
										
										
											2008-12-24 10:03:13 +00:00
										 |  |  |     assert_response :success | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-12 18:43:19 +00:00
										 |  |  |     sort_params = @request.session['issues_index_sort'] | 
					
						
							|  |  |  |     assert sort_params.is_a?(String) | 
					
						
							|  |  |  |     assert_equal 'tracker,id:desc', sort_params | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-12 18:43:19 +00:00
										 |  |  |     issues = assigns(:issues) | 
					
						
							|  |  |  |     assert_not_nil issues | 
					
						
							|  |  |  |     assert !issues.empty? | 
					
						
							|  |  |  |     assert_equal issues.sort {|a,b| a.tracker == b.tracker ? b.id <=> a.id : a.tracker <=> b.tracker }.collect(&:id), issues.collect(&:id) | 
					
						
							| 
									
										
										
										
											2008-12-24 10:03:13 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-11-26 17:37:20 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   def test_index_sort_by_field_not_included_in_columns | 
					
						
							|  |  |  |     Setting.issue_list_default_columns = %w(subject author) | 
					
						
							|  |  |  |     get :index, :sort => 'tracker' | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  |    | 
					
						
							|  |  |  |   def test_index_sort_by_assigned_to | 
					
						
							|  |  |  |     get :index, :sort => 'assigned_to' | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assignees = assigns(:issues).collect(&:assigned_to).compact | 
					
						
							|  |  |  |     assert_equal assignees.sort, assignees | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  |    | 
					
						
							|  |  |  |   def test_index_sort_by_assigned_to_desc | 
					
						
							|  |  |  |     get :index, :sort => 'assigned_to:desc' | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assignees = assigns(:issues).collect(&:assigned_to).compact | 
					
						
							|  |  |  |     assert_equal assignees.sort.reverse, assignees | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  |    | 
					
						
							|  |  |  |   def test_index_group_by_assigned_to | 
					
						
							|  |  |  |     get :index, :group_by => 'assigned_to', :sort => 'priority' | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-11-19 12:47:56 +00:00
										 |  |  |    | 
					
						
							|  |  |  |   def test_index_sort_by_author | 
					
						
							|  |  |  |     get :index, :sort => 'author' | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							| 
									
										
										
										
											2011-11-26 17:37:20 +00:00
										 |  |  |     authors = assigns(:issues).collect(&:author) | 
					
						
							|  |  |  |     assert_equal authors.sort, authors | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  |    | 
					
						
							|  |  |  |   def test_index_sort_by_author_desc | 
					
						
							|  |  |  |     get :index, :sort => 'author:desc' | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     authors = assigns(:issues).collect(&:author) | 
					
						
							|  |  |  |     assert_equal authors.sort.reverse, authors | 
					
						
							| 
									
										
										
										
											2011-11-19 12:47:56 +00:00
										 |  |  |   end | 
					
						
							|  |  |  |    | 
					
						
							|  |  |  |   def test_index_group_by_author | 
					
						
							|  |  |  |     get :index, :group_by => 'author', :sort => 'priority' | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-12-04 16:43:32 +00:00
										 |  |  |    | 
					
						
							| 
									
										
										
										
											2011-12-04 19:12:15 +00:00
										 |  |  |   def test_index_sort_by_spent_hours | 
					
						
							|  |  |  |     get :index, :sort => 'spent_hours:desc' | 
					
						
							| 
									
										
										
										
											2011-12-04 16:43:32 +00:00
										 |  |  |     assert_response :success | 
					
						
							|  |  |  |     hours = assigns(:issues).collect(&:spent_hours) | 
					
						
							|  |  |  |     assert_equal hours.sort.reverse, hours | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-28 11:34:12 +00:00
										 |  |  |   def test_index_with_columns | 
					
						
							|  |  |  |     columns = ['tracker', 'subject', 'assigned_to'] | 
					
						
							| 
									
										
										
										
											2011-04-03 14:31:32 +00:00
										 |  |  |     get :index, :set_filter => 1, :c => columns | 
					
						
							| 
									
										
										
										
											2009-11-28 11:34:12 +00:00
										 |  |  |     assert_response :success | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-28 11:34:12 +00:00
										 |  |  |     # query should use specified columns | 
					
						
							|  |  |  |     query = assigns(:query) | 
					
						
							|  |  |  |     assert_kind_of Query, query | 
					
						
							|  |  |  |     assert_equal columns, query.column_names.map(&:to_s) | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-28 11:34:12 +00:00
										 |  |  |     # columns should be stored in session | 
					
						
							|  |  |  |     assert_kind_of Hash, session[:query] | 
					
						
							|  |  |  |     assert_kind_of Array, session[:query][:column_names] | 
					
						
							|  |  |  |     assert_equal columns, session[:query][:column_names].map(&:to_s) | 
					
						
							| 
									
										
										
										
											2011-06-20 01:09:38 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # ensure only these columns are kept in the selected columns list | 
					
						
							|  |  |  |     assert_tag :tag => 'select', :attributes => { :id => 'selected_columns' }, | 
					
						
							|  |  |  |                                  :children => { :count => 3 } | 
					
						
							|  |  |  |     assert_no_tag :tag => 'option', :attributes => { :value => 'project' }, | 
					
						
							|  |  |  |                                     :parent => { :tag => 'select', :attributes => { :id => "selected_columns" } } | 
					
						
							| 
									
										
										
										
											2009-11-28 11:34:12 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-26 17:44:20 +00:00
										 |  |  |   def test_index_without_project_should_implicitly_add_project_column_to_default_columns | 
					
						
							|  |  |  |     Setting.issue_list_default_columns = ['tracker', 'subject', 'assigned_to'] | 
					
						
							|  |  |  |     get :index, :set_filter => 1
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # query should use specified columns | 
					
						
							|  |  |  |     query = assigns(:query) | 
					
						
							|  |  |  |     assert_kind_of Query, query | 
					
						
							|  |  |  |     assert_equal [:project, :tracker, :subject, :assigned_to], query.columns.map(&:name) | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_index_without_project_and_explicit_default_columns_should_not_add_project_column | 
					
						
							|  |  |  |     Setting.issue_list_default_columns = ['tracker', 'subject', 'assigned_to'] | 
					
						
							|  |  |  |     columns = ['tracker', 'subject', 'assigned_to'] | 
					
						
							|  |  |  |     get :index, :set_filter => 1, :c => columns | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # query should use specified columns | 
					
						
							|  |  |  |     query = assigns(:query) | 
					
						
							|  |  |  |     assert_kind_of Query, query | 
					
						
							|  |  |  |     assert_equal columns.map(&:to_sym), query.columns.map(&:name) | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-05 22:18:49 +00:00
										 |  |  |   def test_index_with_custom_field_column | 
					
						
							|  |  |  |     columns = %w(tracker subject cf_2) | 
					
						
							|  |  |  |     get :index, :set_filter => 1, :c => columns | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-05 22:18:49 +00:00
										 |  |  |     # query should use specified columns | 
					
						
							|  |  |  |     query = assigns(:query) | 
					
						
							|  |  |  |     assert_kind_of Query, query | 
					
						
							|  |  |  |     assert_equal columns, query.column_names.map(&:to_s) | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-05 22:18:49 +00:00
										 |  |  |     assert_tag :td, | 
					
						
							|  |  |  |       :attributes => {:class => 'cf_2 string'}, | 
					
						
							|  |  |  |       :ancestor => {:tag => 'table', :attributes => {:class => /issues/}} | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2008-09-10 18:26:13 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-29 20:51:48 +00:00
										 |  |  |   def test_index_with_multi_custom_field_column | 
					
						
							|  |  |  |     field = CustomField.find(1) | 
					
						
							|  |  |  |     field.update_attribute :multiple, true | 
					
						
							|  |  |  |     issue = Issue.find(1) | 
					
						
							|  |  |  |     issue.custom_field_values = {1 => ['MySQL', 'Oracle']} | 
					
						
							|  |  |  |     issue.save! | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     get :index, :set_filter => 1, :c => %w(tracker subject cf_1) | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_tag :td, | 
					
						
							|  |  |  |       :attributes => {:class => /cf_1/}, | 
					
						
							|  |  |  |       :content => 'MySQL, Oracle' | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_index_with_multi_user_custom_field_column | 
					
						
							|  |  |  |     field = IssueCustomField.create!(:name => 'Multi user', :field_format => 'user', :multiple => true, | 
					
						
							|  |  |  |       :tracker_ids => [1], :is_for_all => true) | 
					
						
							|  |  |  |     issue = Issue.find(1) | 
					
						
							|  |  |  |     issue.custom_field_values = {field.id => ['2', '3']} | 
					
						
							|  |  |  |     issue.save! | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     get :index, :set_filter => 1, :c => ['tracker', 'subject', "cf_#{field.id}"] | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_tag :td, | 
					
						
							|  |  |  |       :attributes => {:class => /cf_#{field.id}/}, | 
					
						
							|  |  |  |       :child => {:tag => 'a', :content => 'John Smith'} | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-29 20:56:33 +00:00
										 |  |  |   def test_index_with_date_column | 
					
						
							|  |  |  |     Issue.find(1).update_attribute :start_date, '1987-08-24' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     with_settings :date_format => '%d/%m/%Y' do | 
					
						
							|  |  |  |       get :index, :set_filter => 1, :c => %w(start_date) | 
					
						
							|  |  |  |       assert_tag 'td', :attributes => {:class => /start_date/}, :content => '24/08/1987' | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_index_with_done_ratio | 
					
						
							|  |  |  |     Issue.find(1).update_attribute :done_ratio, 40
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     get :index, :set_filter => 1, :c => %w(done_ratio) | 
					
						
							|  |  |  |     assert_tag 'td', :attributes => {:class => /done_ratio/}, | 
					
						
							|  |  |  |       :child => {:tag => 'table', :attributes => {:class => 'progress'}, | 
					
						
							|  |  |  |         :descendant => {:tag => 'td', :attributes => {:class => 'closed', :style => 'width: 40%;'}} | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-04 16:43:32 +00:00
										 |  |  |   def test_index_with_spent_hours_column | 
					
						
							|  |  |  |     get :index, :set_filter => 1, :c => %w(subject spent_hours) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_tag 'tr', :attributes => {:id => 'issue-3'}, | 
					
						
							|  |  |  |       :child => { | 
					
						
							|  |  |  |         :tag => 'td', :attributes => {:class => /spent_hours/}, :content => '1.00' | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_index_should_not_show_spent_hours_column_without_permission | 
					
						
							|  |  |  |     Role.anonymous.remove_permission! :view_time_entries | 
					
						
							|  |  |  |     get :index, :set_filter => 1, :c => %w(subject spent_hours) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_no_tag 'td', :attributes => {:class => /spent_hours/} | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-29 20:56:33 +00:00
										 |  |  |   def test_index_with_fixed_version | 
					
						
							|  |  |  |     get :index, :set_filter => 1, :c => %w(fixed_version) | 
					
						
							|  |  |  |     assert_tag 'td', :attributes => {:class => /fixed_version/}, | 
					
						
							|  |  |  |       :child => {:tag => 'a', :content => '1.0', :attributes => {:href => '/versions/2'}} | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-01 23:41:33 +00:00
										 |  |  |   def test_index_send_html_if_query_is_invalid | 
					
						
							|  |  |  |     get :index, :f => ['start_date'], :op => {:start_date => '='} | 
					
						
							|  |  |  |     assert_equal 'text/html', @response.content_type | 
					
						
							|  |  |  |     assert_template 'index' | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-01 23:42:08 +00:00
										 |  |  |   def test_index_send_nothing_if_query_is_invalid | 
					
						
							|  |  |  |     get :index, :f => ['start_date'], :op => {:start_date => '='}, :format => 'csv' | 
					
						
							|  |  |  |     assert_equal 'text/csv', @response.content_type | 
					
						
							|  |  |  |     assert @response.body.blank? | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-06 17:06:14 +00:00
										 |  |  |   def test_show_by_anonymous | 
					
						
							| 
									
										
										
										
											2007-12-12 22:22:33 +00:00
										 |  |  |     get :show, :id => 1
 | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							| 
									
										
										
										
											2011-09-02 00:13:02 +00:00
										 |  |  |     assert_template 'show' | 
					
						
							| 
									
										
										
										
											2007-12-12 22:22:33 +00:00
										 |  |  |     assert_not_nil assigns(:issue) | 
					
						
							| 
									
										
										
										
											2008-01-06 17:06:14 +00:00
										 |  |  |     assert_equal Issue.find(1), assigns(:issue) | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-06 17:06:14 +00:00
										 |  |  |     # anonymous role is allowed to add a note | 
					
						
							|  |  |  |     assert_tag :tag => 'form', | 
					
						
							|  |  |  |                :descendant => { :tag => 'fieldset', | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  |                                 :child => { :tag => 'legend', | 
					
						
							| 
									
										
										
										
											2008-01-06 17:06:14 +00:00
										 |  |  |                                             :content => /Notes/ } } | 
					
						
							| 
									
										
										
										
											2011-11-19 11:43:11 +00:00
										 |  |  |     assert_tag :tag => 'title', | 
					
						
							|  |  |  |       :content => "Bug #1: Can't print recipes - eCookbook - Redmine" | 
					
						
							| 
									
										
										
										
											2007-12-12 22:22:33 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-06 17:06:14 +00:00
										 |  |  |   def test_show_by_manager | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     get :show, :id => 1
 | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-18 13:40:50 +00:00
										 |  |  |     assert_tag :tag => 'a', | 
					
						
							|  |  |  |       :content => /Quote/ | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-06 17:06:14 +00:00
										 |  |  |     assert_tag :tag => 'form', | 
					
						
							|  |  |  |                :descendant => { :tag => 'fieldset', | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  |                                 :child => { :tag => 'legend', | 
					
						
							| 
									
										
										
										
											2008-01-06 17:06:14 +00:00
										 |  |  |                                             :content => /Change properties/ } }, | 
					
						
							|  |  |  |                :descendant => { :tag => 'fieldset', | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  |                                 :child => { :tag => 'legend', | 
					
						
							| 
									
										
										
										
											2008-01-06 17:06:14 +00:00
										 |  |  |                                             :content => /Log time/ } }, | 
					
						
							|  |  |  |                :descendant => { :tag => 'fieldset', | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  |                                 :child => { :tag => 'legend', | 
					
						
							| 
									
										
										
										
											2008-01-06 17:06:14 +00:00
										 |  |  |                                             :content => /Notes/ } } | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-15 10:41:49 +00:00
										 |  |  |   def test_show_should_display_update_form | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     get :show, :id => 1
 | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_tag 'form', :attributes => {:id => 'issue-form'} | 
					
						
							|  |  |  |     assert_tag 'input', :attributes => {:name => 'issue[is_private]'} | 
					
						
							| 
									
										
										
										
											2012-01-07 12:34:52 +00:00
										 |  |  |     assert_tag 'select', :attributes => {:name => 'issue[project_id]'} | 
					
						
							| 
									
										
										
										
											2011-12-15 10:41:49 +00:00
										 |  |  |     assert_tag 'select', :attributes => {:name => 'issue[tracker_id]'} | 
					
						
							|  |  |  |     assert_tag 'input', :attributes => {:name => 'issue[subject]'} | 
					
						
							|  |  |  |     assert_tag 'textarea', :attributes => {:name => 'issue[description]'} | 
					
						
							|  |  |  |     assert_tag 'select', :attributes => {:name => 'issue[status_id]'} | 
					
						
							|  |  |  |     assert_tag 'select', :attributes => {:name => 'issue[priority_id]'} | 
					
						
							|  |  |  |     assert_tag 'select', :attributes => {:name => 'issue[assigned_to_id]'} | 
					
						
							|  |  |  |     assert_tag 'select', :attributes => {:name => 'issue[category_id]'} | 
					
						
							|  |  |  |     assert_tag 'select', :attributes => {:name => 'issue[fixed_version_id]'} | 
					
						
							|  |  |  |     assert_tag 'input', :attributes => {:name => 'issue[parent_issue_id]'} | 
					
						
							|  |  |  |     assert_tag 'input', :attributes => {:name => 'issue[start_date]'} | 
					
						
							|  |  |  |     assert_tag 'input', :attributes => {:name => 'issue[due_date]'} | 
					
						
							|  |  |  |     assert_tag 'select', :attributes => {:name => 'issue[done_ratio]'} | 
					
						
							|  |  |  |     assert_tag 'input', :attributes => { :name => 'issue[custom_field_values][2]' } | 
					
						
							|  |  |  |     assert_no_tag 'input', :attributes => {:name => 'issue[watcher_user_ids][]'} | 
					
						
							|  |  |  |     assert_tag 'textarea', :attributes => {:name => 'notes'} | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_show_should_display_update_form_with_minimal_permissions | 
					
						
							|  |  |  |     Role.find(1).update_attribute :permissions, [:view_issues, :add_issue_notes] | 
					
						
							|  |  |  |     Workflow.delete_all :role_id => 1
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     get :show, :id => 1
 | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_tag 'form', :attributes => {:id => 'issue-form'} | 
					
						
							|  |  |  |     assert_no_tag 'input', :attributes => {:name => 'issue[is_private]'} | 
					
						
							| 
									
										
										
										
											2012-01-07 12:34:52 +00:00
										 |  |  |     assert_no_tag 'select', :attributes => {:name => 'issue[project_id]'} | 
					
						
							| 
									
										
										
										
											2011-12-15 10:41:49 +00:00
										 |  |  |     assert_no_tag 'select', :attributes => {:name => 'issue[tracker_id]'} | 
					
						
							|  |  |  |     assert_no_tag 'input', :attributes => {:name => 'issue[subject]'} | 
					
						
							|  |  |  |     assert_no_tag 'textarea', :attributes => {:name => 'issue[description]'} | 
					
						
							|  |  |  |     assert_no_tag 'select', :attributes => {:name => 'issue[status_id]'} | 
					
						
							|  |  |  |     assert_no_tag 'select', :attributes => {:name => 'issue[priority_id]'} | 
					
						
							|  |  |  |     assert_no_tag 'select', :attributes => {:name => 'issue[assigned_to_id]'} | 
					
						
							|  |  |  |     assert_no_tag 'select', :attributes => {:name => 'issue[category_id]'} | 
					
						
							|  |  |  |     assert_no_tag 'select', :attributes => {:name => 'issue[fixed_version_id]'} | 
					
						
							|  |  |  |     assert_no_tag 'input', :attributes => {:name => 'issue[parent_issue_id]'} | 
					
						
							|  |  |  |     assert_no_tag 'input', :attributes => {:name => 'issue[start_date]'} | 
					
						
							|  |  |  |     assert_no_tag 'input', :attributes => {:name => 'issue[due_date]'} | 
					
						
							|  |  |  |     assert_no_tag 'select', :attributes => {:name => 'issue[done_ratio]'} | 
					
						
							|  |  |  |     assert_no_tag 'input', :attributes => { :name => 'issue[custom_field_values][2]' } | 
					
						
							|  |  |  |     assert_no_tag 'input', :attributes => {:name => 'issue[watcher_user_ids][]'} | 
					
						
							|  |  |  |     assert_tag 'textarea', :attributes => {:name => 'notes'} | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_show_should_display_update_form_with_workflow_permissions | 
					
						
							|  |  |  |     Role.find(1).update_attribute :permissions, [:view_issues, :add_issue_notes] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     get :show, :id => 1
 | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_tag 'form', :attributes => {:id => 'issue-form'} | 
					
						
							|  |  |  |     assert_no_tag 'input', :attributes => {:name => 'issue[is_private]'} | 
					
						
							| 
									
										
										
										
											2012-01-07 12:34:52 +00:00
										 |  |  |     assert_no_tag 'select', :attributes => {:name => 'issue[project_id]'} | 
					
						
							| 
									
										
										
										
											2011-12-15 10:41:49 +00:00
										 |  |  |     assert_no_tag 'select', :attributes => {:name => 'issue[tracker_id]'} | 
					
						
							|  |  |  |     assert_no_tag 'input', :attributes => {:name => 'issue[subject]'} | 
					
						
							|  |  |  |     assert_no_tag 'textarea', :attributes => {:name => 'issue[description]'} | 
					
						
							|  |  |  |     assert_tag 'select', :attributes => {:name => 'issue[status_id]'} | 
					
						
							|  |  |  |     assert_no_tag 'select', :attributes => {:name => 'issue[priority_id]'} | 
					
						
							|  |  |  |     assert_tag 'select', :attributes => {:name => 'issue[assigned_to_id]'} | 
					
						
							|  |  |  |     assert_no_tag 'select', :attributes => {:name => 'issue[category_id]'} | 
					
						
							|  |  |  |     assert_tag 'select', :attributes => {:name => 'issue[fixed_version_id]'} | 
					
						
							|  |  |  |     assert_no_tag 'input', :attributes => {:name => 'issue[parent_issue_id]'} | 
					
						
							|  |  |  |     assert_no_tag 'input', :attributes => {:name => 'issue[start_date]'} | 
					
						
							|  |  |  |     assert_no_tag 'input', :attributes => {:name => 'issue[due_date]'} | 
					
						
							|  |  |  |     assert_tag 'select', :attributes => {:name => 'issue[done_ratio]'} | 
					
						
							|  |  |  |     assert_no_tag 'input', :attributes => { :name => 'issue[custom_field_values][2]' } | 
					
						
							|  |  |  |     assert_no_tag 'input', :attributes => {:name => 'issue[watcher_user_ids][]'} | 
					
						
							|  |  |  |     assert_tag 'textarea', :attributes => {:name => 'notes'} | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_show_should_not_display_update_form_without_permissions | 
					
						
							|  |  |  |     Role.find(1).update_attribute :permissions, [:view_issues] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     get :show, :id => 1
 | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_no_tag 'form', :attributes => {:id => 'issue-form'} | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-13 19:43:40 +00:00
										 |  |  |   def test_update_form_should_not_display_inactive_enumerations | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     get :show, :id => 1
 | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert ! IssuePriority.find(15).active? | 
					
						
							|  |  |  |     assert_no_tag :option, :attributes => {:value => '15'}, | 
					
						
							|  |  |  |                            :parent => {:tag => 'select', :attributes => {:id => 'issue_priority_id'} } | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-08-31 14:12:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-29 16:04:38 +00:00
										 |  |  |   def test_update_form_should_allow_attachment_upload | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     get :show, :id => 1
 | 
					
						
							| 
									
										
										
										
											2011-08-31 14:12:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-29 16:04:38 +00:00
										 |  |  |     assert_tag :tag => 'form', | 
					
						
							|  |  |  |       :attributes => {:id => 'issue-form', :method => 'post', :enctype => 'multipart/form-data'}, | 
					
						
							|  |  |  |       :descendant => { | 
					
						
							|  |  |  |         :tag => 'input', | 
					
						
							|  |  |  |         :attributes => {:type => 'file', :name => 'attachments[1][file]'} | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-06-13 19:43:40 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-14 12:08:47 +00:00
										 |  |  |   def test_show_should_deny_anonymous_access_without_permission | 
					
						
							|  |  |  |     Role.anonymous.remove_permission!(:view_issues) | 
					
						
							|  |  |  |     get :show, :id => 1
 | 
					
						
							|  |  |  |     assert_response :redirect | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-15 13:23:13 +00:00
										 |  |  |   def test_show_should_deny_anonymous_access_to_private_issue | 
					
						
							|  |  |  |     Issue.update_all(["is_private = ?", true], "id = 1") | 
					
						
							|  |  |  |     get :show, :id => 1
 | 
					
						
							|  |  |  |     assert_response :redirect | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-14 12:08:47 +00:00
										 |  |  |   def test_show_should_deny_non_member_access_without_permission | 
					
						
							|  |  |  |     Role.non_member.remove_permission!(:view_issues) | 
					
						
							|  |  |  |     @request.session[:user_id] = 9
 | 
					
						
							|  |  |  |     get :show, :id => 1
 | 
					
						
							|  |  |  |     assert_response 403
 | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-15 13:23:13 +00:00
										 |  |  |   def test_show_should_deny_non_member_access_to_private_issue | 
					
						
							|  |  |  |     Issue.update_all(["is_private = ?", true], "id = 1") | 
					
						
							|  |  |  |     @request.session[:user_id] = 9
 | 
					
						
							|  |  |  |     get :show, :id => 1
 | 
					
						
							|  |  |  |     assert_response 403
 | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-14 12:08:47 +00:00
										 |  |  |   def test_show_should_deny_member_access_without_permission | 
					
						
							|  |  |  |     Role.find(1).remove_permission!(:view_issues) | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     get :show, :id => 1
 | 
					
						
							|  |  |  |     assert_response 403
 | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-15 13:23:13 +00:00
										 |  |  |   def test_show_should_deny_member_access_to_private_issue_without_permission | 
					
						
							|  |  |  |     Issue.update_all(["is_private = ?", true], "id = 1") | 
					
						
							|  |  |  |     @request.session[:user_id] = 3
 | 
					
						
							|  |  |  |     get :show, :id => 1
 | 
					
						
							|  |  |  |     assert_response 403
 | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-15 13:23:13 +00:00
										 |  |  |   def test_show_should_allow_author_access_to_private_issue | 
					
						
							|  |  |  |     Issue.update_all(["is_private = ?, author_id = 3", true], "id = 1") | 
					
						
							|  |  |  |     @request.session[:user_id] = 3
 | 
					
						
							|  |  |  |     get :show, :id => 1
 | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-15 13:23:13 +00:00
										 |  |  |   def test_show_should_allow_assignee_access_to_private_issue | 
					
						
							|  |  |  |     Issue.update_all(["is_private = ?, assigned_to_id = 3", true], "id = 1") | 
					
						
							|  |  |  |     @request.session[:user_id] = 3
 | 
					
						
							|  |  |  |     get :show, :id => 1
 | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-15 13:23:13 +00:00
										 |  |  |   def test_show_should_allow_member_access_to_private_issue_with_permission | 
					
						
							|  |  |  |     Issue.update_all(["is_private = ?", true], "id = 1") | 
					
						
							|  |  |  |     User.find(3).roles_for_project(Project.find(1)).first.update_attribute :issues_visibility, 'all' | 
					
						
							|  |  |  |     @request.session[:user_id] = 3
 | 
					
						
							|  |  |  |     get :show, :id => 1
 | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-31 13:22:29 +00:00
										 |  |  |   def test_show_should_not_disclose_relations_to_invisible_issues | 
					
						
							|  |  |  |     Setting.cross_project_issue_relations = '1' | 
					
						
							|  |  |  |     IssueRelation.create!(:issue_from => Issue.find(1), :issue_to => Issue.find(2), :relation_type => 'relates') | 
					
						
							|  |  |  |     # Relation to a private project issue | 
					
						
							|  |  |  |     IssueRelation.create!(:issue_from => Issue.find(1), :issue_to => Issue.find(4), :relation_type => 'relates') | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-31 13:22:29 +00:00
										 |  |  |     get :show, :id => 1
 | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-31 13:22:29 +00:00
										 |  |  |     assert_tag :div, :attributes => { :id => 'relations' }, | 
					
						
							|  |  |  |                      :descendant => { :tag => 'a', :content => /#2$/ } | 
					
						
							|  |  |  |     assert_no_tag :div, :attributes => { :id => 'relations' }, | 
					
						
							|  |  |  |                         :descendant => { :tag => 'a', :content => /#4$/ } | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-03 18:20:26 +00:00
										 |  |  |   def test_show_should_list_subtasks | 
					
						
							|  |  |  |     Issue.generate!(:project_id => 1, :author_id => 1, :tracker_id => 1, :parent_issue_id => 1, :subject => 'Child Issue') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     get :show, :id => 1
 | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_tag 'div', :attributes => {:id => 'issue_tree'}, | 
					
						
							| 
									
										
										
										
											2011-12-03 18:21:00 +00:00
										 |  |  |       :descendant => {:tag => 'td', :content => /Child Issue/, :attributes => {:class => /subject/}} | 
					
						
							| 
									
										
										
										
											2011-12-03 18:20:26 +00:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-03 18:25:53 +00:00
										 |  |  |   def test_show_should_list_parents | 
					
						
							|  |  |  |     issue = Issue.generate!(:project_id => 1, :author_id => 1, :tracker_id => 1, :parent_issue_id => 1, :subject => 'Child Issue') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     get :show, :id => issue.id | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_tag 'div', :attributes => {:class => 'subject'}, | 
					
						
							|  |  |  |       :descendant => {:tag => 'h3', :content => 'Child Issue'} | 
					
						
							|  |  |  |     assert_tag 'div', :attributes => {:class => 'subject'}, | 
					
						
							|  |  |  |       :descendant => {:tag => 'a', :attributes => {:href => '/issues/1'}} | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-03 20:09:44 +00:00
										 |  |  |   def test_show_should_not_display_prev_next_links_without_query_in_session | 
					
						
							|  |  |  |     get :show, :id => 1
 | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_nil assigns(:prev_issue_id) | 
					
						
							|  |  |  |     assert_nil assigns(:next_issue_id) | 
					
						
							| 
									
										
										
										
											2012-01-16 18:24:59 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     assert_no_tag 'div', :attributes => {:class => /next-prev-links/} | 
					
						
							| 
									
										
										
										
											2012-01-03 20:09:44 +00:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_show_should_display_prev_next_links_with_query_in_session | 
					
						
							|  |  |  |     @request.session[:query] = {:filters => {'status_id' => {:values => [''], :operator => 'o'}}, :project_id => nil} | 
					
						
							|  |  |  |     @request.session['issues_index_sort'] = 'id' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     with_settings :display_subprojects_issues => '0' do | 
					
						
							|  |  |  |       get :show, :id => 3
 | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     # Previous and next issues for all projects | 
					
						
							|  |  |  |     assert_equal 2, assigns(:prev_issue_id) | 
					
						
							|  |  |  |     assert_equal 5, assigns(:next_issue_id) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-16 18:24:59 +00:00
										 |  |  |     assert_tag 'div', :attributes => {:class => /next-prev-links/} | 
					
						
							| 
									
										
										
										
											2012-01-03 20:09:44 +00:00
										 |  |  |     assert_tag 'a', :attributes => {:href => '/issues/2'}, :content => /Previous/ | 
					
						
							|  |  |  |     assert_tag 'a', :attributes => {:href => '/issues/5'}, :content => /Next/ | 
					
						
							| 
									
										
										
										
											2012-01-16 18:24:59 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     count = Issue.open.visible.count | 
					
						
							| 
									
										
										
										
											2012-01-20 22:54:20 +00:00
										 |  |  |     assert_tag 'span', :attributes => {:class => 'position'}, :content => "3 of #{count}" | 
					
						
							| 
									
										
										
										
											2012-01-03 20:09:44 +00:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-16 17:49:04 +00:00
										 |  |  |   def test_show_should_display_prev_next_links_with_saved_query_in_session | 
					
						
							|  |  |  |     query = Query.create!(:name => 'test', :is_public => true,  :user_id => 1, | 
					
						
							|  |  |  |       :filters => {'status_id' => {:values => ['5'], :operator => '='}}, | 
					
						
							|  |  |  |       :sort_criteria => [['id', 'asc']]) | 
					
						
							|  |  |  |     @request.session[:query] = {:id => query.id, :project_id => nil} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     get :show, :id => 11
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_equal query, assigns(:query) | 
					
						
							|  |  |  |     # Previous and next issues for all projects | 
					
						
							|  |  |  |     assert_equal 8, assigns(:prev_issue_id) | 
					
						
							|  |  |  |     assert_equal 12, assigns(:next_issue_id) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_tag 'a', :attributes => {:href => '/issues/8'}, :content => /Previous/ | 
					
						
							|  |  |  |     assert_tag 'a', :attributes => {:href => '/issues/12'}, :content => /Next/ | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-08 18:21:00 +00:00
										 |  |  |   def test_show_should_display_prev_next_links_with_query_and_sort_on_association | 
					
						
							|  |  |  |     @request.session[:query] = {:filters => {'status_id' => {:values => [''], :operator => 'o'}}, :project_id => nil} | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  |     %w(project tracker status priority author assigned_to category fixed_version).each do |assoc_sort| | 
					
						
							|  |  |  |       @request.session['issues_index_sort'] = assoc_sort | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       get :show, :id => 3
 | 
					
						
							|  |  |  |       assert_response :success, "Wrong response status for #{assoc_sort} sort" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       assert_tag 'a', :content => /Previous/ | 
					
						
							|  |  |  |       assert_tag 'a', :content => /Next/ | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-03 20:09:44 +00:00
										 |  |  |   def test_show_should_display_prev_next_links_with_project_query_in_session | 
					
						
							|  |  |  |     @request.session[:query] = {:filters => {'status_id' => {:values => [''], :operator => 'o'}}, :project_id => 1} | 
					
						
							|  |  |  |     @request.session['issues_index_sort'] = 'id' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     with_settings :display_subprojects_issues => '0' do | 
					
						
							|  |  |  |       get :show, :id => 3
 | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     # Previous and next issues inside project | 
					
						
							|  |  |  |     assert_equal 2, assigns(:prev_issue_id) | 
					
						
							|  |  |  |     assert_equal 7, assigns(:next_issue_id) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_tag 'a', :attributes => {:href => '/issues/2'}, :content => /Previous/ | 
					
						
							|  |  |  |     assert_tag 'a', :attributes => {:href => '/issues/7'}, :content => /Next/ | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_show_should_not_display_prev_link_for_first_issue | 
					
						
							|  |  |  |     @request.session[:query] = {:filters => {'status_id' => {:values => [''], :operator => 'o'}}, :project_id => 1} | 
					
						
							|  |  |  |     @request.session['issues_index_sort'] = 'id' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     with_settings :display_subprojects_issues => '0' do | 
					
						
							|  |  |  |       get :show, :id => 1
 | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_nil assigns(:prev_issue_id) | 
					
						
							|  |  |  |     assert_equal 2, assigns(:next_issue_id) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_no_tag 'a', :content => /Previous/ | 
					
						
							|  |  |  |     assert_tag 'a', :attributes => {:href => '/issues/2'}, :content => /Next/ | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_show_should_not_display_prev_next_links_for_issue_not_in_query_results | 
					
						
							|  |  |  |     @request.session[:query] = {:filters => {'status_id' => {:values => [''], :operator => 'c'}}, :project_id => 1} | 
					
						
							|  |  |  |     @request.session['issues_index_sort'] = 'id' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     get :show, :id => 1
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_nil assigns(:prev_issue_id) | 
					
						
							|  |  |  |     assert_nil assigns(:next_issue_id) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_no_tag 'a', :content => /Previous/ | 
					
						
							|  |  |  |     assert_no_tag 'a', :content => /Next/ | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-02 17:43:36 +00:00
										 |  |  |   def test_show_should_display_visible_changesets_from_other_projects | 
					
						
							|  |  |  |     project = Project.find(2) | 
					
						
							|  |  |  |     issue = project.issues.first | 
					
						
							|  |  |  |     issue.changeset_ids = [102] | 
					
						
							|  |  |  |     issue.save! | 
					
						
							|  |  |  |     project.disable_module! :repository | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     get :show, :id => issue.id | 
					
						
							|  |  |  |     assert_tag 'a', :attributes => {:href => "/projects/ecookbook/repository/revisions/3"} | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-29 20:51:48 +00:00
										 |  |  |   def test_show_with_multi_custom_field | 
					
						
							|  |  |  |     field = CustomField.find(1) | 
					
						
							|  |  |  |     field.update_attribute :multiple, true | 
					
						
							|  |  |  |     issue = Issue.find(1) | 
					
						
							|  |  |  |     issue.custom_field_values = {1 => ['MySQL', 'Oracle']} | 
					
						
							|  |  |  |     issue.save! | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     get :show, :id => 1
 | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_tag :td, :content => 'MySQL, Oracle' | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_show_with_multi_user_custom_field | 
					
						
							|  |  |  |     field = IssueCustomField.create!(:name => 'Multi user', :field_format => 'user', :multiple => true, | 
					
						
							|  |  |  |       :tracker_ids => [1], :is_for_all => true) | 
					
						
							|  |  |  |     issue = Issue.find(1) | 
					
						
							|  |  |  |     issue.custom_field_values = {field.id => ['2', '3']} | 
					
						
							|  |  |  |     issue.save! | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     get :show, :id => 1
 | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # TODO: should display links | 
					
						
							| 
									
										
										
										
											2012-01-29 22:01:40 +00:00
										 |  |  |     assert_tag :td, :content => 'Dave Lopper, John Smith' | 
					
						
							| 
									
										
										
										
											2012-01-29 20:51:48 +00:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-26 08:28:36 +00:00
										 |  |  |   def test_show_atom | 
					
						
							|  |  |  |     get :show, :id => 2, :format => 'atom' | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							| 
									
										
										
										
											2011-10-04 13:40:30 +00:00
										 |  |  |     assert_template 'journals/index' | 
					
						
							| 
									
										
										
										
											2009-05-26 08:28:36 +00:00
										 |  |  |     # Inline image | 
					
						
							| 
									
										
										
										
											2010-03-10 05:38:58 +00:00
										 |  |  |     assert_select 'content', :text => Regexp.new(Regexp.quote('http://test.host/attachments/download/10')) | 
					
						
							| 
									
										
										
										
											2009-05-26 08:28:36 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-04 12:03:39 +00:00
										 |  |  |   def test_show_export_to_pdf | 
					
						
							| 
									
										
										
										
											2009-01-12 17:45:23 +00:00
										 |  |  |     get :show, :id => 3, :format => 'pdf' | 
					
						
							| 
									
										
										
										
											2009-01-04 12:03:39 +00:00
										 |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_equal 'application/pdf', @response.content_type | 
					
						
							|  |  |  |     assert @response.body.starts_with?('%PDF') | 
					
						
							|  |  |  |     assert_not_nil assigns(:issue) | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-20 11:30:57 +00:00
										 |  |  |   def test_get_new | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     get :new, :project_id => 1, :tracker_id => 1
 | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'new' | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-15 10:41:49 +00:00
										 |  |  |     assert_tag 'input', :attributes => {:name => 'issue[is_private]'} | 
					
						
							| 
									
										
										
										
											2012-01-07 12:34:52 +00:00
										 |  |  |     assert_no_tag 'select', :attributes => {:name => 'issue[project_id]'} | 
					
						
							| 
									
										
										
										
											2011-12-15 10:41:49 +00:00
										 |  |  |     assert_tag 'select', :attributes => {:name => 'issue[tracker_id]'} | 
					
						
							|  |  |  |     assert_tag 'input', :attributes => {:name => 'issue[subject]'} | 
					
						
							|  |  |  |     assert_tag 'textarea', :attributes => {:name => 'issue[description]'} | 
					
						
							|  |  |  |     assert_tag 'select', :attributes => {:name => 'issue[status_id]'} | 
					
						
							|  |  |  |     assert_tag 'select', :attributes => {:name => 'issue[priority_id]'} | 
					
						
							|  |  |  |     assert_tag 'select', :attributes => {:name => 'issue[assigned_to_id]'} | 
					
						
							|  |  |  |     assert_tag 'select', :attributes => {:name => 'issue[category_id]'} | 
					
						
							|  |  |  |     assert_tag 'select', :attributes => {:name => 'issue[fixed_version_id]'} | 
					
						
							|  |  |  |     assert_tag 'input', :attributes => {:name => 'issue[parent_issue_id]'} | 
					
						
							|  |  |  |     assert_tag 'input', :attributes => {:name => 'issue[start_date]'} | 
					
						
							|  |  |  |     assert_tag 'input', :attributes => {:name => 'issue[due_date]'} | 
					
						
							|  |  |  |     assert_tag 'select', :attributes => {:name => 'issue[done_ratio]'} | 
					
						
							|  |  |  |     assert_tag 'input', :attributes => { :name => 'issue[custom_field_values][2]', :value => 'Default string' } | 
					
						
							|  |  |  |     assert_tag 'input', :attributes => {:name => 'issue[watcher_user_ids][]'} | 
					
						
							| 
									
										
										
										
											2011-06-13 19:43:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # Be sure we don't display inactive IssuePriorities | 
					
						
							|  |  |  |     assert ! IssuePriority.find(15).active? | 
					
						
							|  |  |  |     assert_no_tag :option, :attributes => {:value => '15'}, | 
					
						
							|  |  |  |                            :parent => {:tag => 'select', :attributes => {:id => 'issue_priority_id'} } | 
					
						
							| 
									
										
										
										
											2008-01-20 11:30:57 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-08-31 14:12:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-15 10:41:49 +00:00
										 |  |  |   def test_get_new_with_minimal_permissions | 
					
						
							|  |  |  |     Role.find(1).update_attribute :permissions, [:add_issues] | 
					
						
							|  |  |  |     Workflow.delete_all :role_id => 1
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     get :new, :project_id => 1, :tracker_id => 1
 | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'new' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_no_tag 'input', :attributes => {:name => 'issue[is_private]'} | 
					
						
							| 
									
										
										
										
											2012-01-07 12:34:52 +00:00
										 |  |  |     assert_no_tag 'select', :attributes => {:name => 'issue[project_id]'} | 
					
						
							| 
									
										
										
										
											2011-12-15 10:41:49 +00:00
										 |  |  |     assert_tag 'select', :attributes => {:name => 'issue[tracker_id]'} | 
					
						
							|  |  |  |     assert_tag 'input', :attributes => {:name => 'issue[subject]'} | 
					
						
							|  |  |  |     assert_tag 'textarea', :attributes => {:name => 'issue[description]'} | 
					
						
							|  |  |  |     assert_tag 'select', :attributes => {:name => 'issue[status_id]'} | 
					
						
							|  |  |  |     assert_tag 'select', :attributes => {:name => 'issue[priority_id]'} | 
					
						
							|  |  |  |     assert_tag 'select', :attributes => {:name => 'issue[assigned_to_id]'} | 
					
						
							|  |  |  |     assert_tag 'select', :attributes => {:name => 'issue[category_id]'} | 
					
						
							|  |  |  |     assert_tag 'select', :attributes => {:name => 'issue[fixed_version_id]'} | 
					
						
							|  |  |  |     assert_no_tag 'input', :attributes => {:name => 'issue[parent_issue_id]'} | 
					
						
							|  |  |  |     assert_tag 'input', :attributes => {:name => 'issue[start_date]'} | 
					
						
							|  |  |  |     assert_tag 'input', :attributes => {:name => 'issue[due_date]'} | 
					
						
							|  |  |  |     assert_tag 'select', :attributes => {:name => 'issue[done_ratio]'} | 
					
						
							|  |  |  |     assert_tag 'input', :attributes => { :name => 'issue[custom_field_values][2]', :value => 'Default string' } | 
					
						
							|  |  |  |     assert_no_tag 'input', :attributes => {:name => 'issue[watcher_user_ids][]'} | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-29 20:51:48 +00:00
										 |  |  |   def test_get_new_with_multi_custom_field | 
					
						
							|  |  |  |     field = IssueCustomField.find(1) | 
					
						
							|  |  |  |     field.update_attribute :multiple, true | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     get :new, :project_id => 1, :tracker_id => 1
 | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'new' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_tag 'select', | 
					
						
							|  |  |  |       :attributes => {:name => 'issue[custom_field_values][1][]', :multiple => 'multiple'}, | 
					
						
							|  |  |  |       :children => {:count => 3}, | 
					
						
							|  |  |  |       :child => {:tag => 'option', :attributes => {:value => 'MySQL'}, :content => 'MySQL'} | 
					
						
							|  |  |  |     assert_tag 'input', | 
					
						
							|  |  |  |       :attributes => {:name => 'issue[custom_field_values][1][]', :value => ''} | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_get_new_with_multi_user_custom_field | 
					
						
							|  |  |  |     field = IssueCustomField.create!(:name => 'Multi user', :field_format => 'user', :multiple => true, | 
					
						
							|  |  |  |       :tracker_ids => [1], :is_for_all => true) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     get :new, :project_id => 1, :tracker_id => 1
 | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'new' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_tag 'select', | 
					
						
							|  |  |  |       :attributes => {:name => "issue[custom_field_values][#{field.id}][]", :multiple => 'multiple'}, | 
					
						
							|  |  |  |       :children => {:count => Project.find(1).users.count}, | 
					
						
							|  |  |  |       :child => {:tag => 'option', :attributes => {:value => '2'}, :content => 'John Smith'} | 
					
						
							|  |  |  |     assert_tag 'input', | 
					
						
							|  |  |  |       :attributes => {:name => "issue[custom_field_values][#{field.id}][]", :value => ''} | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-05 18:40:33 +00:00
										 |  |  |   def test_get_new_without_default_start_date_is_creation_date | 
					
						
							|  |  |  |     Setting.default_issue_start_date_to_creation_date = 0
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     get :new, :project_id => 1, :tracker_id => 1
 | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'new' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_tag :tag => 'input', :attributes => { :name => 'issue[start_date]', | 
					
						
							|  |  |  |                                                  :value => nil } | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_get_new_with_default_start_date_is_creation_date | 
					
						
							|  |  |  |     Setting.default_issue_start_date_to_creation_date = 1
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     get :new, :project_id => 1, :tracker_id => 1
 | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'new' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_tag :tag => 'input', :attributes => { :name => 'issue[start_date]', | 
					
						
							|  |  |  |                                                  :value => Date.today.to_s } | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-29 16:04:38 +00:00
										 |  |  |   def test_get_new_form_should_allow_attachment_upload | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     get :new, :project_id => 1, :tracker_id => 1
 | 
					
						
							| 
									
										
										
										
											2011-08-31 14:12:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-29 16:04:38 +00:00
										 |  |  |     assert_tag :tag => 'form', | 
					
						
							|  |  |  |       :attributes => {:id => 'issue-form', :method => 'post', :enctype => 'multipart/form-data'}, | 
					
						
							|  |  |  |       :descendant => { | 
					
						
							|  |  |  |         :tag => 'input', | 
					
						
							|  |  |  |         :attributes => {:type => 'file', :name => 'attachments[1][file]'} | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2008-01-20 11:30:57 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   def test_get_new_without_tracker_id | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     get :new, :project_id => 1
 | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'new' | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-20 11:30:57 +00:00
										 |  |  |     issue = assigns(:issue) | 
					
						
							|  |  |  |     assert_not_nil issue | 
					
						
							|  |  |  |     assert_equal Project.find(1).trackers.first, issue.tracker | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-01 10:15:38 +00:00
										 |  |  |   def test_get_new_with_no_default_status_should_display_an_error | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     IssueStatus.delete_all | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-01 10:15:38 +00:00
										 |  |  |     get :new, :project_id => 1
 | 
					
						
							|  |  |  |     assert_response 500
 | 
					
						
							| 
									
										
										
										
											2010-10-23 11:07:04 +00:00
										 |  |  |     assert_error_tag :content => /No default issue/ | 
					
						
							| 
									
										
										
										
											2009-03-01 10:15:38 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-01 10:15:38 +00:00
										 |  |  |   def test_get_new_with_no_tracker_should_display_an_error | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     Tracker.delete_all | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-01 10:15:38 +00:00
										 |  |  |     get :new, :project_id => 1
 | 
					
						
							|  |  |  |     assert_response 500
 | 
					
						
							| 
									
										
										
										
											2010-10-23 11:07:04 +00:00
										 |  |  |     assert_error_tag :content => /No tracker/ | 
					
						
							| 
									
										
										
										
											2009-03-01 10:15:38 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-20 11:30:57 +00:00
										 |  |  |   def test_update_new_form | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							| 
									
										
										
										
											2010-08-20 15:22:19 +00:00
										 |  |  |     xhr :post, :new, :project_id => 1, | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  |                      :issue => {:tracker_id => 2, | 
					
						
							| 
									
										
										
										
											2008-01-20 11:30:57 +00:00
										 |  |  |                                 :subject => 'This is the test_new issue', | 
					
						
							|  |  |  |                                 :description => 'This is the description', | 
					
						
							|  |  |  |                                 :priority_id => 5} | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							| 
									
										
										
										
											2009-11-29 19:46:40 +00:00
										 |  |  |     assert_template 'attributes' | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-29 19:46:40 +00:00
										 |  |  |     issue = assigns(:issue) | 
					
						
							|  |  |  |     assert_kind_of Issue, issue | 
					
						
							|  |  |  |     assert_equal 1, issue.project_id | 
					
						
							|  |  |  |     assert_equal 2, issue.tracker_id | 
					
						
							|  |  |  |     assert_equal 'This is the test_new issue', issue.subject | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-04-22 15:43:57 +00:00
										 |  |  |   def test_post_create | 
					
						
							| 
									
										
										
										
											2008-01-20 11:30:57 +00:00
										 |  |  |     @request.session[:user_id] = 2
 | 
					
						
							| 
									
										
										
										
											2009-09-13 17:14:35 +00:00
										 |  |  |     assert_difference 'Issue.count' do | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  |       post :create, :project_id => 1, | 
					
						
							| 
									
										
										
										
											2009-09-13 17:14:35 +00:00
										 |  |  |                  :issue => {:tracker_id => 3, | 
					
						
							| 
									
										
										
										
											2010-03-20 17:37:04 +00:00
										 |  |  |                             :status_id => 2, | 
					
						
							| 
									
										
										
										
											2009-09-13 17:14:35 +00:00
										 |  |  |                             :subject => 'This is the test_new issue', | 
					
						
							|  |  |  |                             :description => 'This is the description', | 
					
						
							|  |  |  |                             :priority_id => 5, | 
					
						
							| 
									
										
										
										
											2010-11-06 23:23:02 +00:00
										 |  |  |                             :start_date => '2010-11-07', | 
					
						
							| 
									
										
										
										
											2009-09-13 17:14:35 +00:00
										 |  |  |                             :estimated_hours => '', | 
					
						
							|  |  |  |                             :custom_field_values => {'2' => 'Value for field 2'}} | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |     assert_redirected_to :controller => 'issues', :action => 'show', :id => Issue.last.id | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-20 21:29:51 +00:00
										 |  |  |     issue = Issue.find_by_subject('This is the test_new issue') | 
					
						
							|  |  |  |     assert_not_nil issue | 
					
						
							|  |  |  |     assert_equal 2, issue.author_id | 
					
						
							| 
									
										
										
										
											2008-06-30 17:57:53 +00:00
										 |  |  |     assert_equal 3, issue.tracker_id | 
					
						
							| 
									
										
										
										
											2010-03-20 17:37:04 +00:00
										 |  |  |     assert_equal 2, issue.status_id | 
					
						
							| 
									
										
										
										
											2010-11-06 23:23:02 +00:00
										 |  |  |     assert_equal Date.parse('2010-11-07'), issue.start_date | 
					
						
							| 
									
										
										
										
											2008-04-30 09:09:28 +00:00
										 |  |  |     assert_nil issue.estimated_hours | 
					
						
							| 
									
										
										
										
											2008-08-11 18:24:39 +00:00
										 |  |  |     v = issue.custom_values.find(:first, :conditions => {:custom_field_id => 2}) | 
					
						
							| 
									
										
										
										
											2008-01-20 21:29:51 +00:00
										 |  |  |     assert_not_nil v | 
					
						
							|  |  |  |     assert_equal 'Value for field 2', v.value | 
					
						
							| 
									
										
										
										
											2008-01-20 11:30:57 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-08-31 14:12:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-23 18:18:13 +00:00
										 |  |  |   def test_post_new_with_group_assignment | 
					
						
							|  |  |  |     group = Group.find(11) | 
					
						
							|  |  |  |     project = Project.find(1) | 
					
						
							|  |  |  |     project.members << Member.new(:principal => group, :roles => [Role.first]) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     with_settings :issue_group_assignment => '1' do | 
					
						
							|  |  |  |       @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |       assert_difference 'Issue.count' do | 
					
						
							| 
									
										
										
										
											2011-08-31 14:12:58 +00:00
										 |  |  |         post :create, :project_id => project.id, | 
					
						
							| 
									
										
										
										
											2011-07-23 18:18:13 +00:00
										 |  |  |                       :issue => {:tracker_id => 3, | 
					
						
							|  |  |  |                                  :status_id => 1, | 
					
						
							|  |  |  |                                  :subject => 'This is the test_new_with_group_assignment issue', | 
					
						
							|  |  |  |                                  :assigned_to_id => group.id} | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |     assert_redirected_to :controller => 'issues', :action => 'show', :id => Issue.last.id | 
					
						
							| 
									
										
										
										
											2011-08-31 14:12:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-23 18:18:13 +00:00
										 |  |  |     issue = Issue.find_by_subject('This is the test_new_with_group_assignment issue') | 
					
						
							|  |  |  |     assert_not_nil issue | 
					
						
							|  |  |  |     assert_equal group, issue.assigned_to | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-05 18:40:33 +00:00
										 |  |  |   def test_post_create_without_start_date_and_default_start_date_is_not_creation_date | 
					
						
							|  |  |  |     Setting.default_issue_start_date_to_creation_date = 0
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-06 23:23:02 +00:00
										 |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     assert_difference 'Issue.count' do | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  |       post :create, :project_id => 1, | 
					
						
							| 
									
										
										
										
											2010-11-06 23:23:02 +00:00
										 |  |  |                  :issue => {:tracker_id => 3, | 
					
						
							|  |  |  |                             :status_id => 2, | 
					
						
							|  |  |  |                             :subject => 'This is the test_new issue', | 
					
						
							|  |  |  |                             :description => 'This is the description', | 
					
						
							|  |  |  |                             :priority_id => 5, | 
					
						
							|  |  |  |                             :estimated_hours => '', | 
					
						
							|  |  |  |                             :custom_field_values => {'2' => 'Value for field 2'}} | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |     assert_redirected_to :controller => 'issues', :action => 'show', :id => Issue.last.id | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-06 23:23:02 +00:00
										 |  |  |     issue = Issue.find_by_subject('This is the test_new issue') | 
					
						
							|  |  |  |     assert_not_nil issue | 
					
						
							|  |  |  |     assert_nil issue.start_date | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-05 18:40:33 +00:00
										 |  |  |   def test_post_create_without_start_date_and_default_start_date_is_creation_date | 
					
						
							|  |  |  |     Setting.default_issue_start_date_to_creation_date = 1
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     assert_difference 'Issue.count' do | 
					
						
							|  |  |  |       post :create, :project_id => 1, | 
					
						
							|  |  |  |                  :issue => {:tracker_id => 3, | 
					
						
							|  |  |  |                             :status_id => 2, | 
					
						
							|  |  |  |                             :subject => 'This is the test_new issue', | 
					
						
							|  |  |  |                             :description => 'This is the description', | 
					
						
							|  |  |  |                             :priority_id => 5, | 
					
						
							|  |  |  |                             :estimated_hours => '', | 
					
						
							|  |  |  |                             :custom_field_values => {'2' => 'Value for field 2'}} | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |     assert_redirected_to :controller => 'issues', :action => 'show', :id => Issue.last.id | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     issue = Issue.find_by_subject('This is the test_new issue') | 
					
						
							|  |  |  |     assert_not_nil issue | 
					
						
							|  |  |  |     assert_equal Date.today, issue.start_date | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-04-22 15:43:57 +00:00
										 |  |  |   def test_post_create_and_continue | 
					
						
							| 
									
										
										
										
											2009-01-16 17:20:41 +00:00
										 |  |  |     @request.session[:user_id] = 2
 | 
					
						
							| 
									
										
										
										
											2011-07-09 19:23:50 +00:00
										 |  |  |     assert_difference 'Issue.count' do | 
					
						
							|  |  |  |       post :create, :project_id => 1, | 
					
						
							|  |  |  |         :issue => {:tracker_id => 3, :subject => 'This is first issue', :priority_id => 5}, | 
					
						
							|  |  |  |         :continue => '' | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2011-08-31 14:12:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-09 19:23:50 +00:00
										 |  |  |     issue = Issue.first(:order => 'id DESC') | 
					
						
							|  |  |  |     assert_redirected_to :controller => 'issues', :action => 'new', :project_id => 'ecookbook', :issue => {:tracker_id => 3} | 
					
						
							|  |  |  |     assert_not_nil flash[:notice], "flash was not set" | 
					
						
							|  |  |  |     assert flash[:notice].include?("<a href='/issues/#{issue.id}'>##{issue.id}</a>"), "issue link not found in flash: #{flash[:notice]}" | 
					
						
							| 
									
										
										
										
											2009-01-16 17:20:41 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-04-22 15:43:57 +00:00
										 |  |  |   def test_post_create_without_custom_fields_param | 
					
						
							| 
									
										
										
										
											2008-04-01 17:48:11 +00:00
										 |  |  |     @request.session[:user_id] = 2
 | 
					
						
							| 
									
										
										
										
											2009-09-13 17:14:35 +00:00
										 |  |  |     assert_difference 'Issue.count' do | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  |       post :create, :project_id => 1, | 
					
						
							| 
									
										
										
										
											2009-09-13 17:14:35 +00:00
										 |  |  |                  :issue => {:tracker_id => 1, | 
					
						
							|  |  |  |                             :subject => 'This is the test_new issue', | 
					
						
							|  |  |  |                             :description => 'This is the description', | 
					
						
							|  |  |  |                             :priority_id => 5} | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |     assert_redirected_to :controller => 'issues', :action => 'show', :id => Issue.last.id | 
					
						
							| 
									
										
										
										
											2008-04-01 17:48:11 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2009-01-26 01:47:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-29 20:51:48 +00:00
										 |  |  |   def test_post_create_with_multi_custom_field | 
					
						
							|  |  |  |     field = IssueCustomField.find_by_name('Database') | 
					
						
							|  |  |  |     field.update_attribute(:multiple, true) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     assert_difference 'Issue.count' do | 
					
						
							|  |  |  |       post :create, :project_id => 1, | 
					
						
							|  |  |  |                  :issue => {:tracker_id => 1, | 
					
						
							|  |  |  |                             :subject => 'This is the test_new issue', | 
					
						
							|  |  |  |                             :description => 'This is the description', | 
					
						
							|  |  |  |                             :priority_id => 5, | 
					
						
							|  |  |  |                             :custom_field_values => {'1' => ['', 'MySQL', 'Oracle']}} | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |     assert_response 302
 | 
					
						
							|  |  |  |     issue = Issue.first(:order => 'id DESC') | 
					
						
							|  |  |  |     assert_equal ['MySQL', 'Oracle'], issue.custom_field_value(1).sort | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_post_create_with_empty_multi_custom_field | 
					
						
							|  |  |  |     field = IssueCustomField.find_by_name('Database') | 
					
						
							|  |  |  |     field.update_attribute(:multiple, true) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     assert_difference 'Issue.count' do | 
					
						
							|  |  |  |       post :create, :project_id => 1, | 
					
						
							|  |  |  |                  :issue => {:tracker_id => 1, | 
					
						
							|  |  |  |                             :subject => 'This is the test_new issue', | 
					
						
							|  |  |  |                             :description => 'This is the description', | 
					
						
							|  |  |  |                             :priority_id => 5, | 
					
						
							|  |  |  |                             :custom_field_values => {'1' => ['']}} | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |     assert_response 302
 | 
					
						
							|  |  |  |     issue = Issue.first(:order => 'id DESC') | 
					
						
							|  |  |  |     assert_equal [''], issue.custom_field_value(1).sort | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_post_create_with_multi_user_custom_field | 
					
						
							|  |  |  |     field = IssueCustomField.create!(:name => 'Multi user', :field_format => 'user', :multiple => true, | 
					
						
							|  |  |  |       :tracker_ids => [1], :is_for_all => true) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     assert_difference 'Issue.count' do | 
					
						
							|  |  |  |       post :create, :project_id => 1, | 
					
						
							|  |  |  |                  :issue => {:tracker_id => 1, | 
					
						
							|  |  |  |                             :subject => 'This is the test_new issue', | 
					
						
							|  |  |  |                             :description => 'This is the description', | 
					
						
							|  |  |  |                             :priority_id => 5, | 
					
						
							|  |  |  |                             :custom_field_values => {field.id.to_s => ['', '2', '3']}} | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |     assert_response 302
 | 
					
						
							|  |  |  |     issue = Issue.first(:order => 'id DESC') | 
					
						
							|  |  |  |     assert_equal ['2', '3'], issue.custom_field_value(field).sort | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-04-22 15:43:57 +00:00
										 |  |  |   def test_post_create_with_required_custom_field_and_without_custom_fields_param | 
					
						
							| 
									
										
										
										
											2008-06-27 20:13:56 +00:00
										 |  |  |     field = IssueCustomField.find_by_name('Database') | 
					
						
							|  |  |  |     field.update_attribute(:is_required, true) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							| 
									
										
										
										
											2012-01-28 11:16:58 +00:00
										 |  |  |     assert_no_difference 'Issue.count' do | 
					
						
							|  |  |  |       post :create, :project_id => 1, | 
					
						
							|  |  |  |                  :issue => {:tracker_id => 1, | 
					
						
							|  |  |  |                             :subject => 'This is the test_new issue', | 
					
						
							|  |  |  |                             :description => 'This is the description', | 
					
						
							|  |  |  |                             :priority_id => 5} | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2008-06-27 20:13:56 +00:00
										 |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'new' | 
					
						
							|  |  |  |     issue = assigns(:issue) | 
					
						
							|  |  |  |     assert_not_nil issue | 
					
						
							| 
									
										
										
										
											2012-01-28 11:16:58 +00:00
										 |  |  |     assert_error_tag :content => /Database can't be blank/ | 
					
						
							| 
									
										
										
										
											2008-06-27 20:13:56 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-04-22 15:43:57 +00:00
										 |  |  |   def test_post_create_with_watchers | 
					
						
							| 
									
										
										
										
											2008-12-22 19:21:02 +00:00
										 |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     ActionMailer::Base.deliveries.clear | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-22 19:21:02 +00:00
										 |  |  |     assert_difference 'Watcher.count', 2 do | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  |       post :create, :project_id => 1, | 
					
						
							| 
									
										
										
										
											2008-12-22 19:21:02 +00:00
										 |  |  |                  :issue => {:tracker_id => 1, | 
					
						
							|  |  |  |                             :subject => 'This is a new issue with watchers', | 
					
						
							|  |  |  |                             :description => 'This is the description', | 
					
						
							|  |  |  |                             :priority_id => 5, | 
					
						
							|  |  |  |                             :watcher_user_ids => ['2', '3']} | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |     issue = Issue.find_by_subject('This is a new issue with watchers') | 
					
						
							| 
									
										
										
										
											2009-01-04 18:14:51 +00:00
										 |  |  |     assert_not_nil issue | 
					
						
							|  |  |  |     assert_redirected_to :controller => 'issues', :action => 'show', :id => issue | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-22 19:21:02 +00:00
										 |  |  |     # Watchers added | 
					
						
							|  |  |  |     assert_equal [2, 3], issue.watcher_user_ids.sort | 
					
						
							|  |  |  |     assert issue.watched_by?(User.find(3)) | 
					
						
							|  |  |  |     # Watchers notified | 
					
						
							|  |  |  |     mail = ActionMailer::Base.deliveries.last | 
					
						
							|  |  |  |     assert_kind_of TMail::Mail, mail | 
					
						
							|  |  |  |     assert [mail.bcc, mail.cc].flatten.include?(User.find(3).mail) | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-04-22 15:43:57 +00:00
										 |  |  |   def test_post_create_subissue | 
					
						
							| 
									
										
										
										
											2010-03-13 14:56:49 +00:00
										 |  |  |     @request.session[:user_id] = 2
 | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-13 14:56:49 +00:00
										 |  |  |     assert_difference 'Issue.count' do | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  |       post :create, :project_id => 1, | 
					
						
							| 
									
										
										
										
											2010-03-13 14:56:49 +00:00
										 |  |  |                  :issue => {:tracker_id => 1, | 
					
						
							|  |  |  |                             :subject => 'This is a child issue', | 
					
						
							|  |  |  |                             :parent_issue_id => 2} | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |     issue = Issue.find_by_subject('This is a child issue') | 
					
						
							|  |  |  |     assert_not_nil issue | 
					
						
							|  |  |  |     assert_equal Issue.find(2), issue.parent | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2010-11-20 10:20:53 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   def test_post_create_subissue_with_non_numeric_parent_id | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-20 10:20:53 +00:00
										 |  |  |     assert_difference 'Issue.count' do | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  |       post :create, :project_id => 1, | 
					
						
							| 
									
										
										
										
											2010-11-20 10:20:53 +00:00
										 |  |  |                  :issue => {:tracker_id => 1, | 
					
						
							|  |  |  |                             :subject => 'This is a child issue', | 
					
						
							|  |  |  |                             :parent_issue_id => 'ABC'} | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |     issue = Issue.find_by_subject('This is a child issue') | 
					
						
							|  |  |  |     assert_not_nil issue | 
					
						
							|  |  |  |     assert_nil issue.parent | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-08-31 14:12:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-01 17:16:38 +00:00
										 |  |  |   def test_post_create_private | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_difference 'Issue.count' do | 
					
						
							|  |  |  |       post :create, :project_id => 1, | 
					
						
							|  |  |  |                  :issue => {:tracker_id => 1, | 
					
						
							|  |  |  |                             :subject => 'This is a private issue', | 
					
						
							|  |  |  |                             :is_private => '1'} | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |     issue = Issue.first(:order => 'id DESC') | 
					
						
							|  |  |  |     assert issue.is_private? | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-08-31 14:12:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-01 17:16:38 +00:00
										 |  |  |   def test_post_create_private_with_set_own_issues_private_permission | 
					
						
							|  |  |  |     role = Role.find(1) | 
					
						
							|  |  |  |     role.remove_permission! :set_issues_private | 
					
						
							|  |  |  |     role.add_permission! :set_own_issues_private | 
					
						
							| 
									
										
										
										
											2011-08-31 14:12:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-01 17:16:38 +00:00
										 |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_difference 'Issue.count' do | 
					
						
							|  |  |  |       post :create, :project_id => 1, | 
					
						
							|  |  |  |                  :issue => {:tracker_id => 1, | 
					
						
							|  |  |  |                             :subject => 'This is a private issue', | 
					
						
							|  |  |  |                             :is_private => '1'} | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |     issue = Issue.first(:order => 'id DESC') | 
					
						
							|  |  |  |     assert issue.is_private? | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-04-22 15:43:57 +00:00
										 |  |  |   def test_post_create_should_send_a_notification | 
					
						
							| 
									
										
										
										
											2009-03-28 00:38:57 +00:00
										 |  |  |     ActionMailer::Base.deliveries.clear | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							| 
									
										
										
										
											2009-09-13 17:14:35 +00:00
										 |  |  |     assert_difference 'Issue.count' do | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  |       post :create, :project_id => 1, | 
					
						
							| 
									
										
										
										
											2009-09-13 17:14:35 +00:00
										 |  |  |                  :issue => {:tracker_id => 3, | 
					
						
							|  |  |  |                             :subject => 'This is the test_new issue', | 
					
						
							|  |  |  |                             :description => 'This is the description', | 
					
						
							|  |  |  |                             :priority_id => 5, | 
					
						
							|  |  |  |                             :estimated_hours => '', | 
					
						
							|  |  |  |                             :custom_field_values => {'2' => 'Value for field 2'}} | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |     assert_redirected_to :controller => 'issues', :action => 'show', :id => Issue.last.id | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-28 00:38:57 +00:00
										 |  |  |     assert_equal 1, ActionMailer::Base.deliveries.size | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-04-22 15:43:57 +00:00
										 |  |  |   def test_post_create_should_preserve_fields_values_on_validation_failure | 
					
						
							| 
									
										
										
										
											2008-06-27 20:13:56 +00:00
										 |  |  |     @request.session[:user_id] = 2
 | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  |     post :create, :project_id => 1, | 
					
						
							| 
									
										
										
										
											2008-06-27 20:13:56 +00:00
										 |  |  |                :issue => {:tracker_id => 1, | 
					
						
							| 
									
										
										
										
											2009-01-07 20:21:27 +00:00
										 |  |  |                           # empty subject | 
					
						
							|  |  |  |                           :subject => '', | 
					
						
							|  |  |  |                           :description => 'This is a description', | 
					
						
							| 
									
										
										
										
											2008-06-27 20:13:56 +00:00
										 |  |  |                           :priority_id => 6, | 
					
						
							|  |  |  |                           :custom_field_values => {'1' => 'Oracle', '2' => 'Value for field 2'}} | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'new' | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-07 20:21:27 +00:00
										 |  |  |     assert_tag :textarea, :attributes => { :name => 'issue[description]' }, | 
					
						
							|  |  |  |                           :content => 'This is a description' | 
					
						
							| 
									
										
										
										
											2008-06-27 20:13:56 +00:00
										 |  |  |     assert_tag :select, :attributes => { :name => 'issue[priority_id]' }, | 
					
						
							|  |  |  |                         :child => { :tag => 'option', :attributes => { :selected => 'selected', | 
					
						
							|  |  |  |                                                                        :value => '6' }, | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  |                                                       :content => 'High' } | 
					
						
							| 
									
										
										
										
											2008-06-27 20:13:56 +00:00
										 |  |  |     # Custom fields | 
					
						
							|  |  |  |     assert_tag :select, :attributes => { :name => 'issue[custom_field_values][1]' }, | 
					
						
							|  |  |  |                         :child => { :tag => 'option', :attributes => { :selected => 'selected', | 
					
						
							|  |  |  |                                                                        :value => 'Oracle' }, | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  |                                                       :content => 'Oracle' } | 
					
						
							| 
									
										
										
										
											2008-06-27 20:13:56 +00:00
										 |  |  |     assert_tag :input, :attributes => { :name => 'issue[custom_field_values][2]', | 
					
						
							|  |  |  |                                         :value => 'Value for field 2'} | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-04-22 15:43:57 +00:00
										 |  |  |   def test_post_create_should_ignore_non_safe_attributes | 
					
						
							| 
									
										
										
										
											2010-01-12 20:17:20 +00:00
										 |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     assert_nothing_raised do | 
					
						
							| 
									
										
										
										
											2010-04-22 15:43:57 +00:00
										 |  |  |       post :create, :project_id => 1, :issue => { :tracker => "A param can not be a Tracker" } | 
					
						
							| 
									
										
										
										
											2010-01-12 20:17:20 +00:00
										 |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-29 15:51:40 +00:00
										 |  |  |   def test_post_create_with_attachment | 
					
						
							|  |  |  |     set_tmp_attachments_directory | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							| 
									
										
										
										
											2011-08-31 14:12:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-29 15:51:40 +00:00
										 |  |  |     assert_difference 'Issue.count' do | 
					
						
							|  |  |  |       assert_difference 'Attachment.count' do | 
					
						
							| 
									
										
										
										
											2011-08-31 14:12:58 +00:00
										 |  |  |         post :create, :project_id => 1, | 
					
						
							| 
									
										
										
										
											2011-07-29 15:51:40 +00:00
										 |  |  |           :issue => { :tracker_id => '1', :subject => 'With attachment' }, | 
					
						
							|  |  |  |           :attachments => {'1' => {'file' => uploaded_test_file('testfile.txt', 'text/plain'), 'description' => 'test file'}} | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2011-08-31 14:12:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-29 15:51:40 +00:00
										 |  |  |     issue = Issue.first(:order => 'id DESC') | 
					
						
							|  |  |  |     attachment = Attachment.first(:order => 'id DESC') | 
					
						
							| 
									
										
										
										
											2011-08-31 14:12:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-29 15:51:40 +00:00
										 |  |  |     assert_equal issue, attachment.container | 
					
						
							|  |  |  |     assert_equal 2, attachment.author_id | 
					
						
							|  |  |  |     assert_equal 'testfile.txt', attachment.filename | 
					
						
							|  |  |  |     assert_equal 'text/plain', attachment.content_type | 
					
						
							|  |  |  |     assert_equal 'test file', attachment.description | 
					
						
							|  |  |  |     assert_equal 59, attachment.filesize | 
					
						
							|  |  |  |     assert File.exists?(attachment.diskfile) | 
					
						
							|  |  |  |     assert_equal 59, File.size(attachment.diskfile) | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-20 17:37:04 +00:00
										 |  |  |   context "without workflow privilege" do | 
					
						
							|  |  |  |     setup do | 
					
						
							|  |  |  |       Workflow.delete_all(["role_id = ?", Role.anonymous.id]) | 
					
						
							| 
									
										
										
										
											2010-11-11 16:37:16 +00:00
										 |  |  |       Role.anonymous.add_permission! :add_issues, :add_issue_notes | 
					
						
							| 
									
										
										
										
											2010-03-20 17:37:04 +00:00
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-20 17:37:04 +00:00
										 |  |  |     context "#new" do | 
					
						
							|  |  |  |       should "propose default status only" do | 
					
						
							|  |  |  |         get :new, :project_id => 1
 | 
					
						
							|  |  |  |         assert_response :success | 
					
						
							|  |  |  |         assert_template 'new' | 
					
						
							|  |  |  |         assert_tag :tag => 'select', | 
					
						
							|  |  |  |           :attributes => {:name => 'issue[status_id]'}, | 
					
						
							|  |  |  |           :children => {:count => 1}, | 
					
						
							|  |  |  |           :child => {:tag => 'option', :attributes => {:value => IssueStatus.default.id.to_s}} | 
					
						
							|  |  |  |       end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-20 17:37:04 +00:00
										 |  |  |       should "accept default status" do | 
					
						
							|  |  |  |         assert_difference 'Issue.count' do | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  |           post :create, :project_id => 1, | 
					
						
							| 
									
										
										
										
											2010-03-20 17:37:04 +00:00
										 |  |  |                      :issue => {:tracker_id => 1, | 
					
						
							|  |  |  |                                 :subject => 'This is an issue', | 
					
						
							|  |  |  |                                 :status_id => 1} | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |         issue = Issue.last(:order => 'id') | 
					
						
							|  |  |  |         assert_equal IssueStatus.default, issue.status | 
					
						
							|  |  |  |       end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-20 17:37:04 +00:00
										 |  |  |       should "ignore unauthorized status" do | 
					
						
							|  |  |  |         assert_difference 'Issue.count' do | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  |           post :create, :project_id => 1, | 
					
						
							| 
									
										
										
										
											2010-03-20 17:37:04 +00:00
										 |  |  |                      :issue => {:tracker_id => 1, | 
					
						
							|  |  |  |                                 :subject => 'This is an issue', | 
					
						
							|  |  |  |                                 :status_id => 3} | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |         issue = Issue.last(:order => 'id') | 
					
						
							|  |  |  |         assert_equal IssueStatus.default, issue.status | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-11 16:37:16 +00:00
										 |  |  |     context "#update" do | 
					
						
							|  |  |  |       should "ignore status change" do | 
					
						
							|  |  |  |         assert_difference 'Journal.count' do | 
					
						
							|  |  |  |           put :update, :id => 1, :notes => 'just trying', :issue => {:status_id => 3} | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |         assert_equal 1, Issue.find(1).status_id | 
					
						
							|  |  |  |       end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-11 16:37:16 +00:00
										 |  |  |       should "ignore attributes changes" do | 
					
						
							|  |  |  |         assert_difference 'Journal.count' do | 
					
						
							|  |  |  |           put :update, :id => 1, :notes => 'just trying', :issue => {:subject => 'changed', :assigned_to_id => 2} | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |         issue = Issue.find(1) | 
					
						
							|  |  |  |         assert_equal "Can't print recipes", issue.subject | 
					
						
							|  |  |  |         assert_nil issue.assigned_to | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-11 16:37:16 +00:00
										 |  |  |   context "with workflow privilege" do | 
					
						
							|  |  |  |     setup do | 
					
						
							|  |  |  |       Workflow.delete_all(["role_id = ?", Role.anonymous.id]) | 
					
						
							|  |  |  |       Workflow.create!(:role => Role.anonymous, :tracker_id => 1, :old_status_id => 1, :new_status_id => 3) | 
					
						
							|  |  |  |       Workflow.create!(:role => Role.anonymous, :tracker_id => 1, :old_status_id => 1, :new_status_id => 4) | 
					
						
							|  |  |  |       Role.anonymous.add_permission! :add_issues, :add_issue_notes | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-11 16:37:16 +00:00
										 |  |  |     context "#update" do | 
					
						
							|  |  |  |       should "accept authorized status" do | 
					
						
							|  |  |  |         assert_difference 'Journal.count' do | 
					
						
							|  |  |  |           put :update, :id => 1, :notes => 'just trying', :issue => {:status_id => 3} | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |         assert_equal 3, Issue.find(1).status_id | 
					
						
							|  |  |  |       end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-11 16:37:16 +00:00
										 |  |  |       should "ignore unauthorized status" do | 
					
						
							|  |  |  |         assert_difference 'Journal.count' do | 
					
						
							|  |  |  |           put :update, :id => 1, :notes => 'just trying', :issue => {:status_id => 2} | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |         assert_equal 1, Issue.find(1).status_id | 
					
						
							|  |  |  |       end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-11 16:37:16 +00:00
										 |  |  |       should "accept authorized attributes changes" do | 
					
						
							|  |  |  |         assert_difference 'Journal.count' do | 
					
						
							|  |  |  |           put :update, :id => 1, :notes => 'just trying', :issue => {:assigned_to_id => 2} | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |         issue = Issue.find(1) | 
					
						
							|  |  |  |         assert_equal 2, issue.assigned_to_id | 
					
						
							|  |  |  |       end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-11 16:37:16 +00:00
										 |  |  |       should "ignore unauthorized attributes changes" do | 
					
						
							|  |  |  |         assert_difference 'Journal.count' do | 
					
						
							|  |  |  |           put :update, :id => 1, :notes => 'just trying', :issue => {:subject => 'changed'} | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |         issue = Issue.find(1) | 
					
						
							|  |  |  |         assert_equal "Can't print recipes", issue.subject | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-11 16:37:16 +00:00
										 |  |  |     context "and :edit_issues permission" do | 
					
						
							|  |  |  |       setup do | 
					
						
							|  |  |  |         Role.anonymous.add_permission! :add_issues, :edit_issues | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       should "accept authorized status" do | 
					
						
							|  |  |  |         assert_difference 'Journal.count' do | 
					
						
							|  |  |  |           put :update, :id => 1, :notes => 'just trying', :issue => {:status_id => 3} | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |         assert_equal 3, Issue.find(1).status_id | 
					
						
							|  |  |  |       end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-11 16:37:16 +00:00
										 |  |  |       should "ignore unauthorized status" do | 
					
						
							|  |  |  |         assert_difference 'Journal.count' do | 
					
						
							|  |  |  |           put :update, :id => 1, :notes => 'just trying', :issue => {:status_id => 2} | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |         assert_equal 1, Issue.find(1).status_id | 
					
						
							|  |  |  |       end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-11 16:37:16 +00:00
										 |  |  |       should "accept authorized attributes changes" do | 
					
						
							|  |  |  |         assert_difference 'Journal.count' do | 
					
						
							|  |  |  |           put :update, :id => 1, :notes => 'just trying', :issue => {:subject => 'changed', :assigned_to_id => 2} | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |         issue = Issue.find(1) | 
					
						
							|  |  |  |         assert_equal "changed", issue.subject | 
					
						
							|  |  |  |         assert_equal 2, issue.assigned_to_id | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2010-03-20 17:37:04 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-08 11:16:54 +00:00
										 |  |  |   def test_new_as_copy | 
					
						
							| 
									
										
										
										
											2008-01-20 11:30:57 +00:00
										 |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     get :new, :project_id => 1, :copy_from => 1
 | 
					
						
							| 
									
										
										
										
											2012-01-08 11:16:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							| 
									
										
										
										
											2008-01-20 11:30:57 +00:00
										 |  |  |     assert_template 'new' | 
					
						
							| 
									
										
										
										
											2012-01-08 11:16:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-20 11:30:57 +00:00
										 |  |  |     assert_not_nil assigns(:issue) | 
					
						
							|  |  |  |     orig = Issue.find(1) | 
					
						
							| 
									
										
										
										
											2012-01-08 11:16:54 +00:00
										 |  |  |     assert_equal 1, assigns(:issue).project_id | 
					
						
							| 
									
										
										
										
											2008-01-20 11:30:57 +00:00
										 |  |  |     assert_equal orig.subject, assigns(:issue).subject | 
					
						
							| 
									
										
										
										
											2012-01-08 11:16:54 +00:00
										 |  |  |     assert assigns(:issue).copy? | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_tag 'form', :attributes => {:id => 'issue-form', :action => '/projects/ecookbook/issues'} | 
					
						
							|  |  |  |     assert_tag 'select', :attributes => {:name => 'issue[project_id]'} | 
					
						
							|  |  |  |     assert_tag 'select', :attributes => {:name => 'issue[project_id]'}, | 
					
						
							|  |  |  |       :child => {:tag => 'option', :attributes => {:value => '1', :selected => 'selected'}, :content => 'eCookbook'} | 
					
						
							|  |  |  |     assert_tag 'select', :attributes => {:name => 'issue[project_id]'}, | 
					
						
							|  |  |  |       :child => {:tag => 'option', :attributes => {:value => '2', :selected => nil}, :content => 'OnlineStore'} | 
					
						
							|  |  |  |     assert_tag 'input', :attributes => {:name => 'copy_from', :value => '1'} | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-20 18:22:43 +00:00
										 |  |  |   def test_new_as_copy_with_attachments_should_show_copy_attachments_checkbox | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     issue = Issue.find(3) | 
					
						
							|  |  |  |     assert issue.attachments.count > 0
 | 
					
						
							|  |  |  |     get :new, :project_id => 1, :copy_from => 3
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_tag 'input', :attributes => {:name => 'copy_attachments', :type => 'checkbox', :checked => 'checked', :value => '1'} | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_new_as_copy_without_attachments_should_not_show_copy_attachments_checkbox | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     issue = Issue.find(3) | 
					
						
							|  |  |  |     issue.attachments.delete_all | 
					
						
							|  |  |  |     get :new, :project_id => 1, :copy_from => 3
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_no_tag 'input', :attributes => {:name => 'copy_attachments', :type => 'checkbox', :checked => 'checked', :value => '1'} | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-17 20:20:59 +00:00
										 |  |  |   def test_new_as_copy_with_invalid_issue_should_respond_with_404 | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     get :new, :project_id => 1, :copy_from => 99999
 | 
					
						
							|  |  |  |     assert_response 404
 | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-08 11:16:54 +00:00
										 |  |  |   def test_create_as_copy_on_different_project | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     assert_difference 'Issue.count' do | 
					
						
							|  |  |  |       post :create, :project_id => 1, :copy_from => 1, | 
					
						
							|  |  |  |         :issue => {:project_id => '2', :tracker_id => '3', :status_id => '1', :subject => 'Copy'} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       assert_not_nil assigns(:issue) | 
					
						
							|  |  |  |       assert assigns(:issue).copy? | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |     issue = Issue.first(:order => 'id DESC') | 
					
						
							|  |  |  |     assert_redirected_to "/issues/#{issue.id}" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_equal 2, issue.project_id | 
					
						
							|  |  |  |     assert_equal 3, issue.tracker_id | 
					
						
							|  |  |  |     assert_equal 'Copy', issue.subject | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-20 17:56:28 +00:00
										 |  |  |   def test_create_as_copy_should_copy_attachments | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     issue = Issue.find(3) | 
					
						
							|  |  |  |     count = issue.attachments.count | 
					
						
							|  |  |  |     assert count > 0
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_difference 'Issue.count' do | 
					
						
							|  |  |  |       assert_difference 'Attachment.count', count do | 
					
						
							|  |  |  |         assert_no_difference 'Journal.count' do | 
					
						
							|  |  |  |           post :create, :project_id => 1, :copy_from => 3, | 
					
						
							| 
									
										
										
										
											2012-01-20 18:22:43 +00:00
										 |  |  |             :issue => {:project_id => '1', :tracker_id => '3', :status_id => '1', :subject => 'Copy with attachments'}, | 
					
						
							|  |  |  |             :copy_attachments => '1' | 
					
						
							| 
									
										
										
										
											2012-01-20 17:56:28 +00:00
										 |  |  |         end | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |     copy = Issue.first(:order => 'id DESC') | 
					
						
							|  |  |  |     assert_equal count, copy.attachments.count | 
					
						
							|  |  |  |     assert_equal issue.attachments.map(&:filename).sort, copy.attachments.map(&:filename).sort | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-20 18:22:43 +00:00
										 |  |  |   def test_create_as_copy_without_copy_attachments_option_should_not_copy_attachments | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     issue = Issue.find(3) | 
					
						
							|  |  |  |     count = issue.attachments.count | 
					
						
							|  |  |  |     assert count > 0
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_difference 'Issue.count' do | 
					
						
							|  |  |  |       assert_no_difference 'Attachment.count' do | 
					
						
							|  |  |  |         assert_no_difference 'Journal.count' do | 
					
						
							|  |  |  |           post :create, :project_id => 1, :copy_from => 3, | 
					
						
							|  |  |  |             :issue => {:project_id => '1', :tracker_id => '3', :status_id => '1', :subject => 'Copy with attachments'} | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |     copy = Issue.first(:order => 'id DESC') | 
					
						
							|  |  |  |     assert_equal 0, copy.attachments.count | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-20 17:56:28 +00:00
										 |  |  |   def test_create_as_copy_with_attachments_should_add_new_files | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     issue = Issue.find(3) | 
					
						
							|  |  |  |     count = issue.attachments.count | 
					
						
							|  |  |  |     assert count > 0
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_difference 'Issue.count' do | 
					
						
							|  |  |  |       assert_difference 'Attachment.count', count + 1 do | 
					
						
							|  |  |  |         assert_no_difference 'Journal.count' do | 
					
						
							|  |  |  |           post :create, :project_id => 1, :copy_from => 3, | 
					
						
							|  |  |  |             :issue => {:project_id => '1', :tracker_id => '3', :status_id => '1', :subject => 'Copy with attachments'}, | 
					
						
							| 
									
										
										
										
											2012-01-20 18:22:43 +00:00
										 |  |  |             :copy_attachments => '1', | 
					
						
							| 
									
										
										
										
											2012-01-20 17:56:28 +00:00
										 |  |  |             :attachments => {'1' => {'file' => uploaded_test_file('testfile.txt', 'text/plain'), 'description' => 'test file'}} | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |     copy = Issue.first(:order => 'id DESC') | 
					
						
							|  |  |  |     assert_equal count + 1, copy.attachments.count | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-08 11:16:54 +00:00
										 |  |  |   def test_create_as_copy_with_failure | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     post :create, :project_id => 1, :copy_from => 1, | 
					
						
							|  |  |  |       :issue => {:project_id => '2', :tracker_id => '3', :status_id => '1', :subject => ''} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'new' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_not_nil assigns(:issue) | 
					
						
							|  |  |  |     assert assigns(:issue).copy? | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_tag 'form', :attributes => {:id => 'issue-form', :action => '/projects/ecookbook/issues'} | 
					
						
							|  |  |  |     assert_tag 'select', :attributes => {:name => 'issue[project_id]'} | 
					
						
							|  |  |  |     assert_tag 'select', :attributes => {:name => 'issue[project_id]'}, | 
					
						
							|  |  |  |       :child => {:tag => 'option', :attributes => {:value => '1', :selected => nil}, :content => 'eCookbook'} | 
					
						
							|  |  |  |     assert_tag 'select', :attributes => {:name => 'issue[project_id]'}, | 
					
						
							|  |  |  |       :child => {:tag => 'option', :attributes => {:value => '2', :selected => 'selected'}, :content => 'OnlineStore'} | 
					
						
							|  |  |  |     assert_tag 'input', :attributes => {:name => 'copy_from', :value => '1'} | 
					
						
							| 
									
										
										
										
											2008-01-20 11:30:57 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-08 11:48:36 +00:00
										 |  |  |   def test_create_as_copy_on_project_without_permission_should_ignore_target_project | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     assert !User.find(2).member_of?(Project.find(4)) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_difference 'Issue.count' do | 
					
						
							|  |  |  |       post :create, :project_id => 1, :copy_from => 1, | 
					
						
							|  |  |  |         :issue => {:project_id => '4', :tracker_id => '3', :status_id => '1', :subject => 'Copy'} | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |     issue = Issue.first(:order => 'id DESC') | 
					
						
							|  |  |  |     assert_equal 1, issue.project_id | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-12-12 22:22:33 +00:00
										 |  |  |   def test_get_edit | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     get :edit, :id => 1
 | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'edit' | 
					
						
							|  |  |  |     assert_not_nil assigns(:issue) | 
					
						
							|  |  |  |     assert_equal Issue.find(1), assigns(:issue) | 
					
						
							| 
									
										
										
										
											2011-06-13 19:43:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # Be sure we don't display inactive IssuePriorities | 
					
						
							|  |  |  |     assert ! IssuePriority.find(15).active? | 
					
						
							|  |  |  |     assert_no_tag :option, :attributes => {:value => '15'}, | 
					
						
							|  |  |  |                            :parent => {:tag => 'select', :attributes => {:id => 'issue_priority_id'} } | 
					
						
							| 
									
										
										
										
											2007-12-12 22:22:33 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-25 21:58:09 +00:00
										 |  |  |   def test_get_edit_should_display_the_time_entry_form_with_log_time_permission | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     Role.find_by_name('Manager').update_attribute :permissions, [:view_issues, :edit_issues, :log_time] | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  |     get :edit, :id => 1
 | 
					
						
							|  |  |  |     assert_tag 'input', :attributes => {:name => 'time_entry[hours]'} | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_get_edit_should_not_display_the_time_entry_form_without_log_time_permission | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     Role.find_by_name('Manager').remove_permission! :log_time | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  |     get :edit, :id => 1
 | 
					
						
							|  |  |  |     assert_no_tag 'input', :attributes => {:name => 'time_entry[hours]'} | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-10 13:17:41 +00:00
										 |  |  |   def test_get_edit_with_params | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							| 
									
										
										
										
											2010-11-17 18:27:38 +00:00
										 |  |  |     get :edit, :id => 1, :issue => { :status_id => 5, :priority_id => 7 }, | 
					
						
							|  |  |  |         :time_entry => { :hours => '2.5', :comments => 'test_get_edit_with_params', :activity_id => TimeEntryActivity.first.id } | 
					
						
							| 
									
										
										
										
											2008-02-10 13:17:41 +00:00
										 |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'edit' | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-10 13:17:41 +00:00
										 |  |  |     issue = assigns(:issue) | 
					
						
							|  |  |  |     assert_not_nil issue | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-10 13:17:41 +00:00
										 |  |  |     assert_equal 5, issue.status_id | 
					
						
							|  |  |  |     assert_tag :select, :attributes => { :name => 'issue[status_id]' }, | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  |                         :child => { :tag => 'option', | 
					
						
							| 
									
										
										
										
											2008-02-10 13:17:41 +00:00
										 |  |  |                                     :content => 'Closed', | 
					
						
							|  |  |  |                                     :attributes => { :selected => 'selected' } } | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-10 13:17:41 +00:00
										 |  |  |     assert_equal 7, issue.priority_id | 
					
						
							|  |  |  |     assert_tag :select, :attributes => { :name => 'issue[priority_id]' }, | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  |                         :child => { :tag => 'option', | 
					
						
							| 
									
										
										
										
											2008-02-10 13:17:41 +00:00
										 |  |  |                                     :content => 'Urgent', | 
					
						
							|  |  |  |                                     :attributes => { :selected => 'selected' } } | 
					
						
							| 
									
										
										
										
											2010-11-17 18:27:38 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     assert_tag :input, :attributes => { :name => 'time_entry[hours]', :value => '2.5' } | 
					
						
							|  |  |  |     assert_tag :select, :attributes => { :name => 'time_entry[activity_id]' }, | 
					
						
							|  |  |  |                         :child => { :tag => 'option', | 
					
						
							|  |  |  |                                     :attributes => { :selected => 'selected', :value => TimeEntryActivity.first.id } } | 
					
						
							|  |  |  |     assert_tag :input, :attributes => { :name => 'time_entry[comments]', :value => 'test_get_edit_with_params' } | 
					
						
							| 
									
										
										
										
											2008-02-10 13:17:41 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2009-11-29 19:46:40 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-29 20:51:48 +00:00
										 |  |  |   def test_get_edit_with_multi_custom_field | 
					
						
							|  |  |  |     field = CustomField.find(1) | 
					
						
							|  |  |  |     field.update_attribute :multiple, true | 
					
						
							|  |  |  |     issue = Issue.find(1) | 
					
						
							|  |  |  |     issue.custom_field_values = {1 => ['MySQL', 'Oracle']} | 
					
						
							|  |  |  |     issue.save! | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     get :edit, :id => 1
 | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'edit' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_tag 'select', :attributes => {:name => 'issue[custom_field_values][1][]', :multiple => 'multiple'} | 
					
						
							|  |  |  |     assert_tag 'select', :attributes => {:name => 'issue[custom_field_values][1][]'}, | 
					
						
							|  |  |  |       :child => {:tag => 'option', :attributes => {:value => 'MySQL', :selected => 'selected'}} | 
					
						
							|  |  |  |     assert_tag 'select', :attributes => {:name => 'issue[custom_field_values][1][]'}, | 
					
						
							|  |  |  |       :child => {:tag => 'option', :attributes => {:value => 'PostgreSQL', :selected => nil}} | 
					
						
							|  |  |  |     assert_tag 'select', :attributes => {:name => 'issue[custom_field_values][1][]'}, | 
					
						
							|  |  |  |       :child => {:tag => 'option', :attributes => {:value => 'Oracle', :selected => 'selected'}} | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-29 19:46:40 +00:00
										 |  |  |   def test_update_edit_form | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							| 
									
										
										
										
											2012-01-07 12:34:52 +00:00
										 |  |  |     xhr :put, :new, :project_id => 1, | 
					
						
							| 
									
										
										
										
											2009-11-29 19:46:40 +00:00
										 |  |  |                              :id => 1, | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  |                              :issue => {:tracker_id => 2, | 
					
						
							| 
									
										
										
										
											2009-11-29 19:46:40 +00:00
										 |  |  |                                         :subject => 'This is the test_new issue', | 
					
						
							|  |  |  |                                         :description => 'This is the description', | 
					
						
							|  |  |  |                                         :priority_id => 5} | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'attributes' | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-29 19:46:40 +00:00
										 |  |  |     issue = assigns(:issue) | 
					
						
							|  |  |  |     assert_kind_of Issue, issue | 
					
						
							|  |  |  |     assert_equal 1, issue.id | 
					
						
							|  |  |  |     assert_equal 1, issue.project_id | 
					
						
							|  |  |  |     assert_equal 2, issue.tracker_id | 
					
						
							|  |  |  |     assert_equal 'This is the test_new issue', issue.subject | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-07 12:34:52 +00:00
										 |  |  |   def test_update_edit_form_with_project_change | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     xhr :put, :new, :project_id => 1, | 
					
						
							|  |  |  |                              :id => 1, | 
					
						
							|  |  |  |                              :project_change => '1', | 
					
						
							|  |  |  |                              :issue => {:project_id => 2, | 
					
						
							|  |  |  |                                         :tracker_id => 2, | 
					
						
							|  |  |  |                                         :subject => 'This is the test_new issue', | 
					
						
							|  |  |  |                                         :description => 'This is the description', | 
					
						
							|  |  |  |                                         :priority_id => 5} | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'form' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     issue = assigns(:issue) | 
					
						
							|  |  |  |     assert_kind_of Issue, issue | 
					
						
							|  |  |  |     assert_equal 1, issue.id | 
					
						
							|  |  |  |     assert_equal 2, issue.project_id | 
					
						
							|  |  |  |     assert_equal 2, issue.tracker_id | 
					
						
							|  |  |  |     assert_equal 'This is the test_new issue', issue.subject | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-01 18:29:18 +00:00
										 |  |  |   def test_update_using_invalid_http_verbs | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     subject = 'Updated by an invalid http verb' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     get :update, :id => 1, :issue => {:subject => subject} | 
					
						
							|  |  |  |     assert_not_equal subject, Issue.find(1).subject | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     post :update, :id => 1, :issue => {:subject => subject} | 
					
						
							|  |  |  |     assert_not_equal subject, Issue.find(1).subject | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     delete :update, :id => 1, :issue => {:subject => subject} | 
					
						
							|  |  |  |     assert_not_equal subject, Issue.find(1).subject | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-24 17:21:41 +00:00
										 |  |  |   def test_put_update_without_custom_fields_param | 
					
						
							| 
									
										
										
										
											2007-12-12 22:22:33 +00:00
										 |  |  |     @request.session[:user_id] = 2
 | 
					
						
							| 
									
										
										
										
											2007-12-19 22:09:31 +00:00
										 |  |  |     ActionMailer::Base.deliveries.clear | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-12-19 22:09:31 +00:00
										 |  |  |     issue = Issue.find(1) | 
					
						
							| 
									
										
										
										
											2008-06-27 20:13:56 +00:00
										 |  |  |     assert_equal '125', issue.custom_value_for(2).value | 
					
						
							| 
									
										
										
										
											2007-12-19 22:09:31 +00:00
										 |  |  |     old_subject = issue.subject | 
					
						
							|  |  |  |     new_subject = 'Subject modified by IssuesControllerTest#test_post_edit' | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-06-27 20:13:56 +00:00
										 |  |  |     assert_difference('Journal.count') do | 
					
						
							|  |  |  |       assert_difference('JournalDetail.count', 2) do | 
					
						
							| 
									
										
										
										
											2010-02-24 17:21:41 +00:00
										 |  |  |         put :update, :id => 1, :issue => {:subject => new_subject, | 
					
						
							| 
									
										
										
										
											2008-06-27 20:13:56 +00:00
										 |  |  |                                          :priority_id => '6', | 
					
						
							|  |  |  |                                          :category_id => '1' # no change | 
					
						
							|  |  |  |                                         } | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2009-01-26 01:47:51 +00:00
										 |  |  |     assert_redirected_to :action => 'show', :id => '1' | 
					
						
							| 
									
										
										
										
											2007-12-19 22:09:31 +00:00
										 |  |  |     issue.reload | 
					
						
							|  |  |  |     assert_equal new_subject, issue.subject | 
					
						
							| 
									
										
										
										
											2008-06-27 20:13:56 +00:00
										 |  |  |     # Make sure custom fields were not cleared | 
					
						
							|  |  |  |     assert_equal '125', issue.custom_value_for(2).value | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-12-19 22:09:31 +00:00
										 |  |  |     mail = ActionMailer::Base.deliveries.last | 
					
						
							|  |  |  |     assert_kind_of TMail::Mail, mail | 
					
						
							|  |  |  |     assert mail.subject.starts_with?("[#{issue.project.name} - #{issue.tracker.name} ##{issue.id}]") | 
					
						
							|  |  |  |     assert mail.body.include?("Subject changed from #{old_subject} to #{new_subject}") | 
					
						
							| 
									
										
										
										
											2007-12-12 22:22:33 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-07 12:34:52 +00:00
										 |  |  |   def test_put_update_with_project_change | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     ActionMailer::Base.deliveries.clear | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_difference('Journal.count') do | 
					
						
							|  |  |  |       assert_difference('JournalDetail.count', 3) do | 
					
						
							|  |  |  |         put :update, :id => 1, :issue => {:project_id => '2', | 
					
						
							|  |  |  |                                          :tracker_id => '1', # no change | 
					
						
							|  |  |  |                                          :priority_id => '6', | 
					
						
							|  |  |  |                                          :category_id => '3' | 
					
						
							|  |  |  |                                         } | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |     assert_redirected_to :action => 'show', :id => '1' | 
					
						
							|  |  |  |     issue = Issue.find(1) | 
					
						
							|  |  |  |     assert_equal 2, issue.project_id | 
					
						
							|  |  |  |     assert_equal 1, issue.tracker_id | 
					
						
							|  |  |  |     assert_equal 6, issue.priority_id | 
					
						
							|  |  |  |     assert_equal 3, issue.category_id | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     mail = ActionMailer::Base.deliveries.last | 
					
						
							|  |  |  |     assert_not_nil mail | 
					
						
							|  |  |  |     assert mail.subject.starts_with?("[#{issue.project.name} - #{issue.tracker.name} ##{issue.id}]") | 
					
						
							|  |  |  |     assert mail.body.include?("Project changed from eCookbook to OnlineStore") | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_put_update_with_tracker_change | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     ActionMailer::Base.deliveries.clear | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_difference('Journal.count') do | 
					
						
							|  |  |  |       assert_difference('JournalDetail.count', 2) do | 
					
						
							|  |  |  |         put :update, :id => 1, :issue => {:project_id => '1', | 
					
						
							|  |  |  |                                          :tracker_id => '2', | 
					
						
							|  |  |  |                                          :priority_id => '6' | 
					
						
							|  |  |  |                                         } | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |     assert_redirected_to :action => 'show', :id => '1' | 
					
						
							|  |  |  |     issue = Issue.find(1) | 
					
						
							|  |  |  |     assert_equal 1, issue.project_id | 
					
						
							|  |  |  |     assert_equal 2, issue.tracker_id | 
					
						
							|  |  |  |     assert_equal 6, issue.priority_id | 
					
						
							|  |  |  |     assert_equal 1, issue.category_id | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     mail = ActionMailer::Base.deliveries.last | 
					
						
							|  |  |  |     assert_not_nil mail | 
					
						
							|  |  |  |     assert mail.subject.starts_with?("[#{issue.project.name} - #{issue.tracker.name} ##{issue.id}]") | 
					
						
							|  |  |  |     assert mail.body.include?("Tracker changed from Bug to Feature request") | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-24 17:21:41 +00:00
										 |  |  |   def test_put_update_with_custom_field_change | 
					
						
							| 
									
										
										
										
											2008-06-27 20:13:56 +00:00
										 |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     issue = Issue.find(1) | 
					
						
							|  |  |  |     assert_equal '125', issue.custom_value_for(2).value | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-06-27 20:13:56 +00:00
										 |  |  |     assert_difference('Journal.count') do | 
					
						
							|  |  |  |       assert_difference('JournalDetail.count', 3) do | 
					
						
							| 
									
										
										
										
											2010-02-24 17:21:41 +00:00
										 |  |  |         put :update, :id => 1, :issue => {:subject => 'Custom field change', | 
					
						
							| 
									
										
										
										
											2008-06-27 20:13:56 +00:00
										 |  |  |                                          :priority_id => '6', | 
					
						
							|  |  |  |                                          :category_id => '1', # no change | 
					
						
							|  |  |  |                                          :custom_field_values => { '2' => 'New custom value' } | 
					
						
							|  |  |  |                                         } | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2009-01-26 01:47:51 +00:00
										 |  |  |     assert_redirected_to :action => 'show', :id => '1' | 
					
						
							| 
									
										
										
										
											2008-06-27 20:13:56 +00:00
										 |  |  |     issue.reload | 
					
						
							|  |  |  |     assert_equal 'New custom value', issue.custom_value_for(2).value | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-06-27 20:13:56 +00:00
										 |  |  |     mail = ActionMailer::Base.deliveries.last | 
					
						
							|  |  |  |     assert_kind_of TMail::Mail, mail | 
					
						
							|  |  |  |     assert mail.body.include?("Searchable field changed from 125 to New custom value") | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-29 20:51:48 +00:00
										 |  |  |   def test_put_update_with_multi_custom_field_change | 
					
						
							|  |  |  |     field = CustomField.find(1) | 
					
						
							|  |  |  |     field.update_attribute :multiple, true | 
					
						
							|  |  |  |     issue = Issue.find(1) | 
					
						
							|  |  |  |     issue.custom_field_values = {1 => ['MySQL', 'Oracle']} | 
					
						
							|  |  |  |     issue.save! | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     assert_difference('Journal.count') do | 
					
						
							|  |  |  |       assert_difference('JournalDetail.count', 3) do | 
					
						
							|  |  |  |         put :update, :id => 1, | 
					
						
							|  |  |  |           :issue => { | 
					
						
							|  |  |  |             :subject => 'Custom field change', | 
					
						
							|  |  |  |             :custom_field_values => { '1' => ['', 'Oracle', 'PostgreSQL'] } | 
					
						
							|  |  |  |           } | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |     assert_redirected_to :action => 'show', :id => '1' | 
					
						
							|  |  |  |     assert_equal ['Oracle', 'PostgreSQL'], Issue.find(1).custom_field_value(1).sort | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-24 17:21:41 +00:00
										 |  |  |   def test_put_update_with_status_and_assignee_change | 
					
						
							| 
									
										
										
										
											2007-12-12 22:22:33 +00:00
										 |  |  |     issue = Issue.find(1) | 
					
						
							|  |  |  |     assert_equal 1, issue.status_id | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							| 
									
										
										
										
											2008-04-30 09:09:28 +00:00
										 |  |  |     assert_difference('TimeEntry.count', 0) do | 
					
						
							| 
									
										
										
										
											2010-02-24 17:21:41 +00:00
										 |  |  |       put :update, | 
					
						
							| 
									
										
										
										
											2008-04-30 09:09:28 +00:00
										 |  |  |            :id => 1, | 
					
						
							|  |  |  |            :issue => { :status_id => 2, :assigned_to_id => 3 }, | 
					
						
							|  |  |  |            :notes => 'Assigned to dlopper', | 
					
						
							| 
									
										
										
										
											2009-05-30 23:30:36 +00:00
										 |  |  |            :time_entry => { :hours => '', :comments => '', :activity_id => TimeEntryActivity.first } | 
					
						
							| 
									
										
										
										
											2008-04-30 09:09:28 +00:00
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2009-01-26 01:47:51 +00:00
										 |  |  |     assert_redirected_to :action => 'show', :id => '1' | 
					
						
							| 
									
										
										
										
											2007-12-12 22:22:33 +00:00
										 |  |  |     issue.reload | 
					
						
							|  |  |  |     assert_equal 2, issue.status_id | 
					
						
							| 
									
										
										
										
											2009-12-21 20:02:51 +00:00
										 |  |  |     j = Journal.find(:first, :order => 'id DESC') | 
					
						
							| 
									
										
										
										
											2007-12-12 22:22:33 +00:00
										 |  |  |     assert_equal 'Assigned to dlopper', j.notes | 
					
						
							|  |  |  |     assert_equal 2, j.details.size | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-06 17:06:14 +00:00
										 |  |  |     mail = ActionMailer::Base.deliveries.last | 
					
						
							|  |  |  |     assert mail.body.include?("Status changed from New to Assigned") | 
					
						
							| 
									
										
										
										
											2009-04-19 08:33:56 +00:00
										 |  |  |     # subject should contain the new status | 
					
						
							|  |  |  |     assert mail.subject.include?("(#{ IssueStatus.find(2).name })") | 
					
						
							| 
									
										
										
										
											2008-01-06 17:06:14 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-24 17:21:41 +00:00
										 |  |  |   def test_put_update_with_note_only | 
					
						
							| 
									
										
										
										
											2008-01-06 17:06:14 +00:00
										 |  |  |     notes = 'Note added by IssuesControllerTest#test_update_with_note_only' | 
					
						
							|  |  |  |     # anonymous user | 
					
						
							| 
									
										
										
										
											2010-02-24 17:21:41 +00:00
										 |  |  |     put :update, | 
					
						
							| 
									
										
										
										
											2008-01-06 17:06:14 +00:00
										 |  |  |          :id => 1, | 
					
						
							|  |  |  |          :notes => notes | 
					
						
							| 
									
										
										
										
											2009-01-26 01:47:51 +00:00
										 |  |  |     assert_redirected_to :action => 'show', :id => '1' | 
					
						
							| 
									
										
										
										
											2009-12-21 20:02:51 +00:00
										 |  |  |     j = Journal.find(:first, :order => 'id DESC') | 
					
						
							| 
									
										
										
										
											2008-01-06 17:06:14 +00:00
										 |  |  |     assert_equal notes, j.notes | 
					
						
							|  |  |  |     assert_equal 0, j.details.size | 
					
						
							|  |  |  |     assert_equal User.anonymous, j.user | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-06 17:06:14 +00:00
										 |  |  |     mail = ActionMailer::Base.deliveries.last | 
					
						
							|  |  |  |     assert mail.body.include?(notes) | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-24 17:21:41 +00:00
										 |  |  |   def test_put_update_with_note_and_spent_time | 
					
						
							| 
									
										
										
										
											2008-01-06 17:06:14 +00:00
										 |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     spent_hours_before = Issue.find(1).spent_hours | 
					
						
							| 
									
										
										
										
											2008-04-30 09:09:28 +00:00
										 |  |  |     assert_difference('TimeEntry.count') do | 
					
						
							| 
									
										
										
										
											2010-02-24 17:21:41 +00:00
										 |  |  |       put :update, | 
					
						
							| 
									
										
										
										
											2008-04-30 09:09:28 +00:00
										 |  |  |            :id => 1, | 
					
						
							|  |  |  |            :notes => '2.5 hours added', | 
					
						
							| 
									
										
										
										
											2010-04-30 10:06:51 +00:00
										 |  |  |            :time_entry => { :hours => '2.5', :comments => 'test_put_update_with_note_and_spent_time', :activity_id => TimeEntryActivity.first.id } | 
					
						
							| 
									
										
										
										
											2008-04-30 09:09:28 +00:00
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2009-01-26 01:47:51 +00:00
										 |  |  |     assert_redirected_to :action => 'show', :id => '1' | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-06 17:06:14 +00:00
										 |  |  |     issue = Issue.find(1) | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-21 20:02:51 +00:00
										 |  |  |     j = Journal.find(:first, :order => 'id DESC') | 
					
						
							| 
									
										
										
										
											2008-01-06 17:06:14 +00:00
										 |  |  |     assert_equal '2.5 hours added', j.notes | 
					
						
							|  |  |  |     assert_equal 0, j.details.size | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-04-11 16:48:46 +00:00
										 |  |  |     t = issue.time_entries.find_by_comments('test_put_update_with_note_and_spent_time') | 
					
						
							| 
									
										
										
										
											2008-01-06 17:06:14 +00:00
										 |  |  |     assert_not_nil t | 
					
						
							|  |  |  |     assert_equal 2.5, t.hours | 
					
						
							|  |  |  |     assert_equal spent_hours_before + 2.5, issue.spent_hours | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-24 17:21:41 +00:00
										 |  |  |   def test_put_update_with_attachment_only | 
					
						
							| 
									
										
										
										
											2008-06-09 18:40:59 +00:00
										 |  |  |     set_tmp_attachments_directory | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-10-02 02:40:29 +00:00
										 |  |  |     # Delete all fixtured journals, a race condition can occur causing the wrong | 
					
						
							|  |  |  |     # journal to get fetched in the next find. | 
					
						
							|  |  |  |     Journal.delete_all | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-06 17:06:14 +00:00
										 |  |  |     # anonymous user | 
					
						
							| 
									
										
										
										
											2011-07-29 15:51:40 +00:00
										 |  |  |     assert_difference 'Attachment.count' do | 
					
						
							|  |  |  |       put :update, :id => 1, | 
					
						
							|  |  |  |         :notes => '', | 
					
						
							|  |  |  |         :attachments => {'1' => {'file' => uploaded_test_file('testfile.txt', 'text/plain'), 'description' => 'test file'}} | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2011-08-31 14:12:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-26 01:47:51 +00:00
										 |  |  |     assert_redirected_to :action => 'show', :id => '1' | 
					
						
							| 
									
										
										
										
											2008-01-06 17:06:14 +00:00
										 |  |  |     j = Issue.find(1).journals.find(:first, :order => 'id DESC') | 
					
						
							|  |  |  |     assert j.notes.blank? | 
					
						
							|  |  |  |     assert_equal 1, j.details.size | 
					
						
							|  |  |  |     assert_equal 'testfile.txt', j.details.first.value | 
					
						
							|  |  |  |     assert_equal User.anonymous, j.user | 
					
						
							| 
									
										
										
										
											2011-08-31 14:12:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-29 15:51:40 +00:00
										 |  |  |     attachment = Attachment.first(:order => 'id DESC') | 
					
						
							|  |  |  |     assert_equal Issue.find(1), attachment.container | 
					
						
							|  |  |  |     assert_equal User.anonymous, attachment.author | 
					
						
							|  |  |  |     assert_equal 'testfile.txt', attachment.filename | 
					
						
							|  |  |  |     assert_equal 'text/plain', attachment.content_type | 
					
						
							|  |  |  |     assert_equal 'test file', attachment.description | 
					
						
							|  |  |  |     assert_equal 59, attachment.filesize | 
					
						
							|  |  |  |     assert File.exists?(attachment.diskfile) | 
					
						
							|  |  |  |     assert_equal 59, File.size(attachment.diskfile) | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-06 17:06:14 +00:00
										 |  |  |     mail = ActionMailer::Base.deliveries.last | 
					
						
							|  |  |  |     assert mail.body.include?('testfile.txt') | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2010-03-03 17:04:55 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   def test_put_update_with_attachment_that_fails_to_save | 
					
						
							|  |  |  |     set_tmp_attachments_directory | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-03 17:04:55 +00:00
										 |  |  |     # Delete all fixtured journals, a race condition can occur causing the wrong | 
					
						
							|  |  |  |     # journal to get fetched in the next find. | 
					
						
							|  |  |  |     Journal.delete_all | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # Mock out the unsaved attachment | 
					
						
							|  |  |  |     Attachment.any_instance.stubs(:create).returns(Attachment.new) | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-03 17:04:55 +00:00
										 |  |  |     # anonymous user | 
					
						
							|  |  |  |     put :update, | 
					
						
							|  |  |  |          :id => 1, | 
					
						
							|  |  |  |          :notes => '', | 
					
						
							|  |  |  |          :attachments => {'1' => {'file' => uploaded_test_file('testfile.txt', 'text/plain')}} | 
					
						
							|  |  |  |     assert_redirected_to :action => 'show', :id => '1' | 
					
						
							|  |  |  |     assert_equal '1 file(s) could not be saved.', flash[:warning] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   end if Object.const_defined?(:Mocha) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-24 17:21:41 +00:00
										 |  |  |   def test_put_update_with_no_change | 
					
						
							| 
									
										
										
										
											2008-01-06 17:06:14 +00:00
										 |  |  |     issue = Issue.find(1) | 
					
						
							|  |  |  |     issue.journals.clear | 
					
						
							|  |  |  |     ActionMailer::Base.deliveries.clear | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-24 17:21:41 +00:00
										 |  |  |     put :update, | 
					
						
							| 
									
										
										
										
											2008-01-06 17:06:14 +00:00
										 |  |  |          :id => 1, | 
					
						
							|  |  |  |          :notes => '' | 
					
						
							| 
									
										
										
										
											2009-01-26 01:47:51 +00:00
										 |  |  |     assert_redirected_to :action => 'show', :id => '1' | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-06 17:06:14 +00:00
										 |  |  |     issue.reload | 
					
						
							|  |  |  |     assert issue.journals.empty? | 
					
						
							|  |  |  |     # No email should be sent | 
					
						
							|  |  |  |     assert ActionMailer::Base.deliveries.empty? | 
					
						
							| 
									
										
										
										
											2007-12-12 22:22:33 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2009-03-28 00:38:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-24 17:21:41 +00:00
										 |  |  |   def test_put_update_should_send_a_notification | 
					
						
							| 
									
										
										
										
											2009-03-28 00:38:57 +00:00
										 |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     ActionMailer::Base.deliveries.clear | 
					
						
							|  |  |  |     issue = Issue.find(1) | 
					
						
							|  |  |  |     old_subject = issue.subject | 
					
						
							|  |  |  |     new_subject = 'Subject modified by IssuesControllerTest#test_post_edit' | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-24 17:21:41 +00:00
										 |  |  |     put :update, :id => 1, :issue => {:subject => new_subject, | 
					
						
							| 
									
										
										
										
											2009-03-28 00:38:57 +00:00
										 |  |  |                                      :priority_id => '6', | 
					
						
							|  |  |  |                                      :category_id => '1' # no change | 
					
						
							|  |  |  |                                     } | 
					
						
							|  |  |  |     assert_equal 1, ActionMailer::Base.deliveries.size | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-13 16:38:01 +00:00
										 |  |  |   def test_put_update_with_invalid_spent_time_hours_only | 
					
						
							| 
									
										
										
										
											2009-01-09 17:32:46 +00:00
										 |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     notes = 'Note added by IssuesControllerTest#test_post_edit_with_invalid_spent_time' | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-09 17:32:46 +00:00
										 |  |  |     assert_no_difference('Journal.count') do | 
					
						
							| 
									
										
										
										
											2010-02-24 17:21:41 +00:00
										 |  |  |       put :update, | 
					
						
							| 
									
										
										
										
											2009-01-09 17:32:46 +00:00
										 |  |  |            :id => 1, | 
					
						
							|  |  |  |            :notes => notes, | 
					
						
							|  |  |  |            :time_entry => {"comments"=>"", "activity_id"=>"", "hours"=>"2z"} | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'edit' | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-13 16:38:01 +00:00
										 |  |  |     assert_error_tag :descendant => {:content => /Activity can't be blank/} | 
					
						
							|  |  |  |     assert_tag :textarea, :attributes => { :name => 'notes' }, :content => notes | 
					
						
							| 
									
										
										
										
											2009-01-09 17:32:46 +00:00
										 |  |  |     assert_tag :input, :attributes => { :name => 'time_entry[hours]', :value => "2z" } | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-13 16:38:01 +00:00
										 |  |  |   def test_put_update_with_invalid_spent_time_comments_only | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     notes = 'Note added by IssuesControllerTest#test_post_edit_with_invalid_spent_time' | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-13 16:38:01 +00:00
										 |  |  |     assert_no_difference('Journal.count') do | 
					
						
							|  |  |  |       put :update, | 
					
						
							|  |  |  |            :id => 1, | 
					
						
							|  |  |  |            :notes => notes, | 
					
						
							|  |  |  |            :time_entry => {"comments"=>"this is my comment", "activity_id"=>"", "hours"=>""} | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'edit' | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-13 16:38:01 +00:00
										 |  |  |     assert_error_tag :descendant => {:content => /Activity can't be blank/} | 
					
						
							|  |  |  |     assert_error_tag :descendant => {:content => /Hours can't be blank/} | 
					
						
							|  |  |  |     assert_tag :textarea, :attributes => { :name => 'notes' }, :content => notes | 
					
						
							|  |  |  |     assert_tag :input, :attributes => { :name => 'time_entry[comments]', :value => "this is my comment" } | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-24 17:21:41 +00:00
										 |  |  |   def test_put_update_should_allow_fixed_version_to_be_set_to_a_subproject | 
					
						
							| 
									
										
										
										
											2009-12-06 10:28:20 +00:00
										 |  |  |     issue = Issue.find(2) | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-24 17:21:41 +00:00
										 |  |  |     put :update, | 
					
						
							| 
									
										
										
										
											2009-12-06 10:28:20 +00:00
										 |  |  |          :id => issue.id, | 
					
						
							|  |  |  |          :issue => { | 
					
						
							|  |  |  |            :fixed_version_id => 4
 | 
					
						
							|  |  |  |          } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_response :redirect | 
					
						
							|  |  |  |     issue.reload | 
					
						
							|  |  |  |     assert_equal 4, issue.fixed_version_id | 
					
						
							|  |  |  |     assert_not_equal issue.project_id, issue.fixed_version.project_id | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2010-01-14 23:24:55 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-24 17:21:41 +00:00
										 |  |  |   def test_put_update_should_redirect_back_using_the_back_url_parameter | 
					
						
							| 
									
										
										
										
											2010-01-14 23:24:55 +00:00
										 |  |  |     issue = Issue.find(2) | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-24 17:21:41 +00:00
										 |  |  |     put :update, | 
					
						
							| 
									
										
										
										
											2010-01-14 23:24:55 +00:00
										 |  |  |          :id => issue.id, | 
					
						
							|  |  |  |          :issue => { | 
					
						
							|  |  |  |            :fixed_version_id => 4
 | 
					
						
							|  |  |  |          }, | 
					
						
							|  |  |  |          :back_url => '/issues' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_response :redirect | 
					
						
							|  |  |  |     assert_redirected_to '/issues' | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-24 17:21:41 +00:00
										 |  |  |   def test_put_update_should_not_redirect_back_using_the_back_url_parameter_off_the_host | 
					
						
							| 
									
										
										
										
											2010-01-14 23:24:55 +00:00
										 |  |  |     issue = Issue.find(2) | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-24 17:21:41 +00:00
										 |  |  |     put :update, | 
					
						
							| 
									
										
										
										
											2010-01-14 23:24:55 +00:00
										 |  |  |          :id => issue.id, | 
					
						
							|  |  |  |          :issue => { | 
					
						
							|  |  |  |            :fixed_version_id => 4
 | 
					
						
							|  |  |  |          }, | 
					
						
							|  |  |  |          :back_url => 'http://google.com' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_response :redirect | 
					
						
							|  |  |  |     assert_redirected_to :controller => 'issues', :action => 'show', :id => issue.id | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-13 16:06:14 +00:00
										 |  |  |   def test_get_bulk_edit | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     get :bulk_edit, :ids => [1, 2] | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'bulk_edit' | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-07 16:18:53 +00:00
										 |  |  |     assert_tag :select, :attributes => {:name => 'issue[project_id]'} | 
					
						
							| 
									
										
										
										
											2011-03-27 15:00:02 +00:00
										 |  |  |     assert_tag :input, :attributes => {:name => 'issue[parent_issue_id]'} | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-03 11:18:09 +00:00
										 |  |  |     # Project specific custom field, date type | 
					
						
							|  |  |  |     field = CustomField.find(9) | 
					
						
							|  |  |  |     assert !field.is_for_all? | 
					
						
							|  |  |  |     assert_equal 'date', field.field_format | 
					
						
							| 
									
										
										
										
											2010-02-23 21:26:29 +00:00
										 |  |  |     assert_tag :input, :attributes => {:name => 'issue[custom_field_values][9]'} | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-03 10:50:40 +00:00
										 |  |  |     # System wide custom field | 
					
						
							| 
									
										
										
										
											2010-01-03 11:18:09 +00:00
										 |  |  |     assert CustomField.find(1).is_for_all? | 
					
						
							| 
									
										
										
										
											2010-02-23 21:26:29 +00:00
										 |  |  |     assert_tag :select, :attributes => {:name => 'issue[custom_field_values][1]'} | 
					
						
							| 
									
										
										
										
											2011-06-13 19:43:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # Be sure we don't display inactive IssuePriorities | 
					
						
							|  |  |  |     assert ! IssuePriority.find(15).active? | 
					
						
							|  |  |  |     assert_no_tag :option, :attributes => {:value => '15'}, | 
					
						
							|  |  |  |                            :parent => {:tag => 'select', :attributes => {:id => 'issue_priority_id'} } | 
					
						
							| 
									
										
										
										
											2009-05-13 16:06:14 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2008-02-10 13:17:41 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-08 03:09:51 +00:00
										 |  |  |   def test_get_bulk_edit_on_different_projects | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     get :bulk_edit, :ids => [1, 2, 6] | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'bulk_edit' | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-27 15:00:02 +00:00
										 |  |  |     # Can not set issues from different projects as children of an issue | 
					
						
							|  |  |  |     assert_no_tag :input, :attributes => {:name => 'issue[parent_issue_id]'} | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-08 03:09:51 +00:00
										 |  |  |     # Project specific custom field, date type | 
					
						
							|  |  |  |     field = CustomField.find(9) | 
					
						
							|  |  |  |     assert !field.is_for_all? | 
					
						
							|  |  |  |     assert !field.project_ids.include?(Issue.find(6).project_id) | 
					
						
							|  |  |  |     assert_no_tag :input, :attributes => {:name => 'issue[custom_field_values][9]'} | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-07 16:34:58 +00:00
										 |  |  |   def test_get_bulk_edit_with_user_custom_field | 
					
						
							|  |  |  |     field = IssueCustomField.create!(:name => 'Tester', :field_format => 'user', :is_for_all => true) | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-07 16:34:58 +00:00
										 |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     get :bulk_edit, :ids => [1, 2] | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'bulk_edit' | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-07 16:34:58 +00:00
										 |  |  |     assert_tag :select, | 
					
						
							|  |  |  |       :attributes => {:name => "issue[custom_field_values][#{field.id}]"}, | 
					
						
							|  |  |  |       :children => { | 
					
						
							|  |  |  |         :only => {:tag => 'option'}, | 
					
						
							|  |  |  |         :count => Project.find(1).users.count + 1
 | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-07 16:34:58 +00:00
										 |  |  |   def test_get_bulk_edit_with_version_custom_field | 
					
						
							|  |  |  |     field = IssueCustomField.create!(:name => 'Affected version', :field_format => 'version', :is_for_all => true) | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-07 16:34:58 +00:00
										 |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     get :bulk_edit, :ids => [1, 2] | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'bulk_edit' | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-07 16:34:58 +00:00
										 |  |  |     assert_tag :select, | 
					
						
							|  |  |  |       :attributes => {:name => "issue[custom_field_values][#{field.id}]"}, | 
					
						
							|  |  |  |       :children => { | 
					
						
							|  |  |  |         :only => {:tag => 'option'}, | 
					
						
							| 
									
										
										
										
											2011-11-11 12:43:05 +00:00
										 |  |  |         :count => Project.find(1).shared_versions.count + 1
 | 
					
						
							| 
									
										
										
										
											2011-04-07 16:34:58 +00:00
										 |  |  |       } | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2010-10-08 03:09:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-29 20:51:48 +00:00
										 |  |  |   def test_get_bulk_edit_with_multi_custom_field | 
					
						
							|  |  |  |     field = CustomField.find(1) | 
					
						
							|  |  |  |     field.update_attribute :multiple, true | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     get :bulk_edit, :ids => [1, 2] | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'bulk_edit' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_tag :select, | 
					
						
							|  |  |  |       :attributes => {:name => "issue[custom_field_values][1][]"}, | 
					
						
							|  |  |  |       :children => { | 
					
						
							|  |  |  |         :only => {:tag => 'option'}, | 
					
						
							|  |  |  |         :count => 3
 | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-24 15:27:12 +00:00
										 |  |  |   def test_bulk_update | 
					
						
							| 
									
										
										
										
											2008-02-10 13:17:41 +00:00
										 |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     # update issues priority | 
					
						
							| 
									
										
										
										
											2010-08-24 15:27:12 +00:00
										 |  |  |     post :bulk_update, :ids => [1, 2], :notes => 'Bulk editing', | 
					
						
							| 
									
										
										
										
											2010-02-23 21:26:29 +00:00
										 |  |  |                                      :issue => {:priority_id => 7, | 
					
						
							|  |  |  |                                                 :assigned_to_id => '', | 
					
						
							|  |  |  |                                                 :custom_field_values => {'2' => ''}} | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-10 13:17:41 +00:00
										 |  |  |     assert_response 302
 | 
					
						
							|  |  |  |     # check that the issues were updated | 
					
						
							|  |  |  |     assert_equal [7, 7], Issue.find_all_by_id([1, 2]).collect {|i| i.priority.id} | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-25 16:04:28 +00:00
										 |  |  |     issue = Issue.find(1) | 
					
						
							|  |  |  |     journal = issue.journals.find(:first, :order => 'created_on DESC') | 
					
						
							|  |  |  |     assert_equal '125', issue.custom_value_for(2).value | 
					
						
							|  |  |  |     assert_equal 'Bulk editing', journal.notes | 
					
						
							|  |  |  |     assert_equal 1, journal.details.size | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-23 18:18:13 +00:00
										 |  |  |   def test_bulk_update_with_group_assignee | 
					
						
							|  |  |  |     group = Group.find(11) | 
					
						
							|  |  |  |     project = Project.find(1) | 
					
						
							|  |  |  |     project.members << Member.new(:principal => group, :roles => [Role.first]) | 
					
						
							| 
									
										
										
										
											2011-08-31 14:12:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-23 18:18:13 +00:00
										 |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     # update issues assignee | 
					
						
							|  |  |  |     post :bulk_update, :ids => [1, 2], :notes => 'Bulk editing', | 
					
						
							|  |  |  |                                      :issue => {:priority_id => '', | 
					
						
							|  |  |  |                                                 :assigned_to_id => group.id, | 
					
						
							|  |  |  |                                                 :custom_field_values => {'2' => ''}} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_response 302
 | 
					
						
							|  |  |  |     assert_equal [group, group], Issue.find_all_by_id([1, 2]).collect {|i| i.assigned_to} | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-08 03:09:51 +00:00
										 |  |  |   def test_bulk_update_on_different_projects | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     # update issues priority | 
					
						
							|  |  |  |     post :bulk_update, :ids => [1, 2, 6], :notes => 'Bulk editing', | 
					
						
							|  |  |  |                                      :issue => {:priority_id => 7, | 
					
						
							|  |  |  |                                                 :assigned_to_id => '', | 
					
						
							|  |  |  |                                                 :custom_field_values => {'2' => ''}} | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-08 03:09:51 +00:00
										 |  |  |     assert_response 302
 | 
					
						
							|  |  |  |     # check that the issues were updated | 
					
						
							|  |  |  |     assert_equal [7, 7, 7], Issue.find([1,2,6]).map(&:priority_id) | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-08 03:09:51 +00:00
										 |  |  |     issue = Issue.find(1) | 
					
						
							|  |  |  |     journal = issue.journals.find(:first, :order => 'created_on DESC') | 
					
						
							|  |  |  |     assert_equal '125', issue.custom_value_for(2).value | 
					
						
							|  |  |  |     assert_equal 'Bulk editing', journal.notes | 
					
						
							|  |  |  |     assert_equal 1, journal.details.size | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_bulk_update_on_different_projects_without_rights | 
					
						
							|  |  |  |     @request.session[:user_id] = 3
 | 
					
						
							|  |  |  |     user = User.find(3) | 
					
						
							|  |  |  |     action = { :controller => "issues", :action => "bulk_update" } | 
					
						
							|  |  |  |     assert user.allowed_to?(action, Issue.find(1).project) | 
					
						
							|  |  |  |     assert ! user.allowed_to?(action, Issue.find(6).project) | 
					
						
							|  |  |  |     post :bulk_update, :ids => [1, 6], :notes => 'Bulk should fail', | 
					
						
							|  |  |  |                                      :issue => {:priority_id => 7, | 
					
						
							|  |  |  |                                                 :assigned_to_id => '', | 
					
						
							|  |  |  |                                                 :custom_field_values => {'2' => ''}} | 
					
						
							|  |  |  |     assert_response 403
 | 
					
						
							|  |  |  |     assert_not_equal "Bulk should fail", Journal.last.notes | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-24 15:27:12 +00:00
										 |  |  |   def test_bullk_update_should_send_a_notification | 
					
						
							| 
									
										
										
										
											2009-03-28 00:38:57 +00:00
										 |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     ActionMailer::Base.deliveries.clear | 
					
						
							| 
									
										
										
										
											2010-08-24 15:27:12 +00:00
										 |  |  |     post(:bulk_update, | 
					
						
							| 
									
										
										
										
											2009-03-28 00:38:57 +00:00
										 |  |  |          { | 
					
						
							|  |  |  |            :ids => [1, 2], | 
					
						
							| 
									
										
										
										
											2010-02-23 21:26:29 +00:00
										 |  |  |            :notes => 'Bulk editing', | 
					
						
							|  |  |  |            :issue => { | 
					
						
							|  |  |  |              :priority_id => 7, | 
					
						
							|  |  |  |              :assigned_to_id => '', | 
					
						
							|  |  |  |              :custom_field_values => {'2' => ''} | 
					
						
							|  |  |  |            } | 
					
						
							| 
									
										
										
										
											2009-03-28 00:38:57 +00:00
										 |  |  |          }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_response 302
 | 
					
						
							|  |  |  |     assert_equal 2, ActionMailer::Base.deliveries.size | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-07 16:18:53 +00:00
										 |  |  |   def test_bulk_update_project | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     post :bulk_update, :ids => [1, 2], :issue => {:project_id => '2'} | 
					
						
							|  |  |  |     assert_redirected_to :controller => 'issues', :action => 'index', :project_id => 'ecookbook' | 
					
						
							|  |  |  |     # Issues moved to project 2 | 
					
						
							|  |  |  |     assert_equal 2, Issue.find(1).project_id | 
					
						
							|  |  |  |     assert_equal 2, Issue.find(2).project_id | 
					
						
							|  |  |  |     # No tracker change | 
					
						
							|  |  |  |     assert_equal 1, Issue.find(1).tracker_id | 
					
						
							|  |  |  |     assert_equal 2, Issue.find(2).tracker_id | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_bulk_update_project_on_single_issue_should_follow_when_needed | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     post :bulk_update, :id => 1, :issue => {:project_id => '2'}, :follow => '1' | 
					
						
							|  |  |  |     assert_redirected_to '/issues/1' | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_bulk_update_project_on_multiple_issues_should_follow_when_needed | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     post :bulk_update, :id => [1, 2], :issue => {:project_id => '2'}, :follow => '1' | 
					
						
							|  |  |  |     assert_redirected_to '/projects/onlinestore/issues' | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_bulk_update_tracker | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     post :bulk_update, :ids => [1, 2], :issue => {:tracker_id => '2'} | 
					
						
							|  |  |  |     assert_redirected_to :controller => 'issues', :action => 'index', :project_id => 'ecookbook' | 
					
						
							|  |  |  |     assert_equal 2, Issue.find(1).tracker_id | 
					
						
							|  |  |  |     assert_equal 2, Issue.find(2).tracker_id | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-24 15:27:12 +00:00
										 |  |  |   def test_bulk_update_status | 
					
						
							| 
									
										
										
										
											2009-05-14 18:18:29 +00:00
										 |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     # update issues priority | 
					
						
							| 
									
										
										
										
											2010-08-24 15:27:12 +00:00
										 |  |  |     post :bulk_update, :ids => [1, 2], :notes => 'Bulk editing status', | 
					
						
							| 
									
										
										
										
											2010-02-23 21:26:29 +00:00
										 |  |  |                                      :issue => {:priority_id => '', | 
					
						
							|  |  |  |                                                 :assigned_to_id => '', | 
					
						
							|  |  |  |                                                 :status_id => '5'} | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-14 18:18:29 +00:00
										 |  |  |     assert_response 302
 | 
					
						
							|  |  |  |     issue = Issue.find(1) | 
					
						
							|  |  |  |     assert issue.closed? | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-07 16:18:53 +00:00
										 |  |  |   def test_bulk_update_priority | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     post :bulk_update, :ids => [1, 2], :issue => {:priority_id => 6} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_redirected_to :controller => 'issues', :action => 'index', :project_id => 'ecookbook' | 
					
						
							|  |  |  |     assert_equal 6, Issue.find(1).priority_id | 
					
						
							|  |  |  |     assert_equal 6, Issue.find(2).priority_id | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_bulk_update_with_notes | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     post :bulk_update, :ids => [1, 2], :notes => 'Moving two issues' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_redirected_to :controller => 'issues', :action => 'index', :project_id => 'ecookbook' | 
					
						
							|  |  |  |     assert_equal 'Moving two issues', Issue.find(1).journals.sort_by(&:id).last.notes | 
					
						
							|  |  |  |     assert_equal 'Moving two issues', Issue.find(2).journals.sort_by(&:id).last.notes | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-27 15:00:02 +00:00
										 |  |  |   def test_bulk_update_parent_id | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     post :bulk_update, :ids => [1, 3], | 
					
						
							|  |  |  |       :notes => 'Bulk editing parent', | 
					
						
							|  |  |  |       :issue => {:priority_id => '', :assigned_to_id => '', :status_id => '', :parent_issue_id => '2'} | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-27 15:00:02 +00:00
										 |  |  |     assert_response 302
 | 
					
						
							|  |  |  |     parent = Issue.find(2) | 
					
						
							|  |  |  |     assert_equal parent.id, Issue.find(1).parent_id | 
					
						
							|  |  |  |     assert_equal parent.id, Issue.find(3).parent_id | 
					
						
							|  |  |  |     assert_equal [1, 3], parent.children.collect(&:id).sort | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2009-05-14 18:18:29 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-24 15:27:12 +00:00
										 |  |  |   def test_bulk_update_custom_field | 
					
						
							| 
									
										
										
										
											2009-01-25 16:04:28 +00:00
										 |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     # update issues priority | 
					
						
							| 
									
										
										
										
											2010-08-24 15:27:12 +00:00
										 |  |  |     post :bulk_update, :ids => [1, 2], :notes => 'Bulk editing custom field', | 
					
						
							| 
									
										
										
										
											2010-02-23 21:26:29 +00:00
										 |  |  |                                      :issue => {:priority_id => '', | 
					
						
							|  |  |  |                                                 :assigned_to_id => '', | 
					
						
							|  |  |  |                                                 :custom_field_values => {'2' => '777'}} | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-25 16:04:28 +00:00
										 |  |  |     assert_response 302
 | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-25 16:04:28 +00:00
										 |  |  |     issue = Issue.find(1) | 
					
						
							|  |  |  |     journal = issue.journals.find(:first, :order => 'created_on DESC') | 
					
						
							|  |  |  |     assert_equal '777', issue.custom_value_for(2).value | 
					
						
							|  |  |  |     assert_equal 1, journal.details.size | 
					
						
							|  |  |  |     assert_equal '125', journal.details.first.old_value | 
					
						
							|  |  |  |     assert_equal '777', journal.details.first.value | 
					
						
							| 
									
										
										
										
											2008-02-10 13:17:41 +00:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-29 20:51:48 +00:00
										 |  |  |   def test_bulk_update_multi_custom_field | 
					
						
							|  |  |  |     field = CustomField.find(1) | 
					
						
							|  |  |  |     field.update_attribute :multiple, true | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     post :bulk_update, :ids => [1, 2, 3], :notes => 'Bulk editing multi custom field', | 
					
						
							|  |  |  |                                      :issue => {:priority_id => '', | 
					
						
							|  |  |  |                                                 :assigned_to_id => '', | 
					
						
							|  |  |  |                                                 :custom_field_values => {'1' => ['MySQL', 'Oracle']}} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_response 302
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_equal ['MySQL', 'Oracle'], Issue.find(1).custom_field_value(1).sort | 
					
						
							|  |  |  |     assert_equal ['MySQL', 'Oracle'], Issue.find(3).custom_field_value(1).sort | 
					
						
							|  |  |  |     # the custom field is not associated with the issue tracker | 
					
						
							|  |  |  |     assert_nil Issue.find(2).custom_field_value(1) | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-24 15:27:12 +00:00
										 |  |  |   def test_bulk_update_unassign | 
					
						
							| 
									
										
										
										
											2008-03-26 22:22:45 +00:00
										 |  |  |     assert_not_nil Issue.find(2).assigned_to | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     # unassign issues | 
					
						
							| 
									
										
										
										
											2010-08-24 15:27:12 +00:00
										 |  |  |     post :bulk_update, :ids => [1, 2], :notes => 'Bulk unassigning', :issue => {:assigned_to_id => 'none'} | 
					
						
							| 
									
										
										
										
											2008-03-26 22:22:45 +00:00
										 |  |  |     assert_response 302
 | 
					
						
							|  |  |  |     # check that the issues were updated | 
					
						
							|  |  |  |     assert_nil Issue.find(2).assigned_to | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-24 15:27:12 +00:00
										 |  |  |   def test_post_bulk_update_should_allow_fixed_version_to_be_set_to_a_subproject | 
					
						
							| 
									
										
										
										
											2009-12-06 10:28:20 +00:00
										 |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-24 15:27:12 +00:00
										 |  |  |     post :bulk_update, :ids => [1,2], :issue => {:fixed_version_id => 4} | 
					
						
							| 
									
										
										
										
											2009-12-06 10:28:20 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     assert_response :redirect | 
					
						
							|  |  |  |     issues = Issue.find([1,2]) | 
					
						
							|  |  |  |     issues.each do |issue| | 
					
						
							|  |  |  |       assert_equal 4, issue.fixed_version_id | 
					
						
							|  |  |  |       assert_not_equal issue.project_id, issue.fixed_version.project_id | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-24 15:27:12 +00:00
										 |  |  |   def test_post_bulk_update_should_redirect_back_using_the_back_url_parameter | 
					
						
							| 
									
										
										
										
											2010-01-14 23:24:55 +00:00
										 |  |  |     @request.session[:user_id] = 2
 | 
					
						
							| 
									
										
										
										
											2010-08-24 15:27:12 +00:00
										 |  |  |     post :bulk_update, :ids => [1,2], :back_url => '/issues' | 
					
						
							| 
									
										
										
										
											2010-01-14 23:24:55 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     assert_response :redirect | 
					
						
							|  |  |  |     assert_redirected_to '/issues' | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-24 15:27:12 +00:00
										 |  |  |   def test_post_bulk_update_should_not_redirect_back_using_the_back_url_parameter_off_the_host | 
					
						
							| 
									
										
										
										
											2010-01-14 23:24:55 +00:00
										 |  |  |     @request.session[:user_id] = 2
 | 
					
						
							| 
									
										
										
										
											2010-08-24 15:27:12 +00:00
										 |  |  |     post :bulk_update, :ids => [1,2], :back_url => 'http://google.com' | 
					
						
							| 
									
										
										
										
											2010-01-14 23:24:55 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     assert_response :redirect | 
					
						
							|  |  |  |     assert_redirected_to :controller => 'issues', :action => 'index', :project_id => Project.find(1).identifier | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-07 17:27:47 +00:00
										 |  |  |   def test_bulk_copy_to_another_project | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     assert_difference 'Issue.count', 2 do | 
					
						
							|  |  |  |       assert_no_difference 'Project.find(1).issues.count' do | 
					
						
							|  |  |  |         post :bulk_update, :ids => [1, 2], :issue => {:project_id => '2'}, :copy => '1' | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |     assert_redirected_to '/projects/ecookbook/issues' | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-07 20:54:51 +00:00
										 |  |  |   def test_bulk_copy_should_allow_not_changing_the_issue_attributes | 
					
						
							| 
									
										
										
										
											2012-01-07 17:27:47 +00:00
										 |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     issue_before_move = Issue.find(1) | 
					
						
							|  |  |  |     assert_difference 'Issue.count', 1 do | 
					
						
							|  |  |  |       assert_no_difference 'Project.find(1).issues.count' do | 
					
						
							|  |  |  |         post :bulk_update, :ids => [1], :copy => '1',  | 
					
						
							|  |  |  |              :issue => { | 
					
						
							|  |  |  |                :project_id => '2', :tracker_id => '', :assigned_to_id => '', | 
					
						
							|  |  |  |                :status_id => '', :start_date => '', :due_date => '' | 
					
						
							|  |  |  |              } | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |     issue_after_move = Issue.first(:order => 'id desc', :conditions => {:project_id => 2}) | 
					
						
							|  |  |  |     assert_equal issue_before_move.tracker_id, issue_after_move.tracker_id | 
					
						
							|  |  |  |     assert_equal issue_before_move.status_id, issue_after_move.status_id | 
					
						
							|  |  |  |     assert_equal issue_before_move.assigned_to_id, issue_after_move.assigned_to_id | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  def test_bulk_copy_should_allow_changing_the_issue_attributes | 
					
						
							|  |  |  |     # Fixes random test failure with Mysql | 
					
						
							|  |  |  |     # where Issue.all(:limit => 2, :order => 'id desc', :conditions => {:project_id => 2}) | 
					
						
							|  |  |  |     # doesn't return the expected results | 
					
						
							|  |  |  |     Issue.delete_all("project_id=2") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     assert_difference 'Issue.count', 2 do | 
					
						
							|  |  |  |       assert_no_difference 'Project.find(1).issues.count' do | 
					
						
							|  |  |  |         post :bulk_update, :ids => [1, 2], :copy => '1',  | 
					
						
							|  |  |  |              :issue => { | 
					
						
							|  |  |  |                :project_id => '2', :tracker_id => '', :assigned_to_id => '4', | 
					
						
							|  |  |  |                :status_id => '3', :start_date => '2009-12-01', :due_date => '2009-12-31' | 
					
						
							|  |  |  |              } | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     copied_issues = Issue.all(:limit => 2, :order => 'id desc', :conditions => {:project_id => 2}) | 
					
						
							|  |  |  |     assert_equal 2, copied_issues.size | 
					
						
							|  |  |  |     copied_issues.each do |issue| | 
					
						
							|  |  |  |       assert_equal 2, issue.project_id, "Project is incorrect" | 
					
						
							|  |  |  |       assert_equal 4, issue.assigned_to_id, "Assigned to is incorrect" | 
					
						
							|  |  |  |       assert_equal 3, issue.status_id, "Status is incorrect" | 
					
						
							|  |  |  |       assert_equal '2009-12-01', issue.start_date.to_s, "Start date is incorrect" | 
					
						
							|  |  |  |       assert_equal '2009-12-31', issue.due_date.to_s, "Due date is incorrect" | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_bulk_copy_should_allow_adding_a_note | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     assert_difference 'Issue.count', 1 do | 
					
						
							|  |  |  |       post :bulk_update, :ids => [1], :copy => '1', | 
					
						
							|  |  |  |            :notes => 'Copying one issue', | 
					
						
							|  |  |  |            :issue => { | 
					
						
							|  |  |  |              :project_id => '', :tracker_id => '', :assigned_to_id => '4', | 
					
						
							|  |  |  |              :status_id => '3', :start_date => '2009-12-01', :due_date => '2009-12-31' | 
					
						
							|  |  |  |            } | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     issue = Issue.first(:order => 'id DESC') | 
					
						
							|  |  |  |     assert_equal 1, issue.journals.size | 
					
						
							|  |  |  |     journal = issue.journals.first | 
					
						
							|  |  |  |     assert_equal 0, journal.details.size | 
					
						
							|  |  |  |     assert_equal 'Copying one issue', journal.notes | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_bulk_copy_to_another_project_should_follow_when_needed | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     post :bulk_update, :ids => [1], :copy => '1', :issue => {:project_id => 2}, :follow => '1' | 
					
						
							|  |  |  |     issue = Issue.first(:order => 'id DESC') | 
					
						
							|  |  |  |     assert_redirected_to :controller => 'issues', :action => 'show', :id => issue | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-29 22:54:07 +00:00
										 |  |  |   def test_destroy_issue_with_no_time_entries | 
					
						
							| 
									
										
										
										
											2008-04-09 17:45:39 +00:00
										 |  |  |     assert_nil TimeEntry.find_by_issue_id(2) | 
					
						
							| 
									
										
										
										
											2007-12-12 22:22:33 +00:00
										 |  |  |     @request.session[:user_id] = 2
 | 
					
						
							| 
									
										
										
										
											2012-01-10 23:02:46 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     assert_difference 'Issue.count', -1 do | 
					
						
							|  |  |  |       delete :destroy, :id => 2
 | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2009-01-26 01:47:51 +00:00
										 |  |  |     assert_redirected_to :action => 'index', :project_id => 'ecookbook' | 
					
						
							| 
									
										
										
										
											2008-04-09 17:45:39 +00:00
										 |  |  |     assert_nil Issue.find_by_id(2) | 
					
						
							| 
									
										
										
										
											2007-12-12 22:22:33 +00:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-29 22:54:07 +00:00
										 |  |  |   def test_destroy_issues_with_time_entries | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							| 
									
										
										
										
											2012-01-10 23:02:46 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     assert_no_difference 'Issue.count' do | 
					
						
							|  |  |  |       delete :destroy, :ids => [1, 3] | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2008-02-29 22:54:07 +00:00
										 |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'destroy' | 
					
						
							|  |  |  |     assert_not_nil assigns(:hours) | 
					
						
							|  |  |  |     assert Issue.find_by_id(1) && Issue.find_by_id(3) | 
					
						
							| 
									
										
										
										
											2012-01-10 22:58:14 +00:00
										 |  |  |     assert_tag 'form', | 
					
						
							|  |  |  |       :descendant => {:tag => 'input', :attributes => {:name => '_method', :value => 'delete'}} | 
					
						
							| 
									
										
										
										
											2008-02-29 22:54:07 +00:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_destroy_issues_and_destroy_time_entries | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							| 
									
										
										
										
											2012-01-10 23:02:46 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     assert_difference 'Issue.count', -2 do | 
					
						
							|  |  |  |       assert_difference 'TimeEntry.count', -3 do | 
					
						
							|  |  |  |         delete :destroy, :ids => [1, 3], :todo => 'destroy' | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2009-01-26 01:47:51 +00:00
										 |  |  |     assert_redirected_to :action => 'index', :project_id => 'ecookbook' | 
					
						
							| 
									
										
										
										
											2008-02-29 22:54:07 +00:00
										 |  |  |     assert !(Issue.find_by_id(1) || Issue.find_by_id(3)) | 
					
						
							|  |  |  |     assert_nil TimeEntry.find_by_id([1, 2]) | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_destroy_issues_and_assign_time_entries_to_project | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							| 
									
										
										
										
											2012-01-10 23:02:46 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     assert_difference 'Issue.count', -2 do | 
					
						
							|  |  |  |       assert_no_difference 'TimeEntry.count' do | 
					
						
							|  |  |  |         delete :destroy, :ids => [1, 3], :todo => 'nullify' | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2009-01-26 01:47:51 +00:00
										 |  |  |     assert_redirected_to :action => 'index', :project_id => 'ecookbook' | 
					
						
							| 
									
										
										
										
											2008-02-29 22:54:07 +00:00
										 |  |  |     assert !(Issue.find_by_id(1) || Issue.find_by_id(3)) | 
					
						
							|  |  |  |     assert_nil TimeEntry.find(1).issue_id | 
					
						
							|  |  |  |     assert_nil TimeEntry.find(2).issue_id | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-29 22:54:07 +00:00
										 |  |  |   def test_destroy_issues_and_reassign_time_entries_to_another_issue | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							| 
									
										
										
										
											2012-01-10 23:02:46 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     assert_difference 'Issue.count', -2 do | 
					
						
							|  |  |  |       assert_no_difference 'TimeEntry.count' do | 
					
						
							|  |  |  |         delete :destroy, :ids => [1, 3], :todo => 'reassign', :reassign_to_id => 2
 | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2009-01-26 01:47:51 +00:00
										 |  |  |     assert_redirected_to :action => 'index', :project_id => 'ecookbook' | 
					
						
							| 
									
										
										
										
											2008-02-29 22:54:07 +00:00
										 |  |  |     assert !(Issue.find_by_id(1) || Issue.find_by_id(3)) | 
					
						
							|  |  |  |     assert_equal 2, TimeEntry.find(1).issue_id | 
					
						
							|  |  |  |     assert_equal 2, TimeEntry.find(2).issue_id | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-07 05:11:28 +00:00
										 |  |  |   def test_destroy_issues_from_different_projects | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							| 
									
										
										
										
											2012-01-10 23:02:46 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     assert_difference 'Issue.count', -3 do | 
					
						
							|  |  |  |       delete :destroy, :ids => [1, 2, 6], :todo => 'destroy' | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2010-10-07 05:11:28 +00:00
										 |  |  |     assert_redirected_to :controller => 'issues', :action => 'index' | 
					
						
							|  |  |  |     assert !(Issue.find_by_id(1) || Issue.find_by_id(2) || Issue.find_by_id(6)) | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-01 16:26:53 +00:00
										 |  |  |   def test_destroy_parent_and_child_issues | 
					
						
							|  |  |  |     parent = Issue.generate!(:project_id => 1, :tracker_id => 1) | 
					
						
							|  |  |  |     child = Issue.generate!(:project_id => 1, :tracker_id => 1, :parent_issue_id => parent.id) | 
					
						
							|  |  |  |     assert child.is_descendant_of?(parent.reload) | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-01 16:26:53 +00:00
										 |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     assert_difference 'Issue.count', -2 do | 
					
						
							| 
									
										
										
										
											2011-12-10 09:10:51 +00:00
										 |  |  |       delete :destroy, :ids => [parent.id, child.id], :todo => 'destroy' | 
					
						
							| 
									
										
										
										
											2011-04-01 16:26:53 +00:00
										 |  |  |     end | 
					
						
							|  |  |  |     assert_response 302
 | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 03:48:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-21 17:07:18 +00:00
										 |  |  |   def test_default_search_scope | 
					
						
							|  |  |  |     get :index | 
					
						
							|  |  |  |     assert_tag :div, :attributes => {:id => 'quick-search'}, | 
					
						
							|  |  |  |                      :child => {:tag => 'form', | 
					
						
							|  |  |  |                                 :child => {:tag => 'input', :attributes => {:name => 'issues', :type => 'hidden', :value => '1'}}} | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2007-11-05 18:38:42 +00:00
										 |  |  | end |