Mercurial > hg > soundsoftware-site
comparison test/unit/repository_git_test.rb @ 0:513646585e45
* Import Redmine trunk SVN rev 3859
author | Chris Cannam |
---|---|
date | Fri, 23 Jul 2010 15:52:44 +0100 |
parents | |
children | 94944d00e43c |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:513646585e45 |
---|---|
1 # redMine - project management software | |
2 # Copyright (C) 2006-2007 Jean-Philippe Lang | |
3 # | |
4 # This program is free software; you can redistribute it and/or | |
5 # modify it under the terms of the GNU General Public License | |
6 # as published by the Free Software Foundation; either version 2 | |
7 # of the License, or (at your option) any later version. | |
8 # | |
9 # This program is distributed in the hope that it will be useful, | |
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 # GNU General Public License for more details. | |
13 # | |
14 # You should have received a copy of the GNU General Public License | |
15 # along with this program; if not, write to the Free Software | |
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | |
17 | |
18 require File.dirname(__FILE__) + '/../test_helper' | |
19 | |
20 class RepositoryGitTest < ActiveSupport::TestCase | |
21 fixtures :projects | |
22 | |
23 # No '..' in the repository path | |
24 REPOSITORY_PATH = RAILS_ROOT.gsub(%r{config\/\.\.}, '') + '/tmp/test/git_repository' | |
25 REPOSITORY_PATH.gsub!(/\//, "\\") if Redmine::Platform.mswin? | |
26 | |
27 def setup | |
28 @project = Project.find(1) | |
29 assert @repository = Repository::Git.create(:project => @project, :url => REPOSITORY_PATH) | |
30 end | |
31 | |
32 if File.directory?(REPOSITORY_PATH) | |
33 def test_fetch_changesets_from_scratch | |
34 @repository.fetch_changesets | |
35 @repository.reload | |
36 | |
37 assert_equal 13, @repository.changesets.count | |
38 assert_equal 22, @repository.changes.count | |
39 | |
40 commit = @repository.changesets.find(:first, :order => 'committed_on ASC') | |
41 assert_equal "Initial import.\nThe repository contains 3 files.", commit.comments | |
42 assert_equal "jsmith <jsmith@foo.bar>", commit.committer | |
43 assert_equal User.find_by_login('jsmith'), commit.user | |
44 # TODO: add a commit with commit time <> author time to the test repository | |
45 assert_equal "2007-12-14 09:22:52".to_time, commit.committed_on | |
46 assert_equal "2007-12-14".to_date, commit.commit_date | |
47 assert_equal "7234cb2750b63f47bff735edc50a1c0a433c2518", commit.revision | |
48 assert_equal "7234cb2750b63f47bff735edc50a1c0a433c2518", commit.scmid | |
49 assert_equal 3, commit.changes.count | |
50 change = commit.changes.sort_by(&:path).first | |
51 assert_equal "README", change.path | |
52 assert_equal "A", change.action | |
53 end | |
54 | |
55 def test_fetch_changesets_incremental | |
56 @repository.fetch_changesets | |
57 # Remove the 3 latest changesets | |
58 @repository.changesets.find(:all, :order => 'committed_on DESC', :limit => 3).each(&:destroy) | |
59 @repository.reload | |
60 assert_equal 10, @repository.changesets.count | |
61 | |
62 @repository.fetch_changesets | |
63 assert_equal 13, @repository.changesets.count | |
64 end | |
65 else | |
66 puts "Git test repository NOT FOUND. Skipping unit tests !!!" | |
67 def test_fake; assert true end | |
68 end | |
69 end |