| 
									
										
										
										
											2007-11-20 12:07:28 +00:00
										 |  |  | # redMine - project management software | 
					
						
							|  |  |  | # Copyright (C) 2006-2007  Jean-Philippe Lang | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # 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' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class ChangesetTest < Test::Unit::TestCase | 
					
						
							| 
									
										
										
										
											2009-05-10 10:54:31 +00:00
										 |  |  |   fixtures :projects, :repositories, :issues, :issue_statuses, :changesets, :changes, :issue_categories, :enumerations, :custom_fields, :custom_values, :users, :members, :member_roles, :trackers | 
					
						
							| 
									
										
										
										
											2007-11-20 12:07:28 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   def setup | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  |    | 
					
						
							|  |  |  |   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_fix_status_id = IssueStatus.find(:first, :conditions => ["is_closed = ?", true]).id | 
					
						
							|  |  |  |     Setting.commit_fix_done_ratio = '90' | 
					
						
							|  |  |  |     Setting.commit_ref_keywords = '*' | 
					
						
							|  |  |  |     Setting.commit_fix_keywords = 'fixes , closes' | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  |     c = Changeset.new(:repository => Project.find(1).repository, | 
					
						
							|  |  |  |                       :committed_on => Time.now, | 
					
						
							|  |  |  |                       :comments => 'New commit (#2). Fixes #1') | 
					
						
							|  |  |  |     c.scan_comment_for_issue_ids | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  |     assert_equal [1, 2], c.issue_ids.sort | 
					
						
							|  |  |  |     fixed = Issue.find(1) | 
					
						
							|  |  |  |     assert fixed.closed? | 
					
						
							|  |  |  |     assert_equal 90, fixed.done_ratio | 
					
						
							| 
									
										
										
										
											2009-03-28 00:38:57 +00:00
										 |  |  |     assert_equal 1, ActionMailer::Base.deliveries.size | 
					
						
							| 
									
										
										
										
											2007-11-20 12:07:28 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2008-05-25 11:43:20 +00:00
										 |  |  |    | 
					
						
							|  |  |  |   def test_ref_keywords_any_line_start | 
					
						
							|  |  |  |     Setting.commit_ref_keywords = '*' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     c = Changeset.new(:repository => Project.find(1).repository, | 
					
						
							|  |  |  |                       :committed_on => Time.now, | 
					
						
							|  |  |  |                       :comments => '#1 is the reason of this commit') | 
					
						
							|  |  |  |     c.scan_comment_for_issue_ids | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     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 = '*' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     c = Changeset.new(:repository => Project.find(1).repository, | 
					
						
							|  |  |  |                       :committed_on => Time.now, | 
					
						
							|  |  |  |                       :comments => '[#1] Worked on this issue') | 
					
						
							|  |  |  |     c.scan_comment_for_issue_ids | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_equal [1], c.issue_ids.sort | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_ref_keywords_allow_brackets_around_multiple_issue_numbers | 
					
						
							|  |  |  |     Setting.commit_ref_keywords = '*' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     c = Changeset.new(:repository => Project.find(1).repository, | 
					
						
							|  |  |  |                       :committed_on => Time.now, | 
					
						
							|  |  |  |                       :comments => '[#1 #2, #3] Worked on these') | 
					
						
							|  |  |  |     c.scan_comment_for_issue_ids | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_equal [1,2,3], c.issue_ids.sort | 
					
						
							|  |  |  |   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-08-17 16:32:24 +00:00
										 |  |  |     changeset = Changeset.find_by_revision('8') | 
					
						
							| 
									
										
										
										
											2007-12-01 17:15:42 +00:00
										 |  |  |     assert_nil changeset.next | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2007-11-20 12:07:28 +00:00
										 |  |  | end |