Correct example link and FCGI script.
[catagits/Gitalist.git] / t / 02git_Repository.t
CommitLineData
56b6dbe6 1use strict;
2use warnings;
3use FindBin qw/$Bin/;
4use Test::More qw/no_plan/;
b5b638f7 5use Test::Exception;
5effb2c9 6use Test::utf8;
7use Encode qw/decode_utf8/;
56b6dbe6 8use Data::Dumper;
9
5effb2c9 10BEGIN {
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
44a9ed75 24BEGIN { use_ok 'Gitalist::Git::Repository' }
56b6dbe6 25
b5b638f7 26dies_ok {
44a9ed75 27 my $proj = Gitalist::Git::Repository->new();
82bc0f05 28} 'New repository with no args';
b5b638f7 29
56b6dbe6 30use Path::Class;
58251520 31my $gitdir = dir("$Bin/lib/repositories/repo1");
4baaeeef 32
44a9ed75 33my $proj = Gitalist::Git::Repository->new($gitdir);
34isa_ok($proj, 'Gitalist::Git::Repository');
82bc0f05 35is($proj->path, $gitdir, 'repository path is set');
36isa_ok($proj->path, 'Path::Class::Dir', 'repository path');
56b6dbe6 37is($proj->name, qw/repo1/, 'repository name is set');
38is($proj->description, qq/some test repository/, 'repository description loaded');
39isa_ok($proj->last_change, 'DateTime', 'last_change');
c8eaa67f 40
41is_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};
ce2bd1e0 49
50is_deeply $proj->pack, {
51 '__CLASS__' => 'Gitalist::Git::Repository',
52 'is_bare' => 1,
53 'owner' => "T\x{e9}st",
54 'last_change' => '2009-11-12T19:00:34Z',
55 'name' => 'repo1',
56 'description' => 'some test repository'
57};
56b6dbe6 58
c65cccc2 59my %references = %{$proj->references};
60ok(keys %references >= 2, '->references hash has elements');
61is($references{'36c6c6708b8360d7023e8a1649c45bcf9b3bd818'}->[0], 'heads/master', 'reference looks ok');
62my @heads = @{$proj->heads};
c73be54e 63ok(scalar @heads > 1, '->heads list has more than one element');
64my %head = %{$heads[1]};
65ok(keys %head == 3, '->heads[1] has the right number of keys');
66ok(defined $head{sha1}, '->heads[1]-sha1 is defined');
67ok(defined $head{name}, '->heads[1]-name is defined');
839da3d7 68is($proj->head_hash, '36c6c6708b8360d7023e8a1649c45bcf9b3bd818', 'head_hash for HEAD is correct');
69is($proj->head_hash('refs/heads/master'), '36c6c6708b8360d7023e8a1649c45bcf9b3bd818', 'head_hash for refs/heads/master is correct');
70is($proj->head_hash('rafs/head/mister'), undef, 'head_hash for rafs/head/mister is undef');
a8a8f8f9 71
72is(scalar $proj->list_tree, 2, 'expected number of entries in tree');
54368e9d 73isa_ok(($proj->list_tree)[1], 'Gitalist::Git::Object');
74
75# Return an ::Object from a sha1
467fa7d9 76my $obj1 = $proj->get_object('729a7c3f6ba5453b42d16a43692205f67fb23bc1');
e1307124 77isa_ok($obj1, 'Gitalist::Git::Object::Tree');
54368e9d 78
fc11c7f1 79my $hbp_sha1 = $proj->hash_by_path('36c6c6708b8360d7023e8a1649c45bcf9b3bd818', 'dir1/file2');
80my $obj2 = $proj->get_object($hbp_sha1);
e1307124 81isa_ok($obj2, 'Gitalist::Git::Object::Blob');
fc11c7f1 82is($obj2->type, 'blob', 'hash_by_path obj is a file');
56908878 83is($obj2->content, "foo\n", 'hash_by_path obj is a file');
85762693 84
e1307124 85my $obj3 = $proj->get_object($proj->head_hash);
86isa_ok($obj3, 'Gitalist::Git::Object::Commit');
87
85762693 88like($proj->head_hash('HEAD'), qr/^([0-9a-fA-F]{40})$/, 'head_hash');
89
90{
91 my @tree = $proj->list_tree('3bc0634310b9c62222bb0e724c11ffdfb297b4ac');
92 is(scalar @tree, 1, "tree array contains one entry.");
e75df318 93 isa_ok($tree[0], 'Gitalist::Git::Object', 'tree element 0');
85762693 94}
95
5effb2c9 96my $owner = $proj->owner;
97is_flagged_utf8($owner, "Owner name is flagged as utf8");
98is_sane_utf8($owner, "Owner name is not double-encoded");
99is($owner, decode_utf8("T\x{c3}\x{a9}st"), "Owner name is correct");