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