]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/linkify.t
git: unconditional expiry
[public-inbox.git] / t / linkify.t
index a55ed22a19118d686bbde4c48e7abf4494c9b038..fe218b91f95c4a89e0d3eaea0e6a2d6052b39c53 100644 (file)
@@ -14,6 +14,15 @@ use PublicInbox::Linkify;
        is($s, qq(<a\nhref="$u">$u</a>.), '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(<a\nhref="$u">$u</a>), '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 <a\nhref="$u">$u</a> world), 'URL preserved');
 
+       $s = "$u. hi";
+       $s = $l->linkify_1($s);
+       $s = $l->linkify_2($s);
+       is($s, qq(<a\nhref="$u">$u</a>. hi), 'paired () in URL OK');
+
        $u .= "?query=a";
        $s = "hello $u world";
        $s = $l->linkify_1($s);
@@ -89,4 +103,33 @@ 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\E</, "no quote($q) in URL");
+
+               # applies to Ruby, too
+               $s = sprintf("$q,", $u);
+               $s = $l->linkify_1($s);
+               $s = $l->linkify_2($s);
+               like($s, qr/>\Q$u\E</, "no quote($q) in URL array");
+       }
+}
+
+# dangling ')'  cf. see MaintNotes in git.git todo branch
+{
+       my $l = PublicInbox::Linkify->new;
+       my $s = '(see http://example.com/).';
+       $s = $l->linkify_1($s);
+       $s = $l->linkify_2($s);
+       like($s, qr!\(see <a[^>]+>http://example\.com/</a>\)\.!s,
+               'punctuation with unpaired ) OK')
+}
+
 done_testing();