Fix a few test annoyances.
[catagits/Gitalist.git] / t / 02git_Repository.t
CommitLineData
5ed74c87 1use FindBin qw/$Bin/;
df629266 2BEGIN {
0556ab26 3 my $env = "$FindBin::Bin/../script/env";
df629266 4 if (-r $env) {
5 do $env or die $@;
6 }
7}
8
56b6dbe6 9use strict;
10use warnings;
56b6dbe6 11use Test::More qw/no_plan/;
b5b638f7 12use Test::Exception;
5effb2c9 13use Test::utf8;
14use Encode qw/decode_utf8/;
56b6dbe6 15use Data::Dumper;
16
5effb2c9 17BEGIN {
18 # Mocking to allow testing regardless of the user's locale
8221d7e1 19 require I18N::Langinfo if $^O ne 'MSWin32';
5effb2c9 20 no warnings 'redefine';
b6e0be6c 21 *I18N::Langinfo::langinfo = sub(_) {
5effb2c9 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
44a9ed75 31BEGIN { use_ok 'Gitalist::Git::Repository' }
56b6dbe6 32
b5b638f7 33dies_ok {
44a9ed75 34 my $proj = Gitalist::Git::Repository->new();
82bc0f05 35} 'New repository with no args';
b5b638f7 36
56b6dbe6 37use Path::Class;
58251520 38my $gitdir = dir("$Bin/lib/repositories/repo1");
4baaeeef 39
44a9ed75 40my $proj = Gitalist::Git::Repository->new($gitdir);
41isa_ok($proj, 'Gitalist::Git::Repository');
82bc0f05 42is($proj->path, $gitdir, 'repository path is set');
43isa_ok($proj->path, 'Path::Class::Dir', 'repository path');
56b6dbe6 44is($proj->name, qw/repo1/, 'repository name is set');
45is($proj->description, qq/some test repository/, 'repository description loaded');
46isa_ok($proj->last_change, 'DateTime', 'last_change');
c8eaa67f 47
c65cccc2 48my %references = %{$proj->references};
49ok(keys %references >= 2, '->references hash has elements');
09717a40 50is($references{'36c6c6708b8360d7023e8a1649c45bcf9b3bd818'}->[0], 'tags/0.01', 'reference looks ok');
c65cccc2 51my @heads = @{$proj->heads};
c73be54e 52ok(scalar @heads > 1, '->heads list has more than one element');
03bf0cab 53my $head = $heads[1];
54isa_ok($head, 'Gitalist::Git::Head');
09717a40 55is($proj->head_hash, 'd6ddf8b26be63066e01d96a0922c87cd8d6e2270', 'head_hash for HEAD is correct');
56is($proj->head_hash('refs/heads/master'), 'd6ddf8b26be63066e01d96a0922c87cd8d6e2270', 'head_hash for refs/heads/master is correct');
839da3d7 57is($proj->head_hash('rafs/head/mister'), undef, 'head_hash for rafs/head/mister is undef');
a8a8f8f9 58
cc57f1d2 59ok(scalar @{$proj->tags} == 1, '->tags list has one element');
60
54368e9d 61# Return an ::Object from a sha1
467fa7d9 62my $obj1 = $proj->get_object('729a7c3f6ba5453b42d16a43692205f67fb23bc1');
e1307124 63isa_ok($obj1, 'Gitalist::Git::Object::Tree');
54368e9d 64
9aed017f 65my $obj3 = $proj->get_object($proj->head_hash);
66isa_ok($obj3, 'Gitalist::Git::Object::Commit');
67
b9708061 68my $obj2 = $obj3->sha_by_path('dir1/file2');
e1307124 69isa_ok($obj2, 'Gitalist::Git::Object::Blob');
9aed017f 70is($obj2->type, 'blob', 'sha_by_path obj is a blob');
71is($obj2->content, "foo\n", 'sha_by_path obj content is correct');
85762693 72
e1307124 73
85762693 74like($proj->head_hash('HEAD'), qr/^([0-9a-fA-F]{40})$/, 'head_hash');
75
76{
887b6c70 77 my @tree = @{$obj3->tree};
85762693 78 is(scalar @tree, 1, "tree array contains one entry.");
e75df318 79 isa_ok($tree[0], 'Gitalist::Git::Object', 'tree element 0');
85762693 80}
81
0c3a1f2b 82$proj->{owner} = decode_utf8("T\x{c3}\x{a9}st") if $^O eq 'MSWin32';
83
5effb2c9 84my $owner = $proj->owner;
85is_flagged_utf8($owner, "Owner name is flagged as utf8");
86is_sane_utf8($owner, "Owner name is not double-encoded");
87is($owner, decode_utf8("T\x{c3}\x{a9}st"), "Owner name is correct");
5c07fcf1 88
89is_deeply $proj->pack, {
90 __CLASS__ => 'Gitalist::Git::Repository',
91 description => 'some test repository',
92 heads => [
93 {
94 __CLASS__ => 'Gitalist::Git::Head',
09717a40 95 committer => 'Dan Brook <broq@cpan.org>',
96 last_change => '2011-06-05T23:00:44Z',
97 name => 'master',
98 sha1 => 'd6ddf8b26be63066e01d96a0922c87cd8d6e2270',
99 },
100 {
101 __CLASS__ => 'Gitalist::Git::Head',
5c07fcf1 102 committer => 'Zachary Stevens <zts@cryptocracy.com>',
103 last_change => '2009-11-12T19:00:34Z',
104 name => 'branch1',
105 sha1 => '0710a7c8ee11c73e8098d08f9384c2a839c65e4e'
106 },
5c07fcf1 107 ],
108 is_bare => 1,
09717a40 109 last_change => '2011-06-05T23:00:44Z',
5c07fcf1 110 name => 'repo1',
111 owner => "T\351st",
112 references => {
09717a40 113 "d6ddf8b26be63066e01d96a0922c87cd8d6e2270" => ['heads/master'],
114 "36c6c6708b8360d7023e8a1649c45bcf9b3bd818" => ['tags/0.01'],
5c07fcf1 115 "0710a7c8ee11c73e8098d08f9384c2a839c65e4e" => [ 'heads/branch1' ]
116 },
117 tags => [ {
118 __CLASS__
119 => 'Gitalist::Git::Tag',
120 committer
121 => 'Florian Ragwitz <rafl@debian.org>',
122 last_change
123 => '2007-03-06T20:44:35Z',
124 name => 0.01,
125 sha1 => '36c6c6708b8360d7023e8a1649c45bcf9b3bd818',
126 type => 'commit'
127 } ]
128}, 'Serialized correctly';