]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/linkify.t
public-inbox 1.1.0-pre1
[public-inbox.git] / t / linkify.t
index 586691ae6474bb4eb8424189040e896597f5105c..a55ed22a19118d686bbde4c48e7abf4494c9b038 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2016 all contributors <meta@public-inbox.org>
+# Copyright (C) 2016-2018 all contributors <meta@public-inbox.org>
 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
 use strict;
 use warnings;
@@ -14,6 +14,16 @@ use PublicInbox::Linkify;
        is($s, qq(<a\nhref="$u">$u</a>.), 'trailing period not in URL');
 }
 
+# handle URLs in parenthesized statements
+{
+       my $l = PublicInbox::Linkify->new;
+       my $u = 'http://example.com/';
+       my $s = "(see: $u)";
+       $s = $l->linkify_1($s);
+       $s = $l->linkify_2($s);
+       is($s, qq{(see: <a\nhref="$u">$u</a>)}, 'trailing ) not in URL');
+}
+
 {
        my $l = PublicInbox::Linkify->new;
        my $u = 'http://example.com/url-with-trailing-semicolon';
@@ -23,4 +33,60 @@ 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");
+}
+
+# Markdown compatibility
+{
+       my $l = PublicInbox::Linkify->new;
+       my $u = 'http://example.com/';
+       my $s = "[markdown]($u)";
+       $s = $l->linkify_1($s);
+       $s = $l->linkify_2($s);
+       is($s, qq![markdown](<a\nhref="$u">$u</a>)!, 'Markdown-compatible');
+
+       $s = qq![markdown]($u "title")!;
+       $s = $l->linkify_1($s);
+       $s = $l->linkify_2($s);
+       is($s, qq![markdown](<a\nhref="$u">$u</a> "title")!,
+               'Markdown title compatible');
+
+       $s = qq![markdown]($u).!;
+       $s = $l->linkify_1($s);
+       $s = $l->linkify_2($s);
+       is($s, qq![markdown](<a\nhref="$u">$u</a>).!,
+               'Markdown-compatible end of sentence');
+}
+
 done_testing();