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