X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=t%2Fsolver_git.t;h=0090bc06d6165c9fd44ca57745c26b3413cc33e0;hb=ee8746e6db4dbe5a6cdb0d6080f467bc27693b3a;hp=5519fa1817e1d2971d9e34d0b8cdf2ebb41ff2ee;hpb=1c5e51b931fb2a00df28dd5e81d1766b63e389b3;p=public-inbox.git diff --git a/t/solver_git.t b/t/solver_git.t index 5519fa18..0090bc06 100644 --- a/t/solver_git.t +++ b/t/solver_git.t @@ -293,7 +293,7 @@ EOF is($res->code, 404, 'failure with null OID'); $res = $cb->(GET("/$name/$non_existent/s/")); - is($res->code, 404, 'failure with null OID'); + is($res->code, 404, 'failure with non-existent OID'); $res = $cb->(GET("/$name/$v1_0_0_tag/s/")); is($res->code, 200, 'shows commit (unabbreviated)'); @@ -336,7 +336,7 @@ EOF 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//sm, + ok($s =~ s/^.*? exit status=[1-9]+\n\z//sm, 'got exit status warning'); is($s, '', 'no unexpected warnings on empty coderepo'); } @@ -383,11 +383,34 @@ EOF } $res = $cb->(GET('/public-inbox/tree/')); - is($res->code, 302, 'got redirect'); + is($res->code, 200, 'got 200 for root listing'); + $got = $res->content; + like($got, qr/\bgit ls-tree\b/, 'ls-tree help shown'); + $res = $cb->(GET('/public-inbox/tree/README')); - is($res->code, 302, 'got redirect for regular file'); + is($res->code, 200, 'got 200 for regular file'); + $got = $res->content; + like($got, qr/\bgit show\b/, 'git show help shown'); + $res = $cb->(GET('/public-inbox/tree/Documentation')); - is($res->code, 302, 'got redirect for directory'); + 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 };