Add a trivial test
[catagits/Gitalist.git] / t / 02git_Repository.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 Test::utf8;
7 use Encode qw/decode_utf8/;
8 use Data::Dumper;
9
10 BEGIN {
11     # Mocking to allow testing regardless of the user's locale
12     require I18N::Langinfo;
13     no warnings 'redefine';
14     *I18N::Langinfo::langinfo = sub($) {
15         return "UTF-8" if $_[0] == I18N::Langinfo::CODESET();
16     };
17     *CORE::GLOBAL::getpwuid = sub {
18         wantarray
19             ? ("test", "x", "1000", "1000", "", "", "T\x{c3}\x{a9}st", "/home/test", "/bin/bash")
20             : "test";
21     };
22 }
23
24 BEGIN { use_ok 'Gitalist::Git::Repository' }
25
26 dies_ok {
27     my $proj = Gitalist::Git::Repository->new();
28 } 'New repository with no args';
29
30 use Path::Class;
31 my $gitdir = dir("$Bin/lib/repositories/repo1");
32
33 my $proj = Gitalist::Git::Repository->new($gitdir);
34 isa_ok($proj, 'Gitalist::Git::Repository');
35 is($proj->path, $gitdir, 'repository path is set');
36 isa_ok($proj->path, 'Path::Class::Dir', 'repository path');
37 is($proj->name, qw/repo1/, 'repository name is set');
38 is($proj->description, qq/some test repository/, 'repository description loaded');
39 isa_ok($proj->last_change, 'DateTime', 'last_change');
40
41 is_deeply $proj->pack, {
42     '__CLASS__' => 'Gitalist::Git::Repository',
43     'is_bare' => 1,
44     'owner' => "T\x{e9}st",
45     'last_change' => '2009-11-12T19:00:34Z',
46     'name' => 'repo1',
47     'description' => 'some test repository'
48 };
49
50 my %references = %{$proj->references};
51 ok(keys %references >= 2, '->references hash has elements');
52 is($references{'36c6c6708b8360d7023e8a1649c45bcf9b3bd818'}->[0], 'heads/master', 'reference looks ok');
53 my @heads = @{$proj->heads};
54 ok(scalar @heads > 1, '->heads list has more than one element');
55 my %head = %{$heads[1]};
56 ok(keys %head == 3, '->heads[1] has the right number of keys');
57 ok(defined $head{sha1}, '->heads[1]-sha1 is defined');
58 ok(defined $head{name}, '->heads[1]-name is defined');
59 is($proj->head_hash, '36c6c6708b8360d7023e8a1649c45bcf9b3bd818', 'head_hash for HEAD is correct');
60 is($proj->head_hash('refs/heads/master'), '36c6c6708b8360d7023e8a1649c45bcf9b3bd818', 'head_hash for refs/heads/master is correct');
61 is($proj->head_hash('rafs/head/mister'), undef, 'head_hash for rafs/head/mister is undef');
62
63 is(scalar $proj->list_tree, 2, 'expected number of entries in tree');
64 isa_ok(($proj->list_tree)[1], 'Gitalist::Git::Object');
65
66 # Return an ::Object from a sha1
67 my $obj1 = $proj->get_object('729a7c3f6ba5453b42d16a43692205f67fb23bc1');
68 isa_ok($obj1, 'Gitalist::Git::Object::Tree');
69
70 my $hbp_sha1 = $proj->hash_by_path('36c6c6708b8360d7023e8a1649c45bcf9b3bd818', 'dir1/file2');
71 my $obj2 = $proj->get_object($hbp_sha1);
72 isa_ok($obj2, 'Gitalist::Git::Object::Blob');
73 is($obj2->type, 'blob', 'hash_by_path obj is a file');
74 is($obj2->content, "foo\n", 'hash_by_path obj is a file');
75
76 my $obj3 = $proj->get_object($proj->head_hash);
77 isa_ok($obj3, 'Gitalist::Git::Object::Commit');
78
79 like($proj->head_hash('HEAD'), qr/^([0-9a-fA-F]{40})$/, 'head_hash');
80
81 {
82     my @tree = $proj->list_tree('3bc0634310b9c62222bb0e724c11ffdfb297b4ac');
83     is(scalar @tree, 1, "tree array contains one entry.");
84     isa_ok($tree[0], 'Gitalist::Git::Object', 'tree element 0');
85 }
86
87 my $owner = $proj->owner;
88 is_flagged_utf8($owner, "Owner name is flagged as utf8");
89 is_sane_utf8($owner, "Owner name is not double-encoded");
90 is($owner, decode_utf8("T\x{c3}\x{a9}st"),  "Owner name is correct");