| 
									
										
										
										
											2007-12-13 18:52:09 +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. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-12 23:24:34 +00:00
										 |  |  | require File.expand_path('../../test_helper', __FILE__) | 
					
						
							| 
									
										
										
										
											2007-12-13 18:52:09 +00:00
										 |  |  | require 'pp' | 
					
						
							| 
									
										
										
										
											2009-09-13 17:14:35 +00:00
										 |  |  | class RepositoryCvsTest < ActiveSupport::TestCase | 
					
						
							| 
									
										
										
										
											2007-12-13 18:52:09 +00:00
										 |  |  |   fixtures :projects | 
					
						
							|  |  |  |    | 
					
						
							|  |  |  |   # No '..' in the repository path | 
					
						
							|  |  |  |   REPOSITORY_PATH = RAILS_ROOT.gsub(%r{config\/\.\.}, '') + '/tmp/test/cvs_repository' | 
					
						
							| 
									
										
										
										
											2008-08-25 11:01:37 +00:00
										 |  |  |   REPOSITORY_PATH.gsub!(/\//, "\\") if Redmine::Platform.mswin? | 
					
						
							| 
									
										
										
										
											2007-12-13 18:52:09 +00:00
										 |  |  |   # CVS module | 
					
						
							|  |  |  |   MODULE_NAME = 'test' | 
					
						
							|  |  |  |    | 
					
						
							|  |  |  |   def setup | 
					
						
							| 
									
										
										
										
											2011-02-02 04:00:36 +00:00
										 |  |  |     @project = Project.find(3) | 
					
						
							| 
									
										
										
										
											2007-12-13 18:52:09 +00:00
										 |  |  |     assert @repository = Repository::Cvs.create(:project => @project,  | 
					
						
							|  |  |  |                                                 :root_url => REPOSITORY_PATH, | 
					
						
							|  |  |  |                                                 :url => MODULE_NAME) | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  |    | 
					
						
							|  |  |  |   if File.directory?(REPOSITORY_PATH)   | 
					
						
							|  |  |  |     def test_fetch_changesets_from_scratch | 
					
						
							| 
									
										
										
										
											2011-02-02 10:00:20 +00:00
										 |  |  |       assert_equal 0, @repository.changesets.count | 
					
						
							| 
									
										
										
										
											2007-12-13 18:52:09 +00:00
										 |  |  |       @repository.fetch_changesets | 
					
						
							|  |  |  |       @repository.reload | 
					
						
							|  |  |  |        | 
					
						
							|  |  |  |       assert_equal 5, @repository.changesets.count | 
					
						
							|  |  |  |       assert_equal 14, @repository.changes.count | 
					
						
							| 
									
										
										
										
											2008-03-12 20:28:49 +00:00
										 |  |  |       assert_not_nil @repository.changesets.find_by_comments('Two files changed') | 
					
						
							| 
									
										
										
										
											2011-02-07 10:26:15 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |       r2 = @repository.changesets.find_by_revision('2') | 
					
						
							|  |  |  |       assert_equal 'v1-20071213-162510', r2.scmid | 
					
						
							| 
									
										
										
										
											2007-12-13 18:52:09 +00:00
										 |  |  |     end | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  |     def test_fetch_changesets_incremental | 
					
						
							| 
									
										
										
										
											2011-02-02 10:00:20 +00:00
										 |  |  |       assert_equal 0, @repository.changesets.count | 
					
						
							| 
									
										
										
										
											2007-12-13 18:52:09 +00:00
										 |  |  |       @repository.fetch_changesets | 
					
						
							| 
									
										
										
										
											2011-02-07 10:25:52 +00:00
										 |  |  |       # Remove changesets with revision > 3 | 
					
						
							|  |  |  |       @repository.changesets.find(:all).each {|c| c.destroy if c.revision.to_i > 3} | 
					
						
							| 
									
										
										
										
											2007-12-13 18:52:09 +00:00
										 |  |  |       @repository.reload | 
					
						
							| 
									
										
										
										
											2011-02-07 10:25:52 +00:00
										 |  |  |       assert_equal 3, @repository.changesets.count | 
					
						
							|  |  |  |       assert_equal %w|3 2 1|, @repository.changesets.collect(&:revision) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       rev3_commit = @repository.changesets.find(:first, :order => 'committed_on DESC') | 
					
						
							|  |  |  |       assert_equal '3', rev3_commit.revision | 
					
						
							|  |  |  |        # 2007-12-14 01:27:22 +0900 | 
					
						
							|  |  |  |       rev3_committed_on = Time.gm(2007, 12, 13, 16, 27, 22) | 
					
						
							| 
									
										
										
										
											2011-02-07 10:26:15 +00:00
										 |  |  |       assert_equal 'HEAD-20071213-162722', rev3_commit.scmid | 
					
						
							| 
									
										
										
										
											2011-02-07 10:25:52 +00:00
										 |  |  |       assert_equal rev3_committed_on, rev3_commit.committed_on | 
					
						
							|  |  |  |       latest_rev = @repository.latest_changeset | 
					
						
							|  |  |  |       assert_equal rev3_committed_on, latest_rev.committed_on | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-12-13 18:52:09 +00:00
										 |  |  |       @repository.fetch_changesets | 
					
						
							| 
									
										
										
										
											2011-02-07 10:25:52 +00:00
										 |  |  |       @repository.reload | 
					
						
							| 
									
										
										
										
											2007-12-13 18:52:09 +00:00
										 |  |  |       assert_equal 5, @repository.changesets.count | 
					
						
							| 
									
										
										
										
											2011-02-07 10:25:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |       assert_equal %w|5 4 3 2 1|, @repository.changesets.collect(&:revision) | 
					
						
							|  |  |  |       rev5_commit = @repository.changesets.find(:first, :order => 'committed_on DESC') | 
					
						
							| 
									
										
										
										
											2011-02-07 10:26:15 +00:00
										 |  |  |       assert_equal 'HEAD-20071213-163001', rev5_commit.scmid | 
					
						
							| 
									
										
										
										
											2011-02-07 10:25:52 +00:00
										 |  |  |        # 2007-12-14 01:30:01 +0900 | 
					
						
							|  |  |  |       rev5_committed_on = Time.gm(2007, 12, 13, 16, 30, 1) | 
					
						
							|  |  |  |       assert_equal rev5_committed_on, rev5_commit.committed_on | 
					
						
							| 
									
										
										
										
											2007-12-13 18:52:09 +00:00
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2008-12-14 15:57:13 +00:00
										 |  |  |      | 
					
						
							|  |  |  |     def test_deleted_files_should_not_be_listed | 
					
						
							| 
									
										
										
										
											2011-02-02 10:00:20 +00:00
										 |  |  |       assert_equal 0, @repository.changesets.count | 
					
						
							|  |  |  |       @repository.fetch_changesets | 
					
						
							|  |  |  |       @repository.reload | 
					
						
							|  |  |  |       assert_equal 5, @repository.changesets.count | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-14 15:57:13 +00:00
										 |  |  |       entries = @repository.entries('sources') | 
					
						
							|  |  |  |       assert entries.detect {|e| e.name == 'watchers_controller.rb'} | 
					
						
							|  |  |  |       assert_nil entries.detect {|e| e.name == 'welcome_controller.rb'} | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2007-12-13 18:52:09 +00:00
										 |  |  |   else | 
					
						
							|  |  |  |     puts "CVS test repository NOT FOUND. Skipping unit tests !!!" | 
					
						
							|  |  |  |     def test_fake; assert true end | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | end |