| 
									
										
										
										
											2008-09-11 17:03:26 +00:00
										 |  |  | # Redmine - project management software | 
					
						
							|  |  |  | # Copyright (C) 2006-2008  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. | 
					
						
							|  |  |  | #  | 
					
						
							|  |  |  | # 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. | 
					
						
							|  |  |  | #  | 
					
						
							|  |  |  | # 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. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | require File.dirname(__FILE__) + '/../test_helper' | 
					
						
							|  |  |  | require 'issues_controller' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Re-raise errors caught by the controller. | 
					
						
							|  |  |  | class IssuesController; def rescue_action(e) raise e end; end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class IssuesControllerTest < Test::Unit::TestCase | 
					
						
							| 
									
										
										
										
											2007-12-13 18:52:09 +00:00
										 |  |  |   fixtures :projects, | 
					
						
							|  |  |  |            :users, | 
					
						
							|  |  |  |            :roles, | 
					
						
							|  |  |  |            :members, | 
					
						
							|  |  |  |            :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, | 
					
						
							| 
									
										
										
										
											2008-02-29 22:54:07 +00:00
										 |  |  |            :custom_fields_trackers, | 
					
						
							| 
									
										
										
										
											2008-06-07 15:14:42 +00:00
										 |  |  |            :time_entries, | 
					
						
							|  |  |  |            :journals, | 
					
						
							|  |  |  |            :journal_details | 
					
						
							| 
									
										
										
										
											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 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_index | 
					
						
							|  |  |  |     get :index | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'index.rhtml' | 
					
						
							|  |  |  |     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/ | 
					
						
							| 
									
										
										
										
											2007-11-05 18:38:42 +00:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   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 | 
					
						
							|  |  |  |     assert_template 'index.rhtml' | 
					
						
							|  |  |  |     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 | 
					
						
							|  |  |  |    | 
					
						
							|  |  |  |   def test_index_with_project_and_subprojects | 
					
						
							|  |  |  |     Setting.display_subprojects_issues = 1
 | 
					
						
							|  |  |  |     get :index, :project_id => 1
 | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'index.rhtml' | 
					
						
							|  |  |  |     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 | 
					
						
							|  |  |  |    | 
					
						
							|  |  |  |   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 | 
					
						
							|  |  |  |     assert_template 'index.rhtml' | 
					
						
							|  |  |  |     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 | 
					
						
							|  |  |  |    | 
					
						
							|  |  |  |   def test_index_with_project_and_filter | 
					
						
							|  |  |  |     get :index, :project_id => 1, :set_filter => 1
 | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'index.rhtml' | 
					
						
							|  |  |  |     assert_not_nil assigns(:issues) | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  |    | 
					
						
							|  |  |  |   def test_index_csv_with_project | 
					
						
							|  |  |  |     get :index, :format => 'csv' | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_not_nil assigns(:issues) | 
					
						
							|  |  |  |     assert_equal 'text/csv', @response.content_type | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     get :index, :project_id => 1, :format => 'csv' | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_not_nil assigns(:issues) | 
					
						
							|  |  |  |     assert_equal 'text/csv', @response.content_type | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  |    | 
					
						
							|  |  |  |   def test_index_pdf | 
					
						
							|  |  |  |     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 | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2008-09-10 18:26:13 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   def test_gantt | 
					
						
							|  |  |  |     get :gantt, :project_id => 1
 | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'gantt.rhtml' | 
					
						
							|  |  |  |     assert_not_nil assigns(:gantt) | 
					
						
							|  |  |  |     events = assigns(:gantt).events | 
					
						
							|  |  |  |     assert_not_nil events | 
					
						
							|  |  |  |     # Issue with start and due dates | 
					
						
							|  |  |  |     i = Issue.find(1) | 
					
						
							|  |  |  |     assert_not_nil i.due_date | 
					
						
							|  |  |  |     assert events.include?(Issue.find(1)) | 
					
						
							|  |  |  |     # Issue with without due date but targeted to a version with date | 
					
						
							|  |  |  |     i = Issue.find(2) | 
					
						
							|  |  |  |     assert_nil i.due_date | 
					
						
							|  |  |  |     assert events.include?(i) | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_gantt_export_to_pdf | 
					
						
							|  |  |  |     get :gantt, :project_id => 1, :format => 'pdf' | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'gantt.rfpdf' | 
					
						
							|  |  |  |     assert_equal 'application/pdf', @response.content_type | 
					
						
							|  |  |  |     assert_not_nil assigns(:gantt) | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  |    | 
					
						
							|  |  |  |   if Object.const_defined?(:Magick) | 
					
						
							|  |  |  |     def test_gantt_image | 
					
						
							|  |  |  |       get :gantt, :project_id => 1, :format => 'png' | 
					
						
							|  |  |  |       assert_response :success | 
					
						
							|  |  |  |       assert_equal 'image/png', @response.content_type | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |   else | 
					
						
							|  |  |  |     puts "RMagick not installed. Skipping tests !!!" | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2007-11-05 18:38:42 +00:00
										 |  |  |    | 
					
						
							| 
									
										
										
										
											2008-09-11 17:03:26 +00:00
										 |  |  |   def test_calendar | 
					
						
							|  |  |  |     get :calendar, :project_id => 1
 | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'calendar' | 
					
						
							|  |  |  |     assert_not_nil assigns(:calendar) | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  |    | 
					
						
							| 
									
										
										
										
											2007-11-05 18:38:42 +00:00
										 |  |  |   def test_changes | 
					
						
							|  |  |  |     get :changes, :project_id => 1
 | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							| 
									
										
										
										
											2008-03-05 08:25:22 +00:00
										 |  |  |     assert_not_nil assigns(:journals) | 
					
						
							| 
									
										
										
										
											2007-11-05 18:38:42 +00:00
										 |  |  |     assert_equal 'application/atom+xml', @response.content_type | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2007-12-12 22:22:33 +00:00
										 |  |  |    | 
					
						
							| 
									
										
										
										
											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 | 
					
						
							|  |  |  |     assert_template 'show.rhtml' | 
					
						
							|  |  |  |     assert_not_nil assigns(:issue) | 
					
						
							| 
									
										
										
										
											2008-01-06 17:06:14 +00:00
										 |  |  |     assert_equal Issue.find(1), assigns(:issue) | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  |     # anonymous role is allowed to add a note | 
					
						
							|  |  |  |     assert_tag :tag => 'form', | 
					
						
							|  |  |  |                :descendant => { :tag => 'fieldset', | 
					
						
							|  |  |  |                                 :child => { :tag => 'legend',  | 
					
						
							|  |  |  |                                             :content => /Notes/ } } | 
					
						
							| 
									
										
										
										
											2007-12-12 22:22:33 +00:00
										 |  |  |   end | 
					
						
							|  |  |  |    | 
					
						
							| 
									
										
										
										
											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 | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  |     assert_tag :tag => 'form', | 
					
						
							|  |  |  |                :descendant => { :tag => 'fieldset', | 
					
						
							|  |  |  |                                 :child => { :tag => 'legend',  | 
					
						
							|  |  |  |                                             :content => /Change properties/ } }, | 
					
						
							|  |  |  |                :descendant => { :tag => 'fieldset', | 
					
						
							|  |  |  |                                 :child => { :tag => 'legend',  | 
					
						
							|  |  |  |                                             :content => /Log time/ } }, | 
					
						
							|  |  |  |                :descendant => { :tag => 'fieldset', | 
					
						
							|  |  |  |                                 :child => { :tag => 'legend',  | 
					
						
							|  |  |  |                                             :content => /Notes/ } } | 
					
						
							|  |  |  |   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' | 
					
						
							| 
									
										
										
										
											2008-01-20 21:29:51 +00:00
										 |  |  |      | 
					
						
							| 
									
										
										
										
											2008-06-27 20:13:56 +00:00
										 |  |  |     assert_tag :tag => 'input', :attributes => { :name => 'issue[custom_field_values][2]', | 
					
						
							| 
									
										
										
										
											2008-01-20 21:29:51 +00:00
										 |  |  |                                                  :value => 'Default string' } | 
					
						
							| 
									
										
										
										
											2008-01-20 11:30:57 +00:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_get_new_without_tracker_id | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     get :new, :project_id => 1
 | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'new' | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  |     issue = assigns(:issue) | 
					
						
							|  |  |  |     assert_not_nil issue | 
					
						
							|  |  |  |     assert_equal Project.find(1).trackers.first, issue.tracker | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  |    | 
					
						
							|  |  |  |   def test_update_new_form | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     xhr :post, :new, :project_id => 1, | 
					
						
							|  |  |  |                      :issue => {:tracker_id => 2,  | 
					
						
							|  |  |  |                                 :subject => 'This is the test_new issue', | 
					
						
							|  |  |  |                                 :description => 'This is the description', | 
					
						
							|  |  |  |                                 :priority_id => 5} | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'new' | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  |    | 
					
						
							|  |  |  |   def test_post_new | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     post :new, :project_id => 1,  | 
					
						
							| 
									
										
										
										
											2008-06-30 17:57:53 +00:00
										 |  |  |                :issue => {:tracker_id => 3, | 
					
						
							| 
									
										
										
										
											2008-01-20 11:30:57 +00:00
										 |  |  |                           :subject => 'This is the test_new issue', | 
					
						
							|  |  |  |                           :description => 'This is the description', | 
					
						
							| 
									
										
										
										
											2008-04-30 09:09:28 +00:00
										 |  |  |                           :priority_id => 5, | 
					
						
							| 
									
										
										
										
											2008-06-27 20:13:56 +00:00
										 |  |  |                           :estimated_hours => '', | 
					
						
							|  |  |  |                           :custom_field_values => {'2' => 'Value for field 2'}} | 
					
						
							| 
									
										
										
										
											2008-03-15 11:27:46 +00:00
										 |  |  |     assert_redirected_to 'issues/show' | 
					
						
							| 
									
										
										
										
											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 | 
					
						
							| 
									
										
										
										
											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 | 
					
						
							|  |  |  |    | 
					
						
							| 
									
										
										
										
											2008-04-01 17:48:11 +00:00
										 |  |  |   def test_post_new_without_custom_fields_param | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     post :new, :project_id => 1,  | 
					
						
							|  |  |  |                :issue => {:tracker_id => 1, | 
					
						
							|  |  |  |                           :subject => 'This is the test_new issue', | 
					
						
							|  |  |  |                           :description => 'This is the description', | 
					
						
							|  |  |  |                           :priority_id => 5} | 
					
						
							|  |  |  |     assert_redirected_to 'issues/show' | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  |    | 
					
						
							| 
									
										
										
										
											2008-06-27 20:13:56 +00:00
										 |  |  |   def test_post_new_with_required_custom_field_and_without_custom_fields_param | 
					
						
							|  |  |  |     field = IssueCustomField.find_by_name('Database') | 
					
						
							|  |  |  |     field.update_attribute(:is_required, true) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     post :new, :project_id => 1,  | 
					
						
							|  |  |  |                :issue => {:tracker_id => 1, | 
					
						
							|  |  |  |                           :subject => 'This is the test_new issue', | 
					
						
							|  |  |  |                           :description => 'This is the description', | 
					
						
							|  |  |  |                           :priority_id => 5} | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'new' | 
					
						
							|  |  |  |     issue = assigns(:issue) | 
					
						
							|  |  |  |     assert_not_nil issue | 
					
						
							|  |  |  |     assert_equal 'activerecord_error_invalid', issue.errors.on(:custom_values) | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  |    | 
					
						
							|  |  |  |   def test_post_should_preserve_fields_values_on_validation_failure | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     post :new, :project_id => 1,  | 
					
						
							|  |  |  |                :issue => {:tracker_id => 1, | 
					
						
							|  |  |  |                           :subject => 'This is the test_new issue', | 
					
						
							|  |  |  |                           # empty description | 
					
						
							|  |  |  |                           :description => '', | 
					
						
							|  |  |  |                           :priority_id => 6, | 
					
						
							|  |  |  |                           :custom_field_values => {'1' => 'Oracle', '2' => 'Value for field 2'}} | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'new' | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  |     assert_tag :input, :attributes => { :name => 'issue[subject]', | 
					
						
							|  |  |  |                                         :value => 'This is the test_new issue' } | 
					
						
							|  |  |  |     assert_tag :select, :attributes => { :name => 'issue[priority_id]' }, | 
					
						
							|  |  |  |                         :child => { :tag => 'option', :attributes => { :selected => 'selected', | 
					
						
							|  |  |  |                                                                        :value => '6' }, | 
					
						
							|  |  |  |                                                       :content => 'High' }   | 
					
						
							|  |  |  |     # Custom fields | 
					
						
							|  |  |  |     assert_tag :select, :attributes => { :name => 'issue[custom_field_values][1]' }, | 
					
						
							|  |  |  |                         :child => { :tag => 'option', :attributes => { :selected => 'selected', | 
					
						
							|  |  |  |                                                                        :value => 'Oracle' }, | 
					
						
							|  |  |  |                                                       :content => 'Oracle' }   | 
					
						
							|  |  |  |     assert_tag :input, :attributes => { :name => 'issue[custom_field_values][2]', | 
					
						
							|  |  |  |                                         :value => 'Value for field 2'} | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  |    | 
					
						
							| 
									
										
										
										
											2008-01-20 11:30:57 +00:00
										 |  |  |   def test_copy_issue | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     get :new, :project_id => 1, :copy_from => 1
 | 
					
						
							|  |  |  |     assert_template 'new' | 
					
						
							|  |  |  |     assert_not_nil assigns(:issue) | 
					
						
							|  |  |  |     orig = Issue.find(1) | 
					
						
							|  |  |  |     assert_equal orig.subject, assigns(:issue).subject | 
					
						
							|  |  |  |   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) | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2008-02-10 13:17:41 +00:00
										 |  |  |    | 
					
						
							|  |  |  |   def test_get_edit_with_params | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     get :edit, :id => 1, :issue => { :status_id => 5, :priority_id => 7 } | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'edit' | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  |     issue = assigns(:issue) | 
					
						
							|  |  |  |     assert_not_nil issue | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  |     assert_equal 5, issue.status_id | 
					
						
							|  |  |  |     assert_tag :select, :attributes => { :name => 'issue[status_id]' }, | 
					
						
							|  |  |  |                         :child => { :tag => 'option',  | 
					
						
							|  |  |  |                                     :content => 'Closed', | 
					
						
							|  |  |  |                                     :attributes => { :selected => 'selected' } } | 
					
						
							|  |  |  |                                      | 
					
						
							|  |  |  |     assert_equal 7, issue.priority_id | 
					
						
							|  |  |  |     assert_tag :select, :attributes => { :name => 'issue[priority_id]' }, | 
					
						
							|  |  |  |                         :child => { :tag => 'option',  | 
					
						
							|  |  |  |                                     :content => 'Urgent', | 
					
						
							|  |  |  |                                     :attributes => { :selected => 'selected' } } | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2008-05-30 17:42:25 +00:00
										 |  |  |    | 
					
						
							|  |  |  |   def test_reply_to_issue | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     get :reply, :id => 1
 | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_select_rjs :show, "update" | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_reply_to_note | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     get :reply, :id => 1, :journal_id => 2
 | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_select_rjs :show, "update" | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2007-12-12 22:22:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-06-27 20:13:56 +00:00
										 |  |  |   def test_post_edit_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 | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  |     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' | 
					
						
							|  |  |  |      | 
					
						
							| 
									
										
										
										
											2008-06-27 20:13:56 +00:00
										 |  |  |     assert_difference('Journal.count') do | 
					
						
							|  |  |  |       assert_difference('JournalDetail.count', 2) do | 
					
						
							|  |  |  |         post :edit, :id => 1, :issue => {:subject => new_subject, | 
					
						
							|  |  |  |                                          :priority_id => '6', | 
					
						
							|  |  |  |                                          :category_id => '1' # no change | 
					
						
							|  |  |  |                                         } | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2007-12-12 22:22:33 +00:00
										 |  |  |     assert_redirected_to 'issues/show/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 | 
					
						
							| 
									
										
										
										
											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 | 
					
						
							|  |  |  |    | 
					
						
							| 
									
										
										
										
											2008-06-27 20:13:56 +00:00
										 |  |  |   def test_post_edit_with_custom_field_change | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     issue = Issue.find(1) | 
					
						
							|  |  |  |     assert_equal '125', issue.custom_value_for(2).value | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  |     assert_difference('Journal.count') do | 
					
						
							|  |  |  |       assert_difference('JournalDetail.count', 3) do | 
					
						
							|  |  |  |         post :edit, :id => 1, :issue => {:subject => 'Custom field change', | 
					
						
							|  |  |  |                                          :priority_id => '6', | 
					
						
							|  |  |  |                                          :category_id => '1', # no change | 
					
						
							|  |  |  |                                          :custom_field_values => { '2' => 'New custom value' } | 
					
						
							|  |  |  |                                         } | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |     assert_redirected_to 'issues/show/1' | 
					
						
							|  |  |  |     issue.reload | 
					
						
							|  |  |  |     assert_equal 'New custom value', issue.custom_value_for(2).value | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  |     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 | 
					
						
							|  |  |  |    | 
					
						
							| 
									
										
										
										
											2008-02-09 16:11:18 +00:00
										 |  |  |   def test_post_edit_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 | 
					
						
							|  |  |  |       post :edit, | 
					
						
							|  |  |  |            :id => 1, | 
					
						
							|  |  |  |            :issue => { :status_id => 2, :assigned_to_id => 3 }, | 
					
						
							|  |  |  |            :notes => 'Assigned to dlopper', | 
					
						
							|  |  |  |            :time_entry => { :hours => '', :comments => '', :activity_id => Enumeration.get_values('ACTI').first } | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2007-12-12 22:22:33 +00:00
										 |  |  |     assert_redirected_to 'issues/show/1' | 
					
						
							|  |  |  |     issue.reload | 
					
						
							|  |  |  |     assert_equal 2, issue.status_id | 
					
						
							| 
									
										
										
										
											2008-01-06 17:06:14 +00:00
										 |  |  |     j = issue.journals.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 | 
					
						
							| 
									
										
										
										
											2008-01-06 17:06:14 +00:00
										 |  |  |      | 
					
						
							|  |  |  |     mail = ActionMailer::Base.deliveries.last | 
					
						
							|  |  |  |     assert mail.body.include?("Status changed from New to Assigned") | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  |    | 
					
						
							| 
									
										
										
										
											2008-02-09 16:11:18 +00:00
										 |  |  |   def test_post_edit_with_note_only | 
					
						
							| 
									
										
										
										
											2008-01-06 17:06:14 +00:00
										 |  |  |     notes = 'Note added by IssuesControllerTest#test_update_with_note_only' | 
					
						
							|  |  |  |     # anonymous user | 
					
						
							| 
									
										
										
										
											2008-02-09 16:11:18 +00:00
										 |  |  |     post :edit, | 
					
						
							| 
									
										
										
										
											2008-01-06 17:06:14 +00:00
										 |  |  |          :id => 1, | 
					
						
							|  |  |  |          :notes => notes | 
					
						
							|  |  |  |     assert_redirected_to 'issues/show/1' | 
					
						
							|  |  |  |     j = Issue.find(1).journals.find(:first, :order => 'id DESC') | 
					
						
							|  |  |  |     assert_equal notes, j.notes | 
					
						
							|  |  |  |     assert_equal 0, j.details.size | 
					
						
							|  |  |  |     assert_equal User.anonymous, j.user | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  |     mail = ActionMailer::Base.deliveries.last | 
					
						
							|  |  |  |     assert mail.body.include?(notes) | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  |    | 
					
						
							| 
									
										
										
										
											2008-02-09 16:11:18 +00:00
										 |  |  |   def test_post_edit_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 | 
					
						
							|  |  |  |       post :edit, | 
					
						
							|  |  |  |            :id => 1, | 
					
						
							|  |  |  |            :notes => '2.5 hours added', | 
					
						
							|  |  |  |            :time_entry => { :hours => '2.5', :comments => '', :activity_id => Enumeration.get_values('ACTI').first } | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2008-01-06 17:06:14 +00:00
										 |  |  |     assert_redirected_to 'issues/show/1' | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  |     issue = Issue.find(1) | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  |     j = issue.journals.find(:first, :order => 'id DESC') | 
					
						
							|  |  |  |     assert_equal '2.5 hours added', j.notes | 
					
						
							|  |  |  |     assert_equal 0, j.details.size | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  |     t = issue.time_entries.find(:first, :order => 'id DESC') | 
					
						
							|  |  |  |     assert_not_nil t | 
					
						
							|  |  |  |     assert_equal 2.5, t.hours | 
					
						
							|  |  |  |     assert_equal spent_hours_before + 2.5, issue.spent_hours | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  |    | 
					
						
							| 
									
										
										
										
											2008-02-09 16:11:18 +00:00
										 |  |  |   def test_post_edit_with_attachment_only | 
					
						
							| 
									
										
										
										
											2008-06-09 18:40:59 +00:00
										 |  |  |     set_tmp_attachments_directory | 
					
						
							|  |  |  |      | 
					
						
							| 
									
										
										
										
											2008-01-06 17:06:14 +00:00
										 |  |  |     # anonymous user | 
					
						
							| 
									
										
										
										
											2008-02-09 16:11:18 +00:00
										 |  |  |     post :edit, | 
					
						
							| 
									
										
										
										
											2008-01-06 17:06:14 +00:00
										 |  |  |          :id => 1, | 
					
						
							|  |  |  |          :notes => '', | 
					
						
							| 
									
										
										
										
											2008-02-29 19:46:58 +00:00
										 |  |  |          :attachments => {'1' => {'file' => test_uploaded_file('testfile.txt', 'text/plain')}} | 
					
						
							| 
									
										
										
										
											2008-01-06 17:06:14 +00:00
										 |  |  |     assert_redirected_to 'issues/show/1' | 
					
						
							|  |  |  |     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 | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  |     mail = ActionMailer::Base.deliveries.last | 
					
						
							|  |  |  |     assert mail.body.include?('testfile.txt') | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  |    | 
					
						
							| 
									
										
										
										
											2008-02-09 16:11:18 +00:00
										 |  |  |   def test_post_edit_with_no_change | 
					
						
							| 
									
										
										
										
											2008-01-06 17:06:14 +00:00
										 |  |  |     issue = Issue.find(1) | 
					
						
							|  |  |  |     issue.journals.clear | 
					
						
							|  |  |  |     ActionMailer::Base.deliveries.clear | 
					
						
							|  |  |  |      | 
					
						
							| 
									
										
										
										
											2008-02-09 16:11:18 +00:00
										 |  |  |     post :edit, | 
					
						
							| 
									
										
										
										
											2008-01-06 17:06:14 +00:00
										 |  |  |          :id => 1, | 
					
						
							|  |  |  |          :notes => '' | 
					
						
							|  |  |  |     assert_redirected_to 'issues/show/1' | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  |     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 | 
					
						
							| 
									
										
										
										
											2008-02-10 13:17:41 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   def test_bulk_edit | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     # update issues priority | 
					
						
							|  |  |  |     post :bulk_edit, :ids => [1, 2], :priority_id => 7, :notes => 'Bulk editing', :assigned_to_id => '' | 
					
						
							|  |  |  |     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} | 
					
						
							|  |  |  |     assert_equal 'Bulk editing', Issue.find(1).journals.find(:first, :order => 'created_on DESC').notes | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-03-26 22:22:45 +00:00
										 |  |  |   def test_bulk_unassign | 
					
						
							|  |  |  |     assert_not_nil Issue.find(2).assigned_to | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     # unassign issues | 
					
						
							|  |  |  |     post :bulk_edit, :ids => [1, 2], :notes => 'Bulk unassigning', :assigned_to_id => 'none' | 
					
						
							|  |  |  |     assert_response 302
 | 
					
						
							|  |  |  |     # check that the issues were updated | 
					
						
							|  |  |  |     assert_nil Issue.find(2).assigned_to | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  |    | 
					
						
							| 
									
										
										
										
											2008-02-10 13:17:41 +00:00
										 |  |  |   def test_move_one_issue_to_another_project | 
					
						
							|  |  |  |     @request.session[:user_id] = 1
 | 
					
						
							|  |  |  |     post :move, :id => 1, :new_project_id => 2
 | 
					
						
							|  |  |  |     assert_redirected_to 'projects/ecookbook/issues' | 
					
						
							|  |  |  |     assert_equal 2, Issue.find(1).project_id | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_bulk_move_to_another_project | 
					
						
							|  |  |  |     @request.session[:user_id] = 1
 | 
					
						
							|  |  |  |     post :move, :ids => [1, 2], :new_project_id => 2
 | 
					
						
							|  |  |  |     assert_redirected_to 'projects/ecookbook/issues' | 
					
						
							|  |  |  |     # 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_move_to_another_tracker | 
					
						
							|  |  |  |     @request.session[:user_id] = 1
 | 
					
						
							|  |  |  |     post :move, :ids => [1, 2], :new_tracker_id => 2
 | 
					
						
							|  |  |  |     assert_redirected_to 'projects/ecookbook/issues' | 
					
						
							|  |  |  |     assert_equal 2, Issue.find(1).tracker_id | 
					
						
							|  |  |  |     assert_equal 2, Issue.find(2).tracker_id | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2007-12-12 22:22:33 +00:00
										 |  |  |    | 
					
						
							| 
									
										
										
										
											2008-02-10 13:17:41 +00:00
										 |  |  |   def test_context_menu_one_issue | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     get :context_menu, :ids => [1] | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'context_menu' | 
					
						
							|  |  |  |     assert_tag :tag => 'a', :content => 'Edit', | 
					
						
							|  |  |  |                             :attributes => { :href => '/issues/edit/1', | 
					
						
							|  |  |  |                                              :class => 'icon-edit' } | 
					
						
							|  |  |  |     assert_tag :tag => 'a', :content => 'Closed', | 
					
						
							|  |  |  |                             :attributes => { :href => '/issues/edit/1?issue%5Bstatus_id%5D=5', | 
					
						
							|  |  |  |                                              :class => '' } | 
					
						
							|  |  |  |     assert_tag :tag => 'a', :content => 'Immediate', | 
					
						
							| 
									
										
										
										
											2008-08-26 10:34:26 +00:00
										 |  |  |                             :attributes => { :href => '/issues/bulk_edit?ids%5B%5D=1&priority_id=8', | 
					
						
							| 
									
										
										
										
											2008-02-10 13:17:41 +00:00
										 |  |  |                                              :class => '' } | 
					
						
							|  |  |  |     assert_tag :tag => 'a', :content => 'Dave Lopper', | 
					
						
							| 
									
										
										
										
											2008-08-26 10:34:26 +00:00
										 |  |  |                             :attributes => { :href => '/issues/bulk_edit?assigned_to_id=3&ids%5B%5D=1', | 
					
						
							| 
									
										
										
										
											2008-02-10 13:17:41 +00:00
										 |  |  |                                              :class => '' } | 
					
						
							|  |  |  |     assert_tag :tag => 'a', :content => 'Copy', | 
					
						
							|  |  |  |                             :attributes => { :href => '/projects/ecookbook/issues/new?copy_from=1', | 
					
						
							|  |  |  |                                              :class => 'icon-copy' } | 
					
						
							|  |  |  |     assert_tag :tag => 'a', :content => 'Move', | 
					
						
							|  |  |  |                             :attributes => { :href => '/issues/move?ids%5B%5D=1', | 
					
						
							|  |  |  |                                              :class => 'icon-move' } | 
					
						
							|  |  |  |     assert_tag :tag => 'a', :content => 'Delete', | 
					
						
							|  |  |  |                             :attributes => { :href => '/issues/destroy?ids%5B%5D=1', | 
					
						
							|  |  |  |                                              :class => 'icon-del' } | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_context_menu_one_issue_by_anonymous | 
					
						
							|  |  |  |     get :context_menu, :ids => [1] | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'context_menu' | 
					
						
							|  |  |  |     assert_tag :tag => 'a', :content => 'Delete', | 
					
						
							|  |  |  |                             :attributes => { :href => '#', | 
					
						
							|  |  |  |                                              :class => 'icon-del disabled' } | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  |    | 
					
						
							|  |  |  |   def test_context_menu_multiple_issues_of_same_project | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     get :context_menu, :ids => [1, 2] | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'context_menu' | 
					
						
							|  |  |  |     assert_tag :tag => 'a', :content => 'Edit', | 
					
						
							|  |  |  |                             :attributes => { :href => '/issues/bulk_edit?ids%5B%5D=1&ids%5B%5D=2', | 
					
						
							|  |  |  |                                              :class => 'icon-edit' } | 
					
						
							| 
									
										
										
										
											2008-08-26 10:34:26 +00:00
										 |  |  |     assert_tag :tag => 'a', :content => 'Immediate', | 
					
						
							|  |  |  |                             :attributes => { :href => '/issues/bulk_edit?ids%5B%5D=1&ids%5B%5D=2&priority_id=8', | 
					
						
							|  |  |  |                                              :class => '' } | 
					
						
							|  |  |  |     assert_tag :tag => 'a', :content => 'Dave Lopper', | 
					
						
							|  |  |  |                             :attributes => { :href => '/issues/bulk_edit?assigned_to_id=3&ids%5B%5D=1&ids%5B%5D=2', | 
					
						
							|  |  |  |                                              :class => '' } | 
					
						
							| 
									
										
										
										
											2008-02-10 13:17:41 +00:00
										 |  |  |     assert_tag :tag => 'a', :content => 'Move', | 
					
						
							|  |  |  |                             :attributes => { :href => '/issues/move?ids%5B%5D=1&ids%5B%5D=2', | 
					
						
							|  |  |  |                                              :class => 'icon-move' } | 
					
						
							|  |  |  |     assert_tag :tag => 'a', :content => 'Delete', | 
					
						
							|  |  |  |                             :attributes => { :href => '/issues/destroy?ids%5B%5D=1&ids%5B%5D=2', | 
					
						
							|  |  |  |                                              :class => 'icon-del' } | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_context_menu_multiple_issues_of_different_project | 
					
						
							| 
									
										
										
										
											2007-12-12 22:22:33 +00:00
										 |  |  |     @request.session[:user_id] = 2
 | 
					
						
							| 
									
										
										
										
											2008-02-10 13:17:41 +00:00
										 |  |  |     get :context_menu, :ids => [1, 2, 4] | 
					
						
							| 
									
										
										
										
											2007-12-12 22:22:33 +00:00
										 |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'context_menu' | 
					
						
							| 
									
										
										
										
											2008-02-10 13:17:41 +00:00
										 |  |  |     assert_tag :tag => 'a', :content => 'Delete', | 
					
						
							|  |  |  |                             :attributes => { :href => '#', | 
					
						
							|  |  |  |                                              :class => 'icon-del disabled' } | 
					
						
							| 
									
										
										
										
											2007-12-12 22:22:33 +00:00
										 |  |  |   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
 | 
					
						
							| 
									
										
										
										
											2008-04-09 17:45:39 +00:00
										 |  |  |     post :destroy, :id => 2
 | 
					
						
							| 
									
										
										
										
											2007-12-17 21:00:56 +00:00
										 |  |  |     assert_redirected_to 'projects/ecookbook/issues' | 
					
						
							| 
									
										
										
										
											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
 | 
					
						
							|  |  |  |     post :destroy, :ids => [1, 3] | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'destroy' | 
					
						
							|  |  |  |     assert_not_nil assigns(:hours) | 
					
						
							|  |  |  |     assert Issue.find_by_id(1) && Issue.find_by_id(3) | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_destroy_issues_and_destroy_time_entries | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     post :destroy, :ids => [1, 3], :todo => 'destroy' | 
					
						
							|  |  |  |     assert_redirected_to 'projects/ecookbook/issues' | 
					
						
							|  |  |  |     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
 | 
					
						
							|  |  |  |     post :destroy, :ids => [1, 3], :todo => 'nullify' | 
					
						
							|  |  |  |     assert_redirected_to 'projects/ecookbook/issues' | 
					
						
							|  |  |  |     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 | 
					
						
							|  |  |  |    | 
					
						
							|  |  |  |   def test_destroy_issues_and_reassign_time_entries_to_another_issue | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     post :destroy, :ids => [1, 3], :todo => 'reassign', :reassign_to_id => 2
 | 
					
						
							|  |  |  |     assert_redirected_to 'projects/ecookbook/issues' | 
					
						
							|  |  |  |     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 | 
					
						
							|  |  |  |    | 
					
						
							| 
									
										
										
										
											2007-12-12 22:22:33 +00:00
										 |  |  |   def test_destroy_attachment | 
					
						
							|  |  |  |     issue = Issue.find(3) | 
					
						
							|  |  |  |     a = issue.attachments.size | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     post :destroy_attachment, :id => 3, :attachment_id => 1
 | 
					
						
							|  |  |  |     assert_redirected_to 'issues/show/3' | 
					
						
							|  |  |  |     assert_nil Attachment.find_by_id(1) | 
					
						
							|  |  |  |     issue.reload | 
					
						
							|  |  |  |     assert_equal((a-1), issue.attachments.size) | 
					
						
							|  |  |  |     j = issue.journals.find(:first, :order => 'created_on DESC') | 
					
						
							|  |  |  |     assert_equal 'attachment', j.details.first.property | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2007-11-05 18:38:42 +00:00
										 |  |  | end |