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