X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F02git_Repository.t;h=95651430211d3e5758a291509419437004bca161;hb=6405c9dd2995dca2c8eb0045e4925edbc114e33e;hp=d12fd1485a245d57a7ab687f4cc2f7efb1be429a;hpb=cc57f1d24f798fd6999ba99fe4e4c95a43ef76ba;p=catagits%2FGitalist.git diff --git a/t/02git_Repository.t b/t/02git_Repository.t index d12fd14..9565143 100644 --- a/t/02git_Repository.t +++ b/t/02git_Repository.t @@ -13,14 +13,17 @@ use Test::Exception; use Test::utf8; use Encode qw/decode_utf8/; use Data::Dumper; +use Scalar::Util qw/set_prototype/; BEGIN { # Mocking to allow testing regardless of the user's locale - require I18N::Langinfo; + require I18N::Langinfo if $^O ne 'MSWin32'; no warnings 'redefine'; - *I18N::Langinfo::langinfo = sub($) { + my $stub = sub { return "UTF-8" if $_[0] == I18N::Langinfo::CODESET(); }; + set_prototype \&$stub, ($] <= 5.008009) ? '$' : '_'; + *I18N::Langinfo::langinfo = $stub; *CORE::GLOBAL::getpwuid = sub { wantarray ? ("test", "x", "1000", "1000", "", "", "T\x{c3}\x{a9}st", "/home/test", "/bin/bash") @@ -47,13 +50,13 @@ isa_ok($proj->last_change, 'DateTime', 'last_change'); my %references = %{$proj->references}; ok(keys %references >= 2, '->references hash has elements'); -is($references{'36c6c6708b8360d7023e8a1649c45bcf9b3bd818'}->[0], 'heads/master', 'reference looks ok'); +is($references{'36c6c6708b8360d7023e8a1649c45bcf9b3bd818'}->[0], 'tags/0.01', 'reference looks ok'); my @heads = @{$proj->heads}; ok(scalar @heads > 1, '->heads list has more than one element'); my $head = $heads[1]; isa_ok($head, 'Gitalist::Git::Head'); -is($proj->head_hash, '36c6c6708b8360d7023e8a1649c45bcf9b3bd818', 'head_hash for HEAD is correct'); -is($proj->head_hash('refs/heads/master'), '36c6c6708b8360d7023e8a1649c45bcf9b3bd818', 'head_hash for refs/heads/master is correct'); +is($proj->head_hash, 'd6ddf8b26be63066e01d96a0922c87cd8d6e2270', 'head_hash for HEAD is correct'); +is($proj->head_hash('refs/heads/master'), 'd6ddf8b26be63066e01d96a0922c87cd8d6e2270', 'head_hash for refs/heads/master is correct'); is($proj->head_hash('rafs/head/mister'), undef, 'head_hash for rafs/head/mister is undef'); ok(scalar @{$proj->tags} == 1, '->tags list has one element'); @@ -79,7 +82,50 @@ like($proj->head_hash('HEAD'), qr/^([0-9a-fA-F]{40})$/, 'head_hash'); isa_ok($tree[0], 'Gitalist::Git::Object', 'tree element 0'); } +$proj->{owner} = decode_utf8("T\x{c3}\x{a9}st") if $^O eq 'MSWin32'; + my $owner = $proj->owner; is_flagged_utf8($owner, "Owner name is flagged as utf8"); is_sane_utf8($owner, "Owner name is not double-encoded"); is($owner, decode_utf8("T\x{c3}\x{a9}st"), "Owner name is correct"); + +is_deeply $proj->pack, { + __CLASS__ => 'Gitalist::Git::Repository', + description => 'some test repository', + heads => [ + { + __CLASS__ => 'Gitalist::Git::Head', + committer => 'Dan Brook ', + last_change => '2011-06-05T23:00:44Z', + name => 'master', + sha1 => 'd6ddf8b26be63066e01d96a0922c87cd8d6e2270', + }, + { + __CLASS__ => 'Gitalist::Git::Head', + committer => 'Zachary Stevens ', + last_change => '2009-11-12T19:00:34Z', + name => 'branch1', + sha1 => '0710a7c8ee11c73e8098d08f9384c2a839c65e4e' + }, + ], + is_bare => 1, + last_change => '2011-06-05T23:00:44Z', + name => 'repo1', + owner => "T\351st", + references => { + "d6ddf8b26be63066e01d96a0922c87cd8d6e2270" => ['heads/master'], + "36c6c6708b8360d7023e8a1649c45bcf9b3bd818" => ['tags/0.01'], + "0710a7c8ee11c73e8098d08f9384c2a839c65e4e" => [ 'heads/branch1' ] + }, + tags => [ { + __CLASS__ + => 'Gitalist::Git::Tag', + committer + => 'Florian Ragwitz ', + last_change + => '2007-03-06T20:44:35Z', + name => 0.01, + sha1 => '36c6c6708b8360d7023e8a1649c45bcf9b3bd818', + type => 'commit' + } ] +}, 'Serialized correctly';