about summary refs log tree commit homepage
path: root/t/plack.t
diff options
context:
space:
mode:
authorEric Wong (Contractor, The Linux Foundation) <e@80x24.org>2018-03-29 09:57:56 +0000
committerEric Wong (Contractor, The Linux Foundation) <e@80x24.org>2018-03-29 10:00:08 +0000
commit34d6aff1ca223521d8137f642a58db077ab70df0 (patch)
tree04ce63866f65b593dd6029b9f6a80dccd0f252c1 /t/plack.t
parenta11bcd26245427e16f7e62d99b9707522e2d64e2 (diff)
downloadpublic-inbox-34d6aff1ca223521d8137f642a58db077ab70df0.tar.gz
Back in the day, we compressed long Message-IDs to SHA-1
hexdigests for the URL.  This now redirects to a 301 in
the hopes we can remove these checks some day to reduce
overhead.
Diffstat (limited to 't/plack.t')
-rw-r--r--t/plack.t18
1 files changed, 18 insertions, 0 deletions
diff --git a/t/plack.t b/t/plack.t
index 26b03660..7eb7d7f2 100644
--- a/t/plack.t
+++ b/t/plack.t
@@ -18,6 +18,7 @@ foreach my $mod (@mods) {
 }
 use_ok 'PublicInbox::Import';
 use_ok 'PublicInbox::Git';
+my @ls;
 
 foreach my $mod (@mods) { use_ok $mod; }
 {
@@ -55,6 +56,8 @@ EOF
                 $im->done;
                 my $rev = `git --git-dir="$maindir" rev-list HEAD`;
                 like($rev, qr/\A[a-f0-9]{40}/, "good revision committed");
+                @ls = `git --git-dir="$maindir" ls-tree -r --name-only HEAD`;
+                chomp @ls;
         }
         my $app = eval {
                 local $ENV{PI_CONFIG} = $pi_config;
@@ -198,6 +201,21 @@ EOF
                              "$sfx redirected to /mbox.gz");
                 });
         }
+        test_psgi($app, sub {
+                my ($cb) = @_;
+                # for a while, we used to support /$INBOX/$X40/
+                # when we "compressed" long Message-IDs to SHA-1
+                # Now we're stuck supporting them forever :<
+                foreach my $path (@ls) {
+                        $path =~ tr!/!!d;
+                        my $from = "http://example.com/test/$path/";
+                        my $res = $cb->(GET($from));
+                        is(301, $res->code, 'is permanent redirect');
+                        like($res->header('Location'),
+                                qr!/test/blah\@example\.com/!,
+                                'redirect from x40 MIDs works');
+                }
+        });
 }
 
 done_testing();