X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=t%2Fsolver_git.t;h=1baa012b1abeb56a77c98519e8a27b08697aafe9;hb=refs%2Fheads%2Fmaster;hp=122cf888eae7c31f634a13f9547de953a2492422;hpb=686fb938a2a27beca406af6e8ab819aad608b06e;p=public-inbox.git diff --git a/t/solver_git.t b/t/solver_git.t index 122cf888..c65d9785 100644 --- a/t/solver_git.t +++ b/t/solver_git.t @@ -330,18 +330,16 @@ EOF defined($ENV{PLACK_TEST_EXTERNALSERVER_URI}) or open STDERR, '>&', $olderr or xbail "open: $!"; is($res->code, 200, 'coderepo summary (binfoo)'); - if (ok(-s "$tmpdir/stderr.log")) { - open my $fh, '<', "$tmpdir/stderr.log" or xbail $!; - my $s = do { local $/; <$fh> }; - open $fh, '>', "$tmpdir/stderr.log" or xbail $!; - ok($s =~ s/^fatal: your current branch.*?\n//sm, - 'got current branch warning'); - ok($s =~ s/^.*? exit status=[1-9]+\n\z//sm, - 'got exit status warning'); - is($s, '', 'no unexpected warnings on empty coderepo'); - } + ok(!-s "$tmpdir/stderr.log"); $res = $cb->(GET('/public-inbox/')); is($res->code, 200, 'coderepo summary (public-inbox)'); + + my $tip = 'invalid-'.int(rand(0xdeadbeef)); + $res = $cb->(GET('/public-inbox/?h='.$tip)); + is($res->code, 200, 'coderepo summary on dead branch'); + like($res->content, qr/no commits in `\Q$tip\E', yet/, + 'lack of commits noted'); + $res = $cb->(GET('/public-inbox')); is($res->code, 301, 'redirected'); @@ -379,7 +377,10 @@ EOF ok($t->{feed}->{entry}, 'got entry'); $res = $cb->(GET('/public-inbox/atom/README.md')); - is($res->code, 404, '404 on non-existent file Atom feed'); + is($res->code, 404, '404 on missing file Atom feed'); + + $res = $cb->(GET('/public-inbox/atom/?h=gone')); + is($res->code, 404, '404 on missing Atom feed branch'); } $res = $cb->(GET('/public-inbox/tree/')); @@ -396,6 +397,21 @@ EOF is($res->code, 200, 'got 200 for a directory'); $got = $res->content; like($got, qr/\bgit ls-tree\b/, 'ls-tree help shown'); + + $res = $cb->(GET('/public-inbox/tree/?h=no-branch')); + is($res->code, 404, 'got 404 for non-existent ref root'); + $res = $cb->(GET('/public-inbox/tree/README?h=no-file')); + is($res->code, 404, 'got 404 for non-existent ref README'); + $res = $cb->(GET('/public-inbox/tree/Documentation?h=no-dir')); + is($res->code, 404, 'got 404 for non-existent ref directory'); + + $res = $cb->(GET('/public-inbox/tags.atom')); + is($res->code, 200, 'Atom feed'); + SKIP: { + require_mods('XML::TreePP', 1); + my $t = XML::TreePP->new->parse($res->content); + ok(scalar @{$t->{feed}->{entry}}, 'got tag entries'); + } }; test_psgi(sub { $www->call(@_) }, $client); my $env = { PI_CONFIG => $cfgpath, TMPDIR => $tmpdir };