| 
									
										
										
										
											2019-03-21 03:27:53 +00:00
										 |  |  | # frozen_string_literal: true | 
					
						
							| 
									
										
										
										
											2019-03-15 01:32:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-20 11:24:41 +00:00
										 |  |  | # Redmine - project management software | 
					
						
							| 
									
										
										
										
											2019-05-25 07:36:06 +00:00
										 |  |  | # Copyright (C) 2006-2019  Jean-Philippe Lang | 
					
						
							| 
									
										
										
										
											2007-11-20 12:07:28 +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-25 09:58:02 +00:00
										 |  |  | # | 
					
						
							| 
									
										
										
										
											2007-11-20 12:07:28 +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-25 09:58:02 +00:00
										 |  |  | # | 
					
						
							| 
									
										
										
										
											2007-11-20 12:07:28 +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-20 12:07:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-13 17:14:35 +00:00
										 |  |  | class ChangesetTest < ActiveSupport::TestCase | 
					
						
							| 
									
										
										
										
											2011-04-22 07:13:56 +00:00
										 |  |  |   fixtures :projects, :repositories, | 
					
						
							|  |  |  |            :issues, :issue_statuses, :issue_categories, | 
					
						
							| 
									
										
										
										
											2015-04-30 05:55:05 +00:00
										 |  |  |            :journals, :journal_details, | 
					
						
							|  |  |  |            :workflows, | 
					
						
							| 
									
										
										
										
											2011-05-25 09:58:02 +00:00
										 |  |  |            :changesets, :changes, | 
					
						
							| 
									
										
										
										
											2011-04-22 07:13:56 +00:00
										 |  |  |            :enumerations, | 
					
						
							|  |  |  |            :custom_fields, :custom_values, | 
					
						
							| 
									
										
										
										
											2014-07-16 03:37:31 +00:00
										 |  |  |            :users, :members, :member_roles, | 
					
						
							| 
									
										
										
										
											2015-01-21 15:03:14 +00:00
										 |  |  |            :email_addresses, | 
					
						
							| 
									
										
										
										
											2014-07-16 03:37:31 +00:00
										 |  |  |            :trackers, :projects_trackers, | 
					
						
							| 
									
										
										
										
											2011-04-22 07:13:56 +00:00
										 |  |  |            :enabled_modules, :roles | 
					
						
							| 
									
										
										
										
											2007-11-20 12:07:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-16 17:23:31 +00:00
										 |  |  |   def setup | 
					
						
							|  |  |  |     User.current = nil | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-20 12:07:28 +00:00
										 |  |  |   def test_ref_keywords_any | 
					
						
							| 
									
										
										
										
											2009-03-28 00:38:57 +00:00
										 |  |  |     ActionMailer::Base.deliveries.clear | 
					
						
							| 
									
										
										
										
											2007-11-20 12:07:28 +00:00
										 |  |  |     Setting.commit_ref_keywords = '*' | 
					
						
							| 
									
										
										
										
											2013-10-13 07:37:49 +00:00
										 |  |  |     Setting.commit_update_keywords = [{'keywords' => 'fixes , closes', 'status_id' => '5', 'done_ratio' => '90'}] | 
					
						
							| 
									
										
										
										
											2011-05-05 04:23:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-16 01:01:58 +00:00
										 |  |  |     c = Changeset.new(:repository   => Project.find(1).repository, | 
					
						
							| 
									
										
										
										
											2007-11-20 12:07:28 +00:00
										 |  |  |                       :committed_on => Time.now, | 
					
						
							| 
									
										
										
										
											2011-08-29 08:14:46 +00:00
										 |  |  |                       :comments     => 'New commit (#2). Fixes #1', | 
					
						
							|  |  |  |                       :revision     => '12345') | 
					
						
							| 
									
										
										
										
											2011-08-29 10:08:51 +00:00
										 |  |  |     assert c.save | 
					
						
							| 
									
										
										
										
											2007-11-20 12:07:28 +00:00
										 |  |  |     assert_equal [1, 2], c.issue_ids.sort | 
					
						
							|  |  |  |     fixed = Issue.find(1) | 
					
						
							|  |  |  |     assert fixed.closed? | 
					
						
							|  |  |  |     assert_equal 90, fixed.done_ratio | 
					
						
							| 
									
										
										
										
											2018-10-06 13:08:52 +00:00
										 |  |  |     assert_equal 2, ActionMailer::Base.deliveries.size | 
					
						
							| 
									
										
										
										
											2007-11-20 12:07:28 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-04-16 01:01:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-05 11:45:09 +00:00
										 |  |  |   def test_ref_keywords | 
					
						
							|  |  |  |     Setting.commit_ref_keywords = 'refs' | 
					
						
							| 
									
										
										
										
											2013-10-05 09:41:11 +00:00
										 |  |  |     Setting.commit_update_keywords = '' | 
					
						
							| 
									
										
										
										
											2011-04-16 01:01:58 +00:00
										 |  |  |     c = Changeset.new(:repository   => Project.find(1).repository, | 
					
						
							| 
									
										
										
										
											2010-12-05 11:45:09 +00:00
										 |  |  |                       :committed_on => Time.now, | 
					
						
							| 
									
										
										
										
											2011-08-29 12:03:34 +00:00
										 |  |  |                       :comments     => 'Ignores #2. Refs #1', | 
					
						
							|  |  |  |                       :revision     => '12345') | 
					
						
							| 
									
										
										
										
											2011-08-29 12:04:37 +00:00
										 |  |  |     assert c.save | 
					
						
							| 
									
										
										
										
											2010-12-05 11:45:09 +00:00
										 |  |  |     assert_equal [1], c.issue_ids.sort | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-05 04:23:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-05 11:45:09 +00:00
										 |  |  |   def test_ref_keywords_any_only | 
					
						
							|  |  |  |     Setting.commit_ref_keywords = '*' | 
					
						
							| 
									
										
										
										
											2013-10-05 09:41:11 +00:00
										 |  |  |     Setting.commit_update_keywords = '' | 
					
						
							| 
									
										
										
										
											2011-04-16 01:01:58 +00:00
										 |  |  |     c = Changeset.new(:repository   => Project.find(1).repository, | 
					
						
							| 
									
										
										
										
											2010-12-05 11:45:09 +00:00
										 |  |  |                       :committed_on => Time.now, | 
					
						
							| 
									
										
										
										
											2011-08-29 12:05:36 +00:00
										 |  |  |                       :comments     => 'Ignores #2. Refs #1', | 
					
						
							|  |  |  |                       :revision     => '12345') | 
					
						
							| 
									
										
										
										
											2011-08-29 12:06:23 +00:00
										 |  |  |     assert c.save | 
					
						
							| 
									
										
										
										
											2010-12-05 11:45:09 +00:00
										 |  |  |     assert_equal [1, 2], c.issue_ids.sort | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-05 04:23:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-05 11:45:09 +00:00
										 |  |  |   def test_ref_keywords_any_with_timelog | 
					
						
							|  |  |  |     Setting.commit_ref_keywords = '*' | 
					
						
							|  |  |  |     Setting.commit_logtime_enabled = '1' | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-26 14:46:19 +00:00
										 |  |  |     { | 
					
						
							|  |  |  |       '2' => 2.0, | 
					
						
							|  |  |  |       '2h' => 2.0, | 
					
						
							|  |  |  |       '2hours' => 2.0, | 
					
						
							|  |  |  |       '15m' => 0.25, | 
					
						
							|  |  |  |       '15min' => 0.25, | 
					
						
							|  |  |  |       '3h15' => 3.25, | 
					
						
							|  |  |  |       '3h15m' => 3.25, | 
					
						
							|  |  |  |       '3h15min' => 3.25, | 
					
						
							|  |  |  |       '3:15' => 3.25, | 
					
						
							|  |  |  |       '3.25' => 3.25, | 
					
						
							|  |  |  |       '3.25h' => 3.25, | 
					
						
							|  |  |  |       '3,25' => 3.25, | 
					
						
							|  |  |  |       '3,25h' => 3.25, | 
					
						
							|  |  |  |     }.each do |syntax, expected_hours| | 
					
						
							| 
									
										
										
										
											2011-04-16 01:01:58 +00:00
										 |  |  |       c = Changeset.new(:repository   => Project.find(1).repository, | 
					
						
							| 
									
										
										
										
											2011-02-26 14:46:19 +00:00
										 |  |  |                         :committed_on => 24.hours.ago, | 
					
						
							| 
									
										
										
										
											2011-04-16 01:01:58 +00:00
										 |  |  |                         :comments     => "Worked on this issue #1 @#{syntax}", | 
					
						
							|  |  |  |                         :revision     => '520', | 
					
						
							|  |  |  |                         :user         => User.find(2)) | 
					
						
							| 
									
										
										
										
											2011-02-26 14:46:19 +00:00
										 |  |  |       assert_difference 'TimeEntry.count' do | 
					
						
							|  |  |  |         c.scan_comment_for_issue_ids | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |       assert_equal [1], c.issue_ids.sort | 
					
						
							| 
									
										
										
										
											2011-04-16 01:01:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-08 05:02:14 +00:00
										 |  |  |       time = TimeEntry.order('id desc').first | 
					
						
							| 
									
										
										
										
											2011-02-26 14:46:19 +00:00
										 |  |  |       assert_equal 1, time.issue_id | 
					
						
							|  |  |  |       assert_equal 1, time.project_id | 
					
						
							|  |  |  |       assert_equal 2, time.user_id | 
					
						
							| 
									
										
										
										
											2011-04-09 05:40:25 +00:00
										 |  |  |       assert_equal expected_hours, time.hours, | 
					
						
							|  |  |  |           "@#{syntax} should be logged as #{expected_hours} hours but was #{time.hours}" | 
					
						
							| 
									
										
										
										
											2011-02-26 14:46:19 +00:00
										 |  |  |       assert_equal Date.yesterday, time.spent_on | 
					
						
							|  |  |  |       assert time.activity.is_default? | 
					
						
							| 
									
										
										
										
											2011-04-09 05:40:25 +00:00
										 |  |  |       assert time.comments.include?('r520'), | 
					
						
							|  |  |  |             "r520 was expected in time_entry comments: #{time.comments}" | 
					
						
							| 
									
										
										
										
											2010-12-05 11:45:09 +00:00
										 |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-04-16 01:01:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-05 11:45:09 +00:00
										 |  |  |   def test_ref_keywords_closing_with_timelog | 
					
						
							|  |  |  |     Setting.commit_ref_keywords = '*' | 
					
						
							| 
									
										
										
										
											2014-01-09 00:06:06 +00:00
										 |  |  |     Setting.commit_update_keywords = [{'keywords' => 'fixes , closes', | 
					
						
							|  |  |  |                                        'status_id' => IssueStatus.where(:is_closed => true).first.id.to_s}] | 
					
						
							| 
									
										
										
										
											2010-12-05 11:45:09 +00:00
										 |  |  |     Setting.commit_logtime_enabled = '1' | 
					
						
							| 
									
										
										
										
											2011-05-25 09:58:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-16 01:01:58 +00:00
										 |  |  |     c = Changeset.new(:repository   => Project.find(1).repository, | 
					
						
							| 
									
										
										
										
											2010-12-05 11:45:09 +00:00
										 |  |  |                       :committed_on => Time.now, | 
					
						
							| 
									
										
										
										
											2011-04-16 01:01:58 +00:00
										 |  |  |                       :comments     => 'This is a comment. Fixes #1 @4.5, #2 @1', | 
					
						
							|  |  |  |                       :user         => User.find(2)) | 
					
						
							| 
									
										
										
										
											2010-12-05 11:45:09 +00:00
										 |  |  |     assert_difference 'TimeEntry.count', 2 do | 
					
						
							|  |  |  |       c.scan_comment_for_issue_ids | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2011-04-16 01:01:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-05 11:45:09 +00:00
										 |  |  |     assert_equal [1, 2], c.issue_ids.sort | 
					
						
							|  |  |  |     assert Issue.find(1).closed? | 
					
						
							|  |  |  |     assert Issue.find(2).closed? | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-09 00:04:56 +00:00
										 |  |  |     times = TimeEntry.order('id desc').limit(2) | 
					
						
							| 
									
										
										
										
											2010-12-05 11:45:09 +00:00
										 |  |  |     assert_equal [1, 2], times.collect(&:issue_id).sort | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-04-16 01:01:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-25 11:43:20 +00:00
										 |  |  |   def test_ref_keywords_any_line_start | 
					
						
							|  |  |  |     Setting.commit_ref_keywords = '*' | 
					
						
							| 
									
										
										
										
											2011-04-16 01:01:58 +00:00
										 |  |  |     c = Changeset.new(:repository   => Project.find(1).repository, | 
					
						
							| 
									
										
										
										
											2008-05-25 11:43:20 +00:00
										 |  |  |                       :committed_on => Time.now, | 
					
						
							| 
									
										
										
										
											2011-08-29 12:07:17 +00:00
										 |  |  |                       :comments     => '#1 is the reason of this commit', | 
					
						
							|  |  |  |                       :revision     => '12345') | 
					
						
							| 
									
										
										
										
											2011-08-29 12:08:04 +00:00
										 |  |  |     assert c.save | 
					
						
							| 
									
										
										
										
											2008-05-25 11:43:20 +00:00
										 |  |  |     assert_equal [1], c.issue_ids.sort | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2007-12-01 17:15:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-03 01:21:11 +00:00
										 |  |  |   def test_ref_keywords_allow_brackets_around_a_issue_number | 
					
						
							|  |  |  |     Setting.commit_ref_keywords = '*' | 
					
						
							| 
									
										
										
										
											2011-04-16 01:01:58 +00:00
										 |  |  |     c = Changeset.new(:repository   => Project.find(1).repository, | 
					
						
							| 
									
										
										
										
											2009-09-03 01:21:11 +00:00
										 |  |  |                       :committed_on => Time.now, | 
					
						
							| 
									
										
										
										
											2011-08-29 12:09:04 +00:00
										 |  |  |                       :comments     => '[#1] Worked on this issue', | 
					
						
							|  |  |  |                       :revision     => '12345') | 
					
						
							| 
									
										
										
										
											2011-08-29 12:09:49 +00:00
										 |  |  |     assert c.save | 
					
						
							| 
									
										
										
										
											2009-09-03 01:21:11 +00:00
										 |  |  |     assert_equal [1], c.issue_ids.sort | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_ref_keywords_allow_brackets_around_multiple_issue_numbers | 
					
						
							|  |  |  |     Setting.commit_ref_keywords = '*' | 
					
						
							| 
									
										
										
										
											2011-04-16 01:01:58 +00:00
										 |  |  |     c = Changeset.new(:repository   => Project.find(1).repository, | 
					
						
							| 
									
										
										
										
											2009-09-03 01:21:11 +00:00
										 |  |  |                       :committed_on => Time.now, | 
					
						
							| 
									
										
										
										
											2011-08-29 12:37:37 +00:00
										 |  |  |                       :comments     => '[#1 #2, #3] Worked on these', | 
					
						
							|  |  |  |                       :revision     => '12345') | 
					
						
							| 
									
										
										
										
											2011-08-29 12:38:18 +00:00
										 |  |  |     assert c.save | 
					
						
							| 
									
										
										
										
											2009-09-03 01:21:11 +00:00
										 |  |  |     assert_equal [1,2,3], c.issue_ids.sort | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-04-16 01:01:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-29 13:47:28 +00:00
										 |  |  |   def test_ref_keywords_with_large_number_should_not_error | 
					
						
							|  |  |  |     Setting.commit_ref_keywords = '*' | 
					
						
							|  |  |  |     c = Changeset.new(:repository   => Project.find(1).repository, | 
					
						
							|  |  |  |                       :committed_on => Time.now, | 
					
						
							|  |  |  |                       :comments     => 'Out of range #2010021810000121', | 
					
						
							|  |  |  |                       :revision     => '12345') | 
					
						
							|  |  |  |     assert_nothing_raised do | 
					
						
							|  |  |  |       assert c.save | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |     assert_equal [], c.issue_ids.sort | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-12 09:16:54 +00:00
										 |  |  |   def test_update_keywords_with_changes_should_create_journal | 
					
						
							|  |  |  |     issue = Issue.generate!(:project_id => 1, :status_id => 1) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     with_settings :commit_update_keywords => [{'keywords' => 'fixes', 'status_id' => '3'}] do | 
					
						
							|  |  |  |       assert_difference 'Journal.count' do | 
					
						
							|  |  |  |         c = Changeset.generate!(:repository => Project.find(1).repository,:comments => "Fixes ##{issue.id}") | 
					
						
							|  |  |  |         assert_include c.id, issue.reload.changeset_ids | 
					
						
							|  |  |  |         journal = Journal.order('id DESC').first | 
					
						
							|  |  |  |         assert_equal 1, journal.details.count | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_update_keywords_without_change_should_not_create_journal | 
					
						
							|  |  |  |     issue = Issue.generate!(:project_id => 1, :status_id => 3) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     with_settings :commit_update_keywords => [{'keywords' => 'fixes', 'status_id' => '3'}] do | 
					
						
							|  |  |  |       assert_no_difference 'Journal.count' do | 
					
						
							|  |  |  |         c = Changeset.generate!(:repository => Project.find(1).repository,:comments => "Fixes ##{issue.id}") | 
					
						
							|  |  |  |         assert_include c.id, issue.reload.changeset_ids | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-05 09:41:11 +00:00
										 |  |  |   def test_update_keywords_with_multiple_rules | 
					
						
							| 
									
										
										
										
											2013-10-13 07:37:49 +00:00
										 |  |  |     with_settings :commit_update_keywords => [ | 
					
						
							|  |  |  |       {'keywords' => 'fixes, closes', 'status_id' => '5'}, | 
					
						
							|  |  |  |       {'keywords' => 'resolves', 'status_id' => '3'} | 
					
						
							|  |  |  |     ] do | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       issue1 = Issue.generate! | 
					
						
							|  |  |  |       issue2 = Issue.generate! | 
					
						
							|  |  |  |       Changeset.generate!(:comments => "Closes ##{issue1.id}\nResolves ##{issue2.id}") | 
					
						
							|  |  |  |       assert_equal 5, issue1.reload.status_id | 
					
						
							|  |  |  |       assert_equal 3, issue2.reload.status_id | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2013-10-05 09:41:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-08 21:41:02 +00:00
										 |  |  |   def test_update_keywords_with_multiple_rules_for_the_same_keyword_should_match_tracker | 
					
						
							| 
									
										
										
										
											2013-10-13 07:37:49 +00:00
										 |  |  |     with_settings :commit_update_keywords => [ | 
					
						
							|  |  |  |       {'keywords' => 'fixes', 'status_id' => '5', 'if_tracker_id' => '2'}, | 
					
						
							|  |  |  |       {'keywords' => 'fixes', 'status_id' => '3', 'if_tracker_id' => ''} | 
					
						
							|  |  |  |     ] do | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       issue1 = Issue.generate!(:tracker_id => 2) | 
					
						
							|  |  |  |       issue2 = Issue.generate! | 
					
						
							|  |  |  |       Changeset.generate!(:comments => "Fixes ##{issue1.id}, ##{issue2.id}") | 
					
						
							|  |  |  |       assert_equal 5, issue1.reload.status_id | 
					
						
							|  |  |  |       assert_equal 3, issue2.reload.status_id | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-08 21:41:02 +00:00
										 |  |  |   def test_update_keywords_with_multiple_rules_for_the_same_tracker_should_match_keyword | 
					
						
							|  |  |  |     with_settings :commit_update_keywords => [ | 
					
						
							|  |  |  |       {'keywords' => 'Fixes, Closes', 'status_id' => '5', 'done_ratio' => '100', 'if_tracker_id' => '2'}, | 
					
						
							|  |  |  |       {'keywords' => 'Testing',       'status_id' => '3', 'done_ratio' => '90',  'if_tracker_id' => '2'} | 
					
						
							|  |  |  |     ] do | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       issue1 = Issue.generate!(:tracker_id => 2) | 
					
						
							|  |  |  |       issue2 = Issue.generate!(:tracker_id => 2) | 
					
						
							|  |  |  |       Changeset.generate!(:comments => "Testing ##{issue1.id}, Fixes ##{issue2.id}") | 
					
						
							|  |  |  |       issue1.reload | 
					
						
							|  |  |  |       assert_equal 3, issue1.status_id | 
					
						
							|  |  |  |       assert_equal 90, issue1.done_ratio | 
					
						
							|  |  |  |       issue2.reload | 
					
						
							|  |  |  |       assert_equal 5, issue2.status_id | 
					
						
							|  |  |  |       assert_equal 100, issue2.done_ratio | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-13 07:37:49 +00:00
										 |  |  |   def test_update_keywords_with_multiple_rules_and_no_match | 
					
						
							|  |  |  |     with_settings :commit_update_keywords => [ | 
					
						
							|  |  |  |       {'keywords' => 'fixes', 'status_id' => '5', 'if_tracker_id' => '2'}, | 
					
						
							|  |  |  |       {'keywords' => 'fixes', 'status_id' => '3', 'if_tracker_id' => '3'} | 
					
						
							|  |  |  |     ] do | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       issue1 = Issue.generate!(:tracker_id => 2) | 
					
						
							|  |  |  |       issue2 = Issue.generate! | 
					
						
							|  |  |  |       Changeset.generate!(:comments => "Fixes ##{issue1.id}, ##{issue2.id}") | 
					
						
							|  |  |  |       assert_equal 5, issue1.reload.status_id | 
					
						
							|  |  |  |       assert_equal 1, issue2.reload.status_id # no updates | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2013-10-05 09:41:11 +00:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-31 16:25:06 +00:00
										 |  |  |   def test_commit_referencing_a_subproject_issue | 
					
						
							| 
									
										
										
										
											2011-04-16 01:01:58 +00:00
										 |  |  |     c = Changeset.new(:repository   => Project.find(1).repository, | 
					
						
							| 
									
										
										
										
											2010-01-31 16:25:06 +00:00
										 |  |  |                       :committed_on => Time.now, | 
					
						
							| 
									
										
										
										
											2011-08-29 12:39:04 +00:00
										 |  |  |                       :comments     => 'refs #5, a subproject issue', | 
					
						
							|  |  |  |                       :revision     => '12345') | 
					
						
							| 
									
										
										
										
											2011-08-29 12:39:50 +00:00
										 |  |  |     assert c.save | 
					
						
							| 
									
										
										
										
											2010-01-31 16:25:06 +00:00
										 |  |  |     assert_equal [5], c.issue_ids.sort | 
					
						
							|  |  |  |     assert c.issues.first.project != c.project | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-20 21:58:57 +00:00
										 |  |  |   def test_commit_closing_a_subproject_issue | 
					
						
							| 
									
										
										
										
											2013-10-13 07:37:49 +00:00
										 |  |  |     with_settings :commit_update_keywords => [{'keywords' => 'closes', 'status_id' => '5'}], | 
					
						
							| 
									
										
										
										
											2012-09-26 10:54:30 +00:00
										 |  |  |                   :default_language => 'en' do | 
					
						
							| 
									
										
										
										
											2012-02-20 21:58:57 +00:00
										 |  |  |       issue = Issue.find(5) | 
					
						
							|  |  |  |       assert !issue.closed? | 
					
						
							|  |  |  |       assert_difference 'Journal.count' do | 
					
						
							|  |  |  |         c = Changeset.new(:repository   => Project.find(1).repository, | 
					
						
							|  |  |  |                           :committed_on => Time.now, | 
					
						
							|  |  |  |                           :comments     => 'closes #5, a subproject issue', | 
					
						
							|  |  |  |                           :revision     => '12345') | 
					
						
							|  |  |  |         assert c.save | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |       assert issue.reload.closed? | 
					
						
							| 
									
										
										
										
											2014-01-09 00:04:38 +00:00
										 |  |  |       journal = Journal.order('id DESC').first | 
					
						
							| 
									
										
										
										
											2012-02-20 21:58:57 +00:00
										 |  |  |       assert_equal issue, journal.issue | 
					
						
							|  |  |  |       assert_include "Applied in changeset ecookbook:r12345.", journal.notes | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-31 16:25:06 +00:00
										 |  |  |   def test_commit_referencing_a_parent_project_issue | 
					
						
							|  |  |  |     # repository of child project | 
					
						
							| 
									
										
										
										
											2011-03-17 03:53:08 +00:00
										 |  |  |     r = Repository::Subversion.create!( | 
					
						
							|  |  |  |           :project => Project.find(3), | 
					
						
							|  |  |  |           :url     => 'svn://localhost/test') | 
					
						
							| 
									
										
										
										
											2011-04-16 01:01:58 +00:00
										 |  |  |     c = Changeset.new(:repository   => r, | 
					
						
							| 
									
										
										
										
											2010-01-31 16:25:06 +00:00
										 |  |  |                       :committed_on => Time.now, | 
					
						
							| 
									
										
										
										
											2011-08-29 12:40:32 +00:00
										 |  |  |                       :comments     => 'refs #2, an issue of a parent project', | 
					
						
							|  |  |  |                       :revision     => '12345') | 
					
						
							| 
									
										
										
										
											2011-08-29 12:41:27 +00:00
										 |  |  |     assert c.save | 
					
						
							| 
									
										
										
										
											2010-01-31 16:25:06 +00:00
										 |  |  |     assert_equal [2], c.issue_ids.sort | 
					
						
							|  |  |  |     assert c.issues.first.project != c.project | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-03-01 15:35:27 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-02 18:09:37 +00:00
										 |  |  |   def test_commit_referencing_a_project_with_commit_cross_project_ref_disabled | 
					
						
							|  |  |  |     r = Repository::Subversion.create!( | 
					
						
							|  |  |  |           :project => Project.find(3), | 
					
						
							|  |  |  |           :url     => 'svn://localhost/test') | 
					
						
							|  |  |  |     with_settings :commit_cross_project_ref => '0' do | 
					
						
							|  |  |  |       c = Changeset.new(:repository   => r, | 
					
						
							|  |  |  |                         :committed_on => Time.now, | 
					
						
							|  |  |  |                         :comments     => 'refs #4, an issue of a different project', | 
					
						
							|  |  |  |                         :revision     => '12345') | 
					
						
							|  |  |  |       assert c.save | 
					
						
							|  |  |  |       assert_equal [], c.issue_ids | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_commit_referencing_a_project_with_commit_cross_project_ref_enabled | 
					
						
							|  |  |  |     r = Repository::Subversion.create!( | 
					
						
							|  |  |  |           :project => Project.find(3), | 
					
						
							|  |  |  |           :url     => 'svn://localhost/test') | 
					
						
							|  |  |  |     with_settings :commit_cross_project_ref => '1' do | 
					
						
							|  |  |  |       c = Changeset.new(:repository   => r, | 
					
						
							|  |  |  |                         :committed_on => Time.now, | 
					
						
							|  |  |  |                         :comments     => 'refs #4, an issue of a different project', | 
					
						
							|  |  |  |                         :revision     => '12345') | 
					
						
							|  |  |  |       assert c.save | 
					
						
							|  |  |  |       assert_equal [4], c.issue_ids | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-05 10:33:03 +00:00
										 |  |  |   def test_old_commits_should_not_update_issues_nor_log_time | 
					
						
							|  |  |  |     Setting.commit_ref_keywords = '*' | 
					
						
							|  |  |  |     Setting.commit_update_keywords = {'fixes , closes' => {'status_id' => '5', 'done_ratio' => '90'}} | 
					
						
							|  |  |  |     Setting.commit_logtime_enabled = '1' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     repository = Project.find(1).repository | 
					
						
							|  |  |  |     repository.created_on = Time.now | 
					
						
							|  |  |  |     repository.save! | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     c = Changeset.new(:repository   => repository, | 
					
						
							|  |  |  |                       :committed_on => 1.month.ago, | 
					
						
							|  |  |  |                       :comments     => 'New commit (#2). Fixes #1 @1h', | 
					
						
							|  |  |  |                       :revision     => '12345') | 
					
						
							|  |  |  |     assert_no_difference 'TimeEntry.count' do | 
					
						
							|  |  |  |       assert c.save | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |     assert_equal [1, 2], c.issue_ids.sort | 
					
						
							|  |  |  |     issue = Issue.find(1) | 
					
						
							|  |  |  |     assert_equal 1, issue.status_id | 
					
						
							|  |  |  |     assert_equal 0, issue.done_ratio | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-05 12:10:33 +00:00
										 |  |  |   def test_2_repositories_with_same_backend_should_not_link_issue_multiple_times | 
					
						
							|  |  |  |     Setting.commit_ref_keywords = '*' | 
					
						
							|  |  |  |     r1 = Repository::Subversion.create!(:project_id => 1, :identifier => 'svn1', :url => 'file:///svn1') | 
					
						
							|  |  |  |     r2 = Repository::Subversion.create!(:project_id => 1, :identifier => 'svn2', :url => 'file:///svn1') | 
					
						
							|  |  |  |     now = Time.now | 
					
						
							|  |  |  |     assert_difference 'Issue.find(1).changesets.count' do | 
					
						
							|  |  |  |       c1 = Changeset.create!(:repository => r1, :committed_on => now, :comments => 'Fixes #1', :revision => '12345') | 
					
						
							|  |  |  |       c1 = Changeset.create!(:repository => r2, :committed_on => now, :comments => 'Fixes #1', :revision => '12345') | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-11 14:20:04 +00:00
										 |  |  |   def test_text_tag_revision | 
					
						
							|  |  |  |     c = Changeset.new(:revision => '520') | 
					
						
							| 
									
										
										
										
											2010-12-05 11:45:09 +00:00
										 |  |  |     assert_equal 'r520', c.text_tag | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-03-01 15:35:27 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-20 21:58:57 +00:00
										 |  |  |   def test_text_tag_revision_with_same_project | 
					
						
							|  |  |  |     c = Changeset.new(:revision => '520', :repository => Project.find(1).repository) | 
					
						
							|  |  |  |     assert_equal 'r520', c.text_tag(Project.find(1)) | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_text_tag_revision_with_different_project | 
					
						
							|  |  |  |     c = Changeset.new(:revision => '520', :repository => Project.find(1).repository) | 
					
						
							|  |  |  |     assert_equal 'ecookbook:r520', c.text_tag(Project.find(2)) | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-24 13:03:36 +00:00
										 |  |  |   def test_text_tag_revision_with_repository_identifier | 
					
						
							|  |  |  |     r = Repository::Subversion.create!( | 
					
						
							|  |  |  |           :project_id => 1, | 
					
						
							|  |  |  |           :url     => 'svn://localhost/test', | 
					
						
							|  |  |  |           :identifier => 'documents') | 
					
						
							|  |  |  |     c = Changeset.new(:revision => '520', :repository => r) | 
					
						
							|  |  |  |     assert_equal 'documents|r520', c.text_tag | 
					
						
							|  |  |  |     assert_equal 'ecookbook:documents|r520', c.text_tag(Project.find(2)) | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-05 11:45:09 +00:00
										 |  |  |   def test_text_tag_hash | 
					
						
							| 
									
										
										
										
											2011-03-17 03:53:08 +00:00
										 |  |  |     c = Changeset.new( | 
					
						
							|  |  |  |           :scmid    => '7234cb2750b63f47bff735edc50a1c0a433c2518', | 
					
						
							|  |  |  |           :revision => '7234cb2750b63f47bff735edc50a1c0a433c2518') | 
					
						
							| 
									
										
										
										
											2010-12-05 11:45:09 +00:00
										 |  |  |     assert_equal 'commit:7234cb2750b63f47bff735edc50a1c0a433c2518', c.text_tag | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2009-09-03 01:21:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-20 21:58:57 +00:00
										 |  |  |   def test_text_tag_hash_with_same_project | 
					
						
							|  |  |  |     c = Changeset.new(:revision => '7234cb27', :scmid => '7234cb27', :repository => Project.find(1).repository) | 
					
						
							|  |  |  |     assert_equal 'commit:7234cb27', c.text_tag(Project.find(1)) | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_text_tag_hash_with_different_project | 
					
						
							|  |  |  |     c = Changeset.new(:revision => '7234cb27', :scmid => '7234cb27', :repository => Project.find(1).repository) | 
					
						
							|  |  |  |     assert_equal 'ecookbook:commit:7234cb27', c.text_tag(Project.find(2)) | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-11 14:20:04 +00:00
										 |  |  |   def test_text_tag_hash_all_number | 
					
						
							|  |  |  |     c = Changeset.new(:scmid => '0123456789', :revision => '0123456789') | 
					
						
							|  |  |  |     assert_equal 'commit:0123456789', c.text_tag | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-12 09:19:47 +00:00
										 |  |  |   def test_text_tag_hash_with_repository_identifier | 
					
						
							|  |  |  |     r = Repository::Subversion.new( | 
					
						
							|  |  |  |           :project_id => 1, | 
					
						
							|  |  |  |           :url     => 'svn://localhost/test', | 
					
						
							|  |  |  |           :identifier => 'documents') | 
					
						
							|  |  |  |     c = Changeset.new(:revision => '7234cb27', :scmid => '7234cb27', :repository => r) | 
					
						
							|  |  |  |     assert_equal 'commit:documents|7234cb27', c.text_tag | 
					
						
							|  |  |  |     assert_equal 'ecookbook:commit:documents|7234cb27', c.text_tag(Project.find(2)) | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-12-01 17:15:42 +00:00
										 |  |  |   def test_previous | 
					
						
							| 
									
										
										
										
											2008-04-26 17:56:26 +00:00
										 |  |  |     changeset = Changeset.find_by_revision('3') | 
					
						
							|  |  |  |     assert_equal Changeset.find_by_revision('2'), changeset.previous | 
					
						
							| 
									
										
										
										
											2007-12-01 17:15:42 +00:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_previous_nil | 
					
						
							| 
									
										
										
										
											2008-04-26 17:56:26 +00:00
										 |  |  |     changeset = Changeset.find_by_revision('1') | 
					
						
							| 
									
										
										
										
											2007-12-01 17:15:42 +00:00
										 |  |  |     assert_nil changeset.previous | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_next | 
					
						
							| 
									
										
										
										
											2008-04-26 17:56:26 +00:00
										 |  |  |     changeset = Changeset.find_by_revision('2') | 
					
						
							|  |  |  |     assert_equal Changeset.find_by_revision('3'), changeset.next | 
					
						
							| 
									
										
										
										
											2007-12-01 17:15:42 +00:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_next_nil | 
					
						
							| 
									
										
										
										
											2009-09-20 15:20:22 +00:00
										 |  |  |     changeset = Changeset.find_by_revision('10') | 
					
						
							| 
									
										
										
										
											2007-12-01 17:15:42 +00:00
										 |  |  |     assert_nil changeset.next | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-03-01 10:27:30 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-20 11:24:41 +00:00
										 |  |  |   def test_comments_should_be_converted_to_utf8 | 
					
						
							| 
									
										
										
										
											2011-04-16 01:01:58 +00:00
										 |  |  |     proj = Project.find(3) | 
					
						
							| 
									
										
										
										
											2019-03-20 01:36:44 +00:00
										 |  |  |     str = "Texte encod\xe9 en ISO-8859-1.".b | 
					
						
							| 
									
										
										
										
											2011-04-16 01:01:58 +00:00
										 |  |  |     r = Repository::Bazaar.create!( | 
					
						
							|  |  |  |             :project      => proj, | 
					
						
							|  |  |  |             :url          => '/tmp/test/bazaar', | 
					
						
							| 
									
										
										
										
											2011-03-01 10:27:30 +00:00
										 |  |  |             :log_encoding => 'ISO-8859-1' ) | 
					
						
							| 
									
										
										
										
											2011-04-16 01:01:58 +00:00
										 |  |  |     assert r | 
					
						
							|  |  |  |     c = Changeset.new(:repository   => r, | 
					
						
							|  |  |  |                       :committed_on => Time.now, | 
					
						
							|  |  |  |                       :revision     => '123', | 
					
						
							|  |  |  |                       :scmid        => '12345', | 
					
						
							|  |  |  |                       :comments     => str) | 
					
						
							|  |  |  |     assert( c.save ) | 
					
						
							| 
									
										
										
										
											2019-03-19 15:43:55 +00:00
										 |  |  |     assert_equal 'Texte encodé en ISO-8859-1.', c.comments | 
					
						
							| 
									
										
										
										
											2010-02-20 11:24:41 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-03-01 15:35:27 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-09 09:31:14 +00:00
										 |  |  |   def test_invalid_utf8_sequences_in_comments_should_be_replaced_latin1 | 
					
						
							| 
									
										
										
										
											2011-04-16 01:01:58 +00:00
										 |  |  |     proj = Project.find(3) | 
					
						
							| 
									
										
										
										
											2019-03-20 01:36:44 +00:00
										 |  |  |     str2 = "\xe9a\xe9b\xe9c\xe9d\xe9e test".b | 
					
						
							| 
									
										
										
										
											2011-04-16 01:01:58 +00:00
										 |  |  |     r = Repository::Bazaar.create!( | 
					
						
							|  |  |  |             :project      => proj, | 
					
						
							|  |  |  |             :url          => '/tmp/test/bazaar', | 
					
						
							| 
									
										
										
										
											2011-03-01 10:27:30 +00:00
										 |  |  |             :log_encoding => 'UTF-8' ) | 
					
						
							| 
									
										
										
										
											2011-04-16 01:01:58 +00:00
										 |  |  |     assert r | 
					
						
							|  |  |  |     c = Changeset.new(:repository   => r, | 
					
						
							|  |  |  |                       :committed_on => Time.now, | 
					
						
							|  |  |  |                       :revision     => '123', | 
					
						
							|  |  |  |                       :scmid        => '12345', | 
					
						
							| 
									
										
										
										
											2019-03-19 15:43:55 +00:00
										 |  |  |                       :comments     => "Texte encod\xE9 en ISO-8859-1.", | 
					
						
							| 
									
										
										
										
											2011-04-16 01:01:58 +00:00
										 |  |  |                       :committer    => str2) | 
					
						
							|  |  |  |     assert( c.save ) | 
					
						
							|  |  |  |     assert_equal "Texte encod? en ISO-8859-1.", c.comments | 
					
						
							| 
									
										
										
										
											2011-05-05 04:22:49 +00:00
										 |  |  |     assert_equal "?a?b?c?d?e test", c.committer | 
					
						
							| 
									
										
										
										
											2010-02-20 11:24:41 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-01-02 09:45:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-09 09:31:14 +00:00
										 |  |  |   def test_invalid_utf8_sequences_in_comments_should_be_replaced_ja_jis | 
					
						
							| 
									
										
										
										
											2011-04-16 01:01:58 +00:00
										 |  |  |     proj = Project.find(3) | 
					
						
							| 
									
										
										
										
											2019-03-20 01:36:44 +00:00
										 |  |  |     str = "test\xb5\xfetest\xb5\xfe".b | 
					
						
							| 
									
										
										
										
											2011-04-16 01:01:58 +00:00
										 |  |  |     r = Repository::Bazaar.create!( | 
					
						
							|  |  |  |             :project      => proj, | 
					
						
							|  |  |  |             :url          => '/tmp/test/bazaar', | 
					
						
							| 
									
										
										
										
											2011-04-09 08:07:22 +00:00
										 |  |  |             :log_encoding => 'ISO-2022-JP' ) | 
					
						
							| 
									
										
										
										
											2011-04-16 01:01:58 +00:00
										 |  |  |     assert r | 
					
						
							|  |  |  |     c = Changeset.new(:repository   => r, | 
					
						
							|  |  |  |                       :committed_on => Time.now, | 
					
						
							|  |  |  |                       :revision     => '123', | 
					
						
							|  |  |  |                       :scmid        => '12345', | 
					
						
							|  |  |  |                       :comments     => str) | 
					
						
							|  |  |  |     assert( c.save ) | 
					
						
							|  |  |  |     assert_equal "test??test??", c.comments | 
					
						
							| 
									
										
										
										
											2011-04-09 08:07:22 +00:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-22 13:39:12 +00:00
										 |  |  |   def test_comments_should_be_converted_all_latin1_to_utf8 | 
					
						
							| 
									
										
										
										
											2019-03-19 15:43:55 +00:00
										 |  |  |     s1 = +"\xC2\x80" | 
					
						
							|  |  |  |     s2 = +"\xc3\x82\xc2\x80" | 
					
						
							| 
									
										
										
										
											2011-04-16 01:01:58 +00:00
										 |  |  |     s4 = s2.dup | 
					
						
							| 
									
										
										
										
											2014-10-22 17:37:16 +00:00
										 |  |  |     s3 = s1.dup | 
					
						
							| 
									
										
										
										
											2019-03-20 01:36:44 +00:00
										 |  |  |     s1 = s1.b | 
					
						
							|  |  |  |     s2 = s2.b | 
					
						
							| 
									
										
										
										
											2014-10-22 17:37:16 +00:00
										 |  |  |     s3.force_encoding('ISO-8859-1') | 
					
						
							|  |  |  |     s4.force_encoding('UTF-8') | 
					
						
							|  |  |  |     assert_equal s3.encode('UTF-8'), s4 | 
					
						
							| 
									
										
										
										
											2011-04-16 01:01:58 +00:00
										 |  |  |     proj = Project.find(3) | 
					
						
							|  |  |  |     r = Repository::Bazaar.create!( | 
					
						
							|  |  |  |             :project      => proj, | 
					
						
							|  |  |  |             :url          => '/tmp/test/bazaar', | 
					
						
							| 
									
										
										
										
											2011-03-01 10:27:30 +00:00
										 |  |  |             :log_encoding => 'ISO-8859-1' ) | 
					
						
							| 
									
										
										
										
											2011-04-16 01:01:58 +00:00
										 |  |  |     assert r | 
					
						
							|  |  |  |     c = Changeset.new(:repository   => r, | 
					
						
							|  |  |  |                       :committed_on => Time.now, | 
					
						
							|  |  |  |                       :revision     => '123', | 
					
						
							|  |  |  |                       :scmid        => '12345', | 
					
						
							|  |  |  |                       :comments     => s1) | 
					
						
							|  |  |  |     assert( c.save ) | 
					
						
							|  |  |  |     assert_equal s4, c.comments | 
					
						
							| 
									
										
										
										
											2011-02-22 13:39:12 +00:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-16 06:45:26 +00:00
										 |  |  |   def test_invalid_utf8_sequences_in_paths_should_be_replaced | 
					
						
							| 
									
										
										
										
											2011-05-09 04:54:37 +00:00
										 |  |  |     proj = Project.find(3) | 
					
						
							| 
									
										
										
										
											2019-03-20 01:36:44 +00:00
										 |  |  |     str2 = "\xe9a\xe9b\xe9c\xe9d\xe9e test".b | 
					
						
							| 
									
										
										
										
											2011-05-09 04:54:37 +00:00
										 |  |  |     r = Repository::Bazaar.create!( | 
					
						
							| 
									
										
										
										
											2011-04-16 06:45:26 +00:00
										 |  |  |             :project => proj, | 
					
						
							|  |  |  |             :url => '/tmp/test/bazaar', | 
					
						
							|  |  |  |             :log_encoding => 'UTF-8' ) | 
					
						
							| 
									
										
										
										
											2011-05-09 04:54:37 +00:00
										 |  |  |     assert r | 
					
						
							|  |  |  |     cs = Changeset.new( | 
					
						
							| 
									
										
										
										
											2011-04-16 06:45:26 +00:00
										 |  |  |                :repository   => r, | 
					
						
							|  |  |  |                :committed_on => Time.now, | 
					
						
							|  |  |  |                :revision     => '123', | 
					
						
							|  |  |  |                :scmid        => '12345', | 
					
						
							|  |  |  |                :comments     => "test") | 
					
						
							| 
									
										
										
										
											2011-05-09 04:54:37 +00:00
										 |  |  |     assert(cs.save) | 
					
						
							|  |  |  |     ch = Change.new( | 
					
						
							| 
									
										
										
										
											2011-04-16 06:45:26 +00:00
										 |  |  |                   :changeset     => cs, | 
					
						
							|  |  |  |                   :action        => "A", | 
					
						
							| 
									
										
										
										
											2019-03-19 15:43:55 +00:00
										 |  |  |                   :path          => "Texte encod\xE9 en ISO-8859-1", | 
					
						
							| 
									
										
										
										
											2011-04-16 06:45:26 +00:00
										 |  |  |                   :from_path     => str2, | 
					
						
							|  |  |  |                   :from_revision => "345") | 
					
						
							| 
									
										
										
										
											2011-05-09 04:54:37 +00:00
										 |  |  |     assert(ch.save) | 
					
						
							|  |  |  |     assert_equal "Texte encod? en ISO-8859-1", ch.path | 
					
						
							|  |  |  |     assert_equal "?a?b?c?d?e test", ch.from_path | 
					
						
							| 
									
										
										
										
											2011-04-16 06:45:26 +00:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-09 06:34:33 +00:00
										 |  |  |   def test_comments_nil | 
					
						
							| 
									
										
										
										
											2011-04-16 01:01:58 +00:00
										 |  |  |     proj = Project.find(3) | 
					
						
							|  |  |  |     r = Repository::Bazaar.create!( | 
					
						
							|  |  |  |             :project      => proj, | 
					
						
							|  |  |  |             :url          => '/tmp/test/bazaar', | 
					
						
							| 
									
										
										
										
											2011-04-09 06:34:33 +00:00
										 |  |  |             :log_encoding => 'ISO-8859-1' ) | 
					
						
							| 
									
										
										
										
											2011-04-16 01:01:58 +00:00
										 |  |  |     assert r | 
					
						
							|  |  |  |     c = Changeset.new(:repository   => r, | 
					
						
							|  |  |  |                       :committed_on => Time.now, | 
					
						
							|  |  |  |                       :revision     => '123', | 
					
						
							|  |  |  |                       :scmid        => '12345', | 
					
						
							|  |  |  |                       :comments     => nil, | 
					
						
							|  |  |  |                       :committer    => nil) | 
					
						
							|  |  |  |     assert( c.save ) | 
					
						
							|  |  |  |     assert_equal "", c.comments | 
					
						
							| 
									
										
										
										
											2016-12-11 15:26:41 +00:00
										 |  |  |     assert_nil c.committer | 
					
						
							| 
									
										
										
										
											2014-10-22 17:37:16 +00:00
										 |  |  |     assert_equal "UTF-8", c.comments.encoding.to_s | 
					
						
							| 
									
										
										
										
											2011-04-09 06:34:33 +00:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_comments_empty | 
					
						
							| 
									
										
										
										
											2011-04-16 01:01:58 +00:00
										 |  |  |     proj = Project.find(3) | 
					
						
							|  |  |  |     r = Repository::Bazaar.create!( | 
					
						
							|  |  |  |             :project      => proj, | 
					
						
							|  |  |  |             :url          => '/tmp/test/bazaar', | 
					
						
							| 
									
										
										
										
											2011-04-09 06:34:33 +00:00
										 |  |  |             :log_encoding => 'ISO-8859-1' ) | 
					
						
							| 
									
										
										
										
											2011-04-16 01:01:58 +00:00
										 |  |  |     assert r | 
					
						
							|  |  |  |     c = Changeset.new(:repository   => r, | 
					
						
							|  |  |  |                       :committed_on => Time.now, | 
					
						
							|  |  |  |                       :revision     => '123', | 
					
						
							|  |  |  |                       :scmid        => '12345', | 
					
						
							|  |  |  |                       :comments     => "", | 
					
						
							|  |  |  |                       :committer    => "") | 
					
						
							|  |  |  |     assert( c.save ) | 
					
						
							|  |  |  |     assert_equal "", c.comments | 
					
						
							|  |  |  |     assert_equal "", c.committer | 
					
						
							| 
									
										
										
										
											2014-10-22 17:37:16 +00:00
										 |  |  |     assert_equal "UTF-8", c.comments.encoding.to_s | 
					
						
							|  |  |  |     assert_equal "UTF-8", c.committer.encoding.to_s | 
					
						
							| 
									
										
										
										
											2011-04-09 06:34:33 +00:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-28 13:16:46 +00:00
										 |  |  |   def test_comments_should_accept_more_than_64k | 
					
						
							|  |  |  |     c = Changeset.new(:repository   => Repository.first, | 
					
						
							|  |  |  |                       :committed_on => Time.now, | 
					
						
							|  |  |  |                       :revision     => '123', | 
					
						
							|  |  |  |                       :scmid        => '12345', | 
					
						
							|  |  |  |                       :comments     => "a" * 500.kilobyte) | 
					
						
							|  |  |  |     assert c.save | 
					
						
							|  |  |  |     c.reload | 
					
						
							|  |  |  |     assert_equal 500.kilobyte, c.comments.size | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-02 09:45:05 +00:00
										 |  |  |   def test_identifier | 
					
						
							|  |  |  |     c = Changeset.find_by_revision('1') | 
					
						
							|  |  |  |     assert_equal c.revision, c.identifier | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2007-11-20 12:07:28 +00:00
										 |  |  | end |