fd9864ffafa56ff0168677bfed2751224f6672d6
[catagits/Gitalist.git] / t / 02git_project.t
1 use strict;
2 use warnings;
3 use FindBin qw/$Bin/;
4 use Test::More qw/no_plan/;
5 use Test::Exception;
6 use Data::Dumper;
7
8 BEGIN { use_ok 'Gitalist::Git::Project' }
9
10 dies_ok {
11     my $proj = Gitalist::Git::Project->new();
12 } 'New project with no args';
13
14 use Path::Class;
15 my $gitdir = dir("$Bin/lib/repositories/repo1");
16
17 my $proj = Gitalist::Git::Project->new($gitdir);
18 isa_ok($proj, 'Gitalist::Git::Project');
19 is($proj->path, $gitdir, 'repository path is set');
20 is($proj->name, qw/repo1/, 'repository name is set');
21 is($proj->description, qq/some test repository/, 'repository description loaded');
22 isa_ok($proj->last_change, 'DateTime', 'last_change');
23
24 my %references = %{$proj->references};
25 ok(keys %references >= 2, '->references hash has elements');
26 is($references{'36c6c6708b8360d7023e8a1649c45bcf9b3bd818'}->[0], 'heads/master', 'reference looks ok');
27 my @heads = @{$proj->heads};
28 ok(scalar @heads > 1, '->heads list has more than one element');
29 my %head = %{$heads[1]};
30 ok(keys %head == 3, '->heads[1] has the right number of keys');
31 ok(defined $head{sha1}, '->heads[1]-sha1 is defined');
32 ok(defined $head{name}, '->heads[1]-name is defined');
33 is($proj->head_hash, '36c6c6708b8360d7023e8a1649c45bcf9b3bd818', 'head_hash for HEAD is correct');
34 is($proj->head_hash('refs/heads/master'), '36c6c6708b8360d7023e8a1649c45bcf9b3bd818', 'head_hash for refs/heads/master is correct');
35 is($proj->head_hash('rafs/head/mister'), undef, 'head_hash for rafs/head/mister is undef');
36
37 is(scalar $proj->list_tree, 2, 'expected number of entries in tree');
38 isa_ok(($proj->list_tree)[1], 'Gitalist::Git::Object');
39
40 # Return an ::Object from a sha1
41 my $obj1 = $proj->get_object('5716ca5987cbf97d6bb54920bea6adde242d87e6');
42 isa_ok($obj1, 'Gitalist::Git::Object');
43
44 my $hbp_sha1 = $proj->hash_by_path('36c6c6708b8360d7023e8a1649c45bcf9b3bd818', 'dir1/file2');
45 my $obj2 = $proj->get_object($hbp_sha1);
46 is($obj2->type, 'blob', 'hash_by_path obj is a file');
47 is($obj2->content, "foo\n", 'hash_by_path obj is a file');