Merge branch 'master' of git://github.com/zts/Gitalist into zts-patches
[catagits/Gitalist.git] / t / 02git_project.t
CommitLineData
56b6dbe6 1use strict;
2use warnings;
3use FindBin qw/$Bin/;
4use Test::More qw/no_plan/;
b5b638f7 5use Test::Exception;
56b6dbe6 6use Data::Dumper;
7
8BEGIN { use_ok 'Gitalist::Git::Project' }
9
b5b638f7 10dies_ok {
11 my $proj = Gitalist::Git::Project->new();
12} 'New project with no args';
13
56b6dbe6 14use Path::Class;
58251520 15my $gitdir = dir("$Bin/lib/repositories/repo1");
4baaeeef 16
b5b638f7 17my $proj = Gitalist::Git::Project->new($gitdir);
56b6dbe6 18isa_ok($proj, 'Gitalist::Git::Project');
85762693 19is($proj->path, $gitdir, 'project path is set');
20isa_ok($proj->path, 'Path::Class::Dir', 'project path');
56b6dbe6 21is($proj->name, qw/repo1/, 'repository name is set');
22is($proj->description, qq/some test repository/, 'repository description loaded');
23isa_ok($proj->last_change, 'DateTime', 'last_change');
24
c65cccc2 25my %references = %{$proj->references};
26ok(keys %references >= 2, '->references hash has elements');
27is($references{'36c6c6708b8360d7023e8a1649c45bcf9b3bd818'}->[0], 'heads/master', 'reference looks ok');
28my @heads = @{$proj->heads};
c73be54e 29ok(scalar @heads > 1, '->heads list has more than one element');
30my %head = %{$heads[1]};
31ok(keys %head == 3, '->heads[1] has the right number of keys');
32ok(defined $head{sha1}, '->heads[1]-sha1 is defined');
33ok(defined $head{name}, '->heads[1]-name is defined');
839da3d7 34is($proj->head_hash, '36c6c6708b8360d7023e8a1649c45bcf9b3bd818', 'head_hash for HEAD is correct');
35is($proj->head_hash('refs/heads/master'), '36c6c6708b8360d7023e8a1649c45bcf9b3bd818', 'head_hash for refs/heads/master is correct');
36is($proj->head_hash('rafs/head/mister'), undef, 'head_hash for rafs/head/mister is undef');
a8a8f8f9 37
38is(scalar $proj->list_tree, 2, 'expected number of entries in tree');
54368e9d 39isa_ok(($proj->list_tree)[1], 'Gitalist::Git::Object');
40
41# Return an ::Object from a sha1
467fa7d9 42my $obj1 = $proj->get_object('729a7c3f6ba5453b42d16a43692205f67fb23bc1');
e1307124 43isa_ok($obj1, 'Gitalist::Git::Object::Tree');
54368e9d 44
fc11c7f1 45my $hbp_sha1 = $proj->hash_by_path('36c6c6708b8360d7023e8a1649c45bcf9b3bd818', 'dir1/file2');
46my $obj2 = $proj->get_object($hbp_sha1);
e1307124 47isa_ok($obj2, 'Gitalist::Git::Object::Blob');
fc11c7f1 48is($obj2->type, 'blob', 'hash_by_path obj is a file');
56908878 49is($obj2->content, "foo\n", 'hash_by_path obj is a file');
85762693 50
e1307124 51my $obj3 = $proj->get_object($proj->head_hash);
52isa_ok($obj3, 'Gitalist::Git::Object::Commit');
53
85762693 54like($proj->head_hash('HEAD'), qr/^([0-9a-fA-F]{40})$/, 'head_hash');
55
56{
57 my @tree = $proj->list_tree('3bc0634310b9c62222bb0e724c11ffdfb297b4ac');
58 is(scalar @tree, 1, "tree array contains one entry.");
59 isa_ok(@tree[0], 'Gitalist::Git::Object', 'tree element 0');
60}
61