]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/mid.t
No ext_urls
[public-inbox.git] / t / mid.t
diff --git a/t/mid.t b/t/mid.t
index 8c307c825d22a7e2747c8f35fb1df0909c798dcb..e2d8dcbf6ccd26be888e71b42b3c4ed02e84a705 100644 (file)
--- a/t/mid.t
+++ b/t/mid.t
@@ -1,16 +1,23 @@
-# Copyright (C) 2016-2018 all contributors <meta@public-inbox.org>
+# Copyright (C) 2016-2021 all contributors <meta@public-inbox.org>
 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
+use strict;
 use Test::More;
-use PublicInbox::MID qw(mid_escape mids references);
+use PublicInbox::Eml;
+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;
-       $mime->header_set('Message-Id', '<mid-1@a>');
+       my $mime = PublicInbox::Eml->new("Message-ID: <mid-1\@a>\n\n");
+       $mime->header_set('X-Alt-Message-ID', '<alt-id-for-nntp>');
        is_deeply(['mid-1@a'], mids($mime->header_obj), 'mids in common case');
        $mime->header_set('Message-Id', '<mid-1@a>', '<mid-2@b>');
        is_deeply(['mid-1@a', 'mid-2@b'], mids($mime->header_obj), '2 mids');
@@ -36,6 +43,14 @@ is(mid_escape('foo%!@(bar)'), 'foo%25!@(bar)');
        $mime->header_set('Message-ID', "<hello\tworld>");
        is_deeply(mids($mime->header_obj), ['helloworld'],
                'drop \t in Message-ID');
+
+       $mime->header_set('To', 'u@example.com');
+       $mime->header_set('References', '<hello> <world> <n> <u@example.com>');
+       is_deeply(references($mime->header_obj), [qw(hello world)]);
+
+       is_deeply([qw(helloworld alt-id-for-nntp)],
+               mids_for_index($mime->header_obj),
+               'X-Alt-Message-ID can be indexed');
 }
 
 done_testing();