Revert "Merge remote branch 't0m/json' into json"
[catagits/Gitalist.git] / t / 02git_Repository.t
CommitLineData
5ed74c87 1use FindBin qw/$Bin/;
2BEGIN { do "$FindBin::Bin/../script/env" or die $@ }
56b6dbe6 3use strict;
4use warnings;
56b6dbe6 5use Test::More qw/no_plan/;
b5b638f7 6use Test::Exception;
5effb2c9 7use Test::utf8;
8use Encode qw/decode_utf8/;
56b6dbe6 9use Data::Dumper;
10
5effb2c9 11BEGIN {
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
44a9ed75 25BEGIN { use_ok 'Gitalist::Git::Repository' }
56b6dbe6 26
b5b638f7 27dies_ok {
44a9ed75 28 my $proj = Gitalist::Git::Repository->new();
82bc0f05 29} 'New repository with no args';
b5b638f7 30
56b6dbe6 31use Path::Class;
58251520 32my $gitdir = dir("$Bin/lib/repositories/repo1");
4baaeeef 33
44a9ed75 34my $proj = Gitalist::Git::Repository->new($gitdir);
35isa_ok($proj, 'Gitalist::Git::Repository');
82bc0f05 36is($proj->path, $gitdir, 'repository path is set');
37isa_ok($proj->path, 'Path::Class::Dir', 'repository path');
56b6dbe6 38is($proj->name, qw/repo1/, 'repository name is set');
39is($proj->description, qq/some test repository/, 'repository description loaded');
40isa_ok($proj->last_change, 'DateTime', 'last_change');
c8eaa67f 41
c65cccc2 42my %references = %{$proj->references};
43ok(keys %references >= 2, '->references hash has elements');
44is($references{'36c6c6708b8360d7023e8a1649c45bcf9b3bd818'}->[0], 'heads/master', 'reference looks ok');
45my @heads = @{$proj->heads};
c73be54e 46ok(scalar @heads > 1, '->heads list has more than one element');
47my %head = %{$heads[1]};
48ok(keys %head == 3, '->heads[1] has the right number of keys');
49ok(defined $head{sha1}, '->heads[1]-sha1 is defined');
50ok(defined $head{name}, '->heads[1]-name is defined');
839da3d7 51is($proj->head_hash, '36c6c6708b8360d7023e8a1649c45bcf9b3bd818', 'head_hash for HEAD is correct');
52is($proj->head_hash('refs/heads/master'), '36c6c6708b8360d7023e8a1649c45bcf9b3bd818', 'head_hash for refs/heads/master is correct');
53is($proj->head_hash('rafs/head/mister'), undef, 'head_hash for rafs/head/mister is undef');
a8a8f8f9 54
55is(scalar $proj->list_tree, 2, 'expected number of entries in tree');
54368e9d 56isa_ok(($proj->list_tree)[1], 'Gitalist::Git::Object');
57
58# Return an ::Object from a sha1
467fa7d9 59my $obj1 = $proj->get_object('729a7c3f6ba5453b42d16a43692205f67fb23bc1');
e1307124 60isa_ok($obj1, 'Gitalist::Git::Object::Tree');
54368e9d 61
fc11c7f1 62my $hbp_sha1 = $proj->hash_by_path('36c6c6708b8360d7023e8a1649c45bcf9b3bd818', 'dir1/file2');
63my $obj2 = $proj->get_object($hbp_sha1);
e1307124 64isa_ok($obj2, 'Gitalist::Git::Object::Blob');
fc11c7f1 65is($obj2->type, 'blob', 'hash_by_path obj is a file');
56908878 66is($obj2->content, "foo\n", 'hash_by_path obj is a file');
85762693 67
e1307124 68my $obj3 = $proj->get_object($proj->head_hash);
69isa_ok($obj3, 'Gitalist::Git::Object::Commit');
70
85762693 71like($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.");
e75df318 76 isa_ok($tree[0], 'Gitalist::Git::Object', 'tree element 0');
85762693 77}
78
5effb2c9 79my $owner = $proj->owner;
80is_flagged_utf8($owner, "Owner name is flagged as utf8");
81is_sane_utf8($owner, "Owner name is not double-encoded");
82is($owner, decode_utf8("T\x{c3}\x{a9}st"), "Owner name is correct");