]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/linkify.t
linkify: be stricter about matching RFC 3986
[public-inbox.git] / t / linkify.t
index 586691ae6474bb4eb8424189040e896597f5105c..49cbbd64edf5d18ca1892f91abd111afed88407e 100644 (file)
@@ -23,4 +23,38 @@ use PublicInbox::Linkify;
        is($s, qq(<a\nhref="$u">$u</a>;), 'trailing semicolon not in URL');
 }
 
+{
+       my $l = PublicInbox::Linkify->new;
+       my $u = 'http://example.com/url-with-(parens)';
+       my $s = "hello $u world";
+       $s = $l->linkify_1($s);
+       $s = $l->linkify_2($s);
+       is($s, qq(hello <a\nhref="$u">$u</a> world), 'URL preserved');
+
+       $u .= "?query=a";
+       $s = "hello $u world";
+       $s = $l->linkify_1($s);
+       $s = $l->linkify_2($s);
+       is($s, qq(hello <a\nhref="$u">$u</a> world), 'query preserved');
+
+       $u .= "#fragment";
+       $s = "hello $u world";
+       $s = $l->linkify_1($s);
+       $s = $l->linkify_2($s);
+       is($s, qq(hello <a\nhref="$u">$u</a> world),
+         'query + fragment preserved');
+
+       $u = "http://example.com/";
+       $s = "hello $u world";
+       $s = $l->linkify_1($s);
+       $s = $l->linkify_2($s);
+       is($s, qq(hello <a\nhref="$u">$u</a> world), "root URL preserved");
+
+       $u = "http://example.com/#fragment";
+       $s = "hello $u world";
+       $s = $l->linkify_1($s);
+       $s = $l->linkify_2($s);
+       is($s, qq(hello <a\nhref="$u">$u</a> world), "root + fragment");
+}
+
 done_testing();