Part 1 cleanup of ::Project.
[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');
4baaeeef 19is($proj->path, $gitdir, 'repository path is set');
56b6dbe6 20is($proj->name, qw/repo1/, 'repository name is set');
21is($proj->description, qq/some test repository/, 'repository description loaded');
22isa_ok($proj->last_change, 'DateTime', 'last_change');
23
caba5c95 24is($proj->info->{name}, qw/repo1/, 'repo name in info hash');
25
8dbe8024 26ok($proj->heads, '->heads returns stuff');
27
4baaeeef 28is($proj->head_hash, qw/36c6c6708b8360d7023e8a1649c45bcf9b3bd818/, 'head_hash for HEAD is correct');
a8a8f8f9 29
30is(scalar $proj->list_tree, 2, 'expected number of entries in tree');
54368e9d 31isa_ok(($proj->list_tree)[1], 'Gitalist::Git::Object');
32
33# Return an ::Object from a sha1
34my $obj1 = $proj->get_object('5716ca5987cbf97d6bb54920bea6adde242d87e6');
35isa_ok($obj1, 'Gitalist::Git::Object');
36
37# Test methods that really should be called on ::Object
38# This is transitional from Git.pm
39my $obj = ($proj->list_tree)[1];
40isa_ok($obj, 'Gitalist::Git::Object');
41is($proj->get_object_mode_string($obj), '-rw-r--r--', "get_object_mode_string");
42is($proj->get_object_type('5716ca5987cbf97d6bb54920bea6adde242d87e6'), 'blob', "get_object_type");
43is($proj->cat_file('5716ca5987cbf97d6bb54920bea6adde242d87e6'), "bar\n", 'cat_file');