X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;ds=sidebyside;f=t%2Fmid.t;h=7005101ff3f89b8d9506c4dd46477437ce096ef5;hb=a5c812fb9d39adcf6ae7e63c15177ac3ce0cadfb;hp=ecac04deaa215d3a6a6eb33627b6609aa0f52c63;hpb=e3e9ebdaaf2c2f8192fc003f1857979f933b9a8b;p=public-inbox.git diff --git a/t/mid.t b/t/mid.t index ecac04de..7005101f 100644 --- a/t/mid.t +++ b/t/mid.t @@ -2,12 +2,18 @@ # License: AGPL-3.0+ use strict; use Test::More; -use PublicInbox::MID qw(mid_escape mids references mids_for_index); +use PublicInbox::MID qw(mid_escape mids references mids_for_index id_compress); is(mid_escape('foo!@(bar)'), 'foo!@(bar)'); is(mid_escape('foo%!@(bar)'), 'foo%25!@(bar)'); is(mid_escape('foo%!@(bar)'), 'foo%25!@(bar)'); +# n.b: this is probably invalid since we dropped CGI for PSGI: +like(id_compress('foo%bar@wtf'), qr/\A[a-f0-9]{40}\z/, + "percent always converted to sha1 to workaround buggy httpds"); + +is(id_compress('foobar-wtf'), 'foobar-wtf', 'regular ID not compressed'); + { use Email::MIME; my $mime = Email::MIME->create;