X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=t%2Freply.t;h=de31f8800be717ddb2bee17a7db3063a6253676e;hb=4db4bfa2c9178b315d2ac09cff794a4476ba1f6e;hp=640069cb8cc5b4e961d216dc3b22b54425489cca;hpb=ef3ca9b80fcb464d851c2f8d87f3f02f4f70986d;p=public-inbox.git diff --git a/t/reply.t b/t/reply.t index 640069cb..de31f880 100644 --- a/t/reply.t +++ b/t/reply.t @@ -1,4 +1,4 @@ -# Copyright (C) 2017 all contributors +# Copyright (C) 2017-2018 all contributors # License: AGPL-3+ use strict; use warnings; @@ -64,4 +64,16 @@ $ibx->{replyto} = 'new@example.com'; $exp = [ '--in-reply-to=blah@example.com', '--to=new@example.com' ]; is_deeply($arg, $exp, 'explicit address works, too'); +$ibx->{replyto} = ':all'; +$ibx->{obfuscate} = 1; +($arg, $link) = PublicInbox::Reply::mailto_arg_link($ibx, $hdr); +$exp = [ + '--in-reply-to=blah@example.com', + '--to=from@example$(echo .)com', + '--cc=cc@example$(echo .)com', + '--cc=to@example$(echo .)com' +]; +is_deeply($arg, $exp, 'address obfuscation works'); +is($link, '', 'no mailto: link given'); + done_testing();