X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=t%2Flinkify.t;h=72262fd0f2fea96b06b40cb99d1e2554d9abc436;hb=b41c19abcf0b0ac8a5f55678bfb0058ad50b3179;hp=041c15c73144efcd8c966ce08f71f7ed10c9e94f;hpb=dfdaf74a2ab6d694315d8f636e3771a7a7934f3f;p=public-inbox.git diff --git a/t/linkify.t b/t/linkify.t index 041c15c7..72262fd0 100644 --- a/t/linkify.t +++ b/t/linkify.t @@ -1,4 +1,4 @@ -# Copyright (C) 2016 all contributors +# Copyright (C) 2016-2019 all contributors # License: AGPL-3.0+ use strict; use warnings; @@ -14,6 +14,15 @@ use PublicInbox::Linkify; is($s, qq($u.), 'trailing period not in URL'); } +{ + my $l = PublicInbox::Linkify->new; + my $u = 'http://i-forgot-trailing-slash.example.com'; + my $s = $u; + $s = $l->linkify_1($s); + $s = $l->linkify_2($s); + is($s, qq($u), 'missing trailing slash OK'); +} + # handle URLs in parenthesized statements { my $l = PublicInbox::Linkify->new; @@ -41,6 +50,11 @@ use PublicInbox::Linkify; $s = $l->linkify_2($s); is($s, qq(hello $u world), 'URL preserved'); + $s = "$u. hi"; + $s = $l->linkify_1($s); + $s = $l->linkify_2($s); + is($s, qq($u. hi), 'paired () in URL OK'); + $u .= "?query=a"; $s = "hello $u world"; $s = $l->linkify_1($s); @@ -89,4 +103,45 @@ use PublicInbox::Linkify; 'Markdown-compatible end of sentence'); } +# Perl and Ruby code compatibility +{ + my $l = PublicInbox::Linkify->new; + my $u = 'http://example.com/'; + foreach my $q ("'%s'", '"%s"', 'q!%s!', 'q(%s)') { + # Perl + my $s = sprintf("my \$var = $q;", $u); + $s = $l->linkify_1($s); + $s = $l->linkify_2($s); + like($s, qr/>\Q$u\Elinkify_1($s); + $s = $l->linkify_2($s); + like($s, qr/>\Q$u\Enew; + my $s = '(see http://example.com/).'; + $s = $l->linkify_1($s); + $s = $l->linkify_2($s); + like($s, qr!\(see ]+>http://example\.com/\)\.!s, + 'punctuation with unpaired ) OK') +} + +if ('IDN example: ') { + my $hc = '月'; + my $u = "http://www.\x{6708}.example.com/"; + my $s = $u; + my $l = PublicInbox::Linkify->new; + $s = $l->linkify_1($s); + $s = $l->linkify_2($s); + my $expect = qq{http://www.$hc.example.com/}; + is($s, $expect, 'IDN message escaped properly'); +} + done_testing();