scm: cvs: code clean up unit model test.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5439 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
bc6b219fc9
commit
0ceeecc854
@ -19,13 +19,13 @@ require File.expand_path('../../test_helper', __FILE__)
|
|||||||
require 'pp'
|
require 'pp'
|
||||||
class RepositoryCvsTest < ActiveSupport::TestCase
|
class RepositoryCvsTest < ActiveSupport::TestCase
|
||||||
fixtures :projects
|
fixtures :projects
|
||||||
|
|
||||||
# No '..' in the repository path
|
# No '..' in the repository path
|
||||||
REPOSITORY_PATH = RAILS_ROOT.gsub(%r{config\/\.\.}, '') + '/tmp/test/cvs_repository'
|
REPOSITORY_PATH = RAILS_ROOT.gsub(%r{config\/\.\.}, '') + '/tmp/test/cvs_repository'
|
||||||
REPOSITORY_PATH.gsub!(/\//, "\\") if Redmine::Platform.mswin?
|
REPOSITORY_PATH.gsub!(/\//, "\\") if Redmine::Platform.mswin?
|
||||||
# CVS module
|
# CVS module
|
||||||
MODULE_NAME = 'test'
|
MODULE_NAME = 'test'
|
||||||
|
|
||||||
def setup
|
def setup
|
||||||
@project = Project.find(3)
|
@project = Project.find(3)
|
||||||
@repository = Repository::Cvs.create(:project => @project,
|
@repository = Repository::Cvs.create(:project => @project,
|
||||||
@ -34,13 +34,13 @@ class RepositoryCvsTest < ActiveSupport::TestCase
|
|||||||
:log_encoding => 'UTF-8')
|
:log_encoding => 'UTF-8')
|
||||||
assert @repository
|
assert @repository
|
||||||
end
|
end
|
||||||
|
|
||||||
if File.directory?(REPOSITORY_PATH)
|
if File.directory?(REPOSITORY_PATH)
|
||||||
def test_fetch_changesets_from_scratch
|
def test_fetch_changesets_from_scratch
|
||||||
assert_equal 0, @repository.changesets.count
|
assert_equal 0, @repository.changesets.count
|
||||||
@repository.fetch_changesets
|
@repository.fetch_changesets
|
||||||
@repository.reload
|
@repository.reload
|
||||||
|
|
||||||
assert_equal 5, @repository.changesets.count
|
assert_equal 5, @repository.changesets.count
|
||||||
assert_equal 14, @repository.changes.count
|
assert_equal 14, @repository.changes.count
|
||||||
assert_not_nil @repository.changesets.find_by_comments('Two files changed')
|
assert_not_nil @repository.changesets.find_by_comments('Two files changed')
|
||||||
@ -48,7 +48,7 @@ class RepositoryCvsTest < ActiveSupport::TestCase
|
|||||||
r2 = @repository.changesets.find_by_revision('2')
|
r2 = @repository.changesets.find_by_revision('2')
|
||||||
assert_equal 'v1-20071213-162510', r2.scmid
|
assert_equal 'v1-20071213-162510', r2.scmid
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_fetch_changesets_incremental
|
def test_fetch_changesets_incremental
|
||||||
assert_equal 0, @repository.changesets.count
|
assert_equal 0, @repository.changesets.count
|
||||||
@repository.fetch_changesets
|
@repository.fetch_changesets
|
||||||
@ -78,7 +78,7 @@ class RepositoryCvsTest < ActiveSupport::TestCase
|
|||||||
rev5_committed_on = Time.gm(2007, 12, 13, 16, 30, 1)
|
rev5_committed_on = Time.gm(2007, 12, 13, 16, 30, 1)
|
||||||
assert_equal rev5_committed_on, rev5_commit.committed_on
|
assert_equal rev5_committed_on, rev5_commit.committed_on
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_deleted_files_should_not_be_listed
|
def test_deleted_files_should_not_be_listed
|
||||||
assert_equal 0, @repository.changesets.count
|
assert_equal 0, @repository.changesets.count
|
||||||
@repository.fetch_changesets
|
@repository.fetch_changesets
|
||||||
|
Loading…
x
Reference in New Issue
Block a user