X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F02git_project.t;h=c59b77e9ea9a7ebee67a026fcfa649c3c2a1365b;hb=dbd4a257e24b7f7d1b883fa120411cce354e8739;hp=19409e7d353cdcf8bc0eb401df308e67fb0ec005;hpb=54368e9d6c4c36b040e10a19c50482a530d00115;p=catagits%2FGitalist.git diff --git a/t/02git_project.t b/t/02git_project.t index 19409e7..c59b77e 100644 --- a/t/02git_project.t +++ b/t/02git_project.t @@ -2,39 +2,60 @@ use strict; use warnings; use FindBin qw/$Bin/; use Test::More qw/no_plan/; - +use Test::Exception; use Data::Dumper; BEGIN { use_ok 'Gitalist::Git::Project' } +dies_ok { + my $proj = Gitalist::Git::Project->new(); +} 'New project with no args'; + use Path::Class; my $gitdir = dir("$Bin/lib/repositories/repo1"); -my $proj = Gitalist::Git::Project->new( - path => $gitdir, - name => "repo1", -); +my $proj = Gitalist::Git::Project->new($gitdir); isa_ok($proj, 'Gitalist::Git::Project'); -is($proj->path, $gitdir, 'repository path is set'); +is($proj->path, $gitdir, 'project path is set'); +isa_ok($proj->path, 'Path::Class::Dir', 'project path'); is($proj->name, qw/repo1/, 'repository name is set'); is($proj->description, qq/some test repository/, 'repository description loaded'); isa_ok($proj->last_change, 'DateTime', 'last_change'); -is($proj->info->{name}, qw/repo1/, 'repo name in info hash'); - -is($proj->head_hash, qw/36c6c6708b8360d7023e8a1649c45bcf9b3bd818/, 'head_hash for HEAD is correct'); +my %references = %{$proj->references}; +ok(keys %references >= 2, '->references hash has elements'); +is($references{'36c6c6708b8360d7023e8a1649c45bcf9b3bd818'}->[0], 'heads/master', 'reference looks ok'); +my @heads = @{$proj->heads}; +ok(scalar @heads > 1, '->heads list has more than one element'); +my %head = %{$heads[1]}; +ok(keys %head == 3, '->heads[1] has the right number of keys'); +ok(defined $head{sha1}, '->heads[1]-sha1 is defined'); +ok(defined $head{name}, '->heads[1]-name is defined'); +is($proj->head_hash, '36c6c6708b8360d7023e8a1649c45bcf9b3bd818', 'head_hash for HEAD is correct'); +is($proj->head_hash('refs/heads/master'), '36c6c6708b8360d7023e8a1649c45bcf9b3bd818', 'head_hash for refs/heads/master is correct'); +is($proj->head_hash('rafs/head/mister'), undef, 'head_hash for rafs/head/mister is undef'); is(scalar $proj->list_tree, 2, 'expected number of entries in tree'); isa_ok(($proj->list_tree)[1], 'Gitalist::Git::Object'); # Return an ::Object from a sha1 -my $obj1 = $proj->get_object('5716ca5987cbf97d6bb54920bea6adde242d87e6'); -isa_ok($obj1, 'Gitalist::Git::Object'); - -# Test methods that really should be called on ::Object -# This is transitional from Git.pm -my $obj = ($proj->list_tree)[1]; -isa_ok($obj, 'Gitalist::Git::Object'); -is($proj->get_object_mode_string($obj), '-rw-r--r--', "get_object_mode_string"); -is($proj->get_object_type('5716ca5987cbf97d6bb54920bea6adde242d87e6'), 'blob', "get_object_type"); -is($proj->cat_file('5716ca5987cbf97d6bb54920bea6adde242d87e6'), "bar\n", 'cat_file'); +my $obj1 = $proj->get_object('729a7c3f6ba5453b42d16a43692205f67fb23bc1'); +isa_ok($obj1, 'Gitalist::Git::Object::Tree'); + +my $hbp_sha1 = $proj->hash_by_path('36c6c6708b8360d7023e8a1649c45bcf9b3bd818', 'dir1/file2'); +my $obj2 = $proj->get_object($hbp_sha1); +isa_ok($obj2, 'Gitalist::Git::Object::Blob'); +is($obj2->type, 'blob', 'hash_by_path obj is a file'); +is($obj2->content, "foo\n", 'hash_by_path obj is a file'); + +my $obj3 = $proj->get_object($proj->head_hash); +isa_ok($obj3, 'Gitalist::Git::Object::Commit'); + +like($proj->head_hash('HEAD'), qr/^([0-9a-fA-F]{40})$/, 'head_hash'); + +{ + my @tree = $proj->list_tree('3bc0634310b9c62222bb0e724c11ffdfb297b4ac'); + is(scalar @tree, 1, "tree array contains one entry."); + isa_ok(@tree[0], 'Gitalist::Git::Object', 'tree element 0'); +} +