about summary refs log tree commit homepage
path: root/t/repobrowse.t
diff options
context:
space:
mode:
Diffstat (limited to 't/repobrowse.t')
-rw-r--r--t/repobrowse.t21
1 files changed, 21 insertions, 0 deletions
diff --git a/t/repobrowse.t b/t/repobrowse.t
new file mode 100644
index 00000000..de8a7952
--- /dev/null
+++ b/t/repobrowse.t
@@ -0,0 +1,21 @@
+# Copyright (C) 2016 all contributors <meta@public-inbox.org>
+# License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
+use strict;
+use warnings;
+
+my $test = require './t/repobrowse_common_git.perl';
+test_psgi($test->{app}, sub {
+        my ($cb) = @_;
+        my $req = 'http://example.com/test.git/tree/dir';
+        my $res = $cb->(GET($req . '/'));
+        is($res->code, 301, 'got 301 with trailing slash');
+        is($res->header('Location'), $req, 'redirected without tslash');
+
+        my $q = '?id=deadbeef';
+
+        $res = $cb->(GET($req . "/$q"));
+        is($res->code, 301, 'got 301 with trailing slash + query string');
+        is($res->header('Location'), $req.$q, 'redirected without tslash');
+});
+
+done_testing();