Fixed bug in where branch links were always pointing at master.
[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 is($proj->info->{name}, qw/repo1/, 'repo name in info hash');
25
26 ok($proj->heads, '->heads returns stuff');
27      
28 is($proj->head_hash, '36c6c6708b8360d7023e8a1649c45bcf9b3bd818', 'head_hash for HEAD is correct');
29 is($proj->head_hash('refs/heads/master'), '36c6c6708b8360d7023e8a1649c45bcf9b3bd818', 'head_hash for refs/heads/master is correct');
30 is($proj->head_hash('rafs/head/mister'), undef, 'head_hash for rafs/head/mister is undef');
31
32 is(scalar $proj->list_tree, 2, 'expected number of entries in tree');
33 isa_ok(($proj->list_tree)[1], 'Gitalist::Git::Object');
34
35 # Return an ::Object from a sha1
36 my $obj1 = $proj->get_object('5716ca5987cbf97d6bb54920bea6adde242d87e6');
37 isa_ok($obj1, 'Gitalist::Git::Object');
38
39 # Test methods that really should be called on ::Object
40 # This is transitional from Git.pm
41 my $obj = ($proj->list_tree)[1];
42 isa_ok($obj, 'Gitalist::Git::Object');
43 is($proj->get_object_mode_string($obj), '-rw-r--r--', "get_object_mode_string");
44 is($proj->get_object_type('5716ca5987cbf97d6bb54920bea6adde242d87e6'), 'blob', "get_object_type");
45 is($proj->cat_file('5716ca5987cbf97d6bb54920bea6adde242d87e6'), "bar\n", 'cat_file');