Introduce ::Object::Commit.
[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, 'project path is set');
20 isa_ok($proj->path, 'Path::Class::Dir', 'project path');
21 is($proj->name, qw/repo1/, 'repository name is set');
22 is($proj->description, qq/some test repository/, 'repository description loaded');
23 isa_ok($proj->last_change, 'DateTime', 'last_change');
24
25 my %references = %{$proj->references};
26 ok(keys %references >= 2, '->references hash has elements');
27 is($references{'36c6c6708b8360d7023e8a1649c45bcf9b3bd818'}->[0], 'heads/master', 'reference looks ok');
28 my @heads = @{$proj->heads};
29 ok(scalar @heads > 1, '->heads list has more than one element');
30 my %head = %{$heads[1]};
31 ok(keys %head == 3, '->heads[1] has the right number of keys');
32 ok(defined $head{sha1}, '->heads[1]-sha1 is defined');
33 ok(defined $head{name}, '->heads[1]-name is defined');
34 is($proj->head_hash, '36c6c6708b8360d7023e8a1649c45bcf9b3bd818', 'head_hash for HEAD is correct');
35 is($proj->head_hash('refs/heads/master'), '36c6c6708b8360d7023e8a1649c45bcf9b3bd818', 'head_hash for refs/heads/master is correct');
36 is($proj->head_hash('rafs/head/mister'), undef, 'head_hash for rafs/head/mister is undef');
37
38 is(scalar $proj->list_tree, 2, 'expected number of entries in tree');
39 isa_ok(($proj->list_tree)[1], 'Gitalist::Git::Object');
40
41 # Return an ::Object from a sha1
42 my $obj1 = $proj->get_object('5716ca5987cbf97d6bb54920bea6adde242d87e6');
43 isa_ok($obj1, 'Gitalist::Git::Object::Tree');
44
45 my $hbp_sha1 = $proj->hash_by_path('36c6c6708b8360d7023e8a1649c45bcf9b3bd818', 'dir1/file2');
46 my $obj2 = $proj->get_object($hbp_sha1);
47 isa_ok($obj2, 'Gitalist::Git::Object::Blob');
48 is($obj2->type, 'blob', 'hash_by_path obj is a file');
49 is($obj2->content, "foo\n", 'hash_by_path obj is a file');
50
51 my $obj3 = $proj->get_object($proj->head_hash);
52 isa_ok($obj3, 'Gitalist::Git::Object::Commit');
53
54 like($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