4 use Test::More tests => 13;
6 BEGIN { use_ok("IkiWiki"); }
13 my @existing_pages=@{shift()};
15 # This is what linkify and htmllink need set right now to work.
16 # This could change, if so, update it..
17 %IkiWiki::pagecase=();
19 foreach my $page (@existing_pages) {
20 $IkiWiki::pagecase{lc $page}=$page;
22 $renderedfiles{"$page.mdwn"}=$page;
24 %config=IkiWiki::defaultconfig();
26 return IkiWiki::linkify($lpage, $page, $content);
33 if ($content =~ m!<a href="[^"]*\Q$link\E[^"]*">!) {
37 print STDERR "# expected link to $link in $content\n";
42 sub not_links_to ($$) {
46 if ($content !~ m!<a href="[^"]*\Q$link\E[^"]*">!) {
50 print STDERR "# expected no link to $link in $content\n";
59 if ($content =~ m!>\Q$text\E</a>!) {
63 print STDERR "# expected link text $text in $content\n";
69 ok(links_to("bar", linkify("foo", "foo", "link to [[bar]] ok", ["foo", "bar"])), "ok link");
70 ok(not_links_to("bar", linkify("foo", "foo", "link to \\[[bar]] ok", ["foo", "bar"])), "escaped link");
71 ok(links_to("page=bar", linkify("foo", "foo", "link to [[bar]] ok", ["foo"])), "broken link");
72 ok(links_to("bar", linkify("foo", "foo", "link to [[baz]] and [[bar]] ok", ["foo", "baz", "bar"])), "dual links");
73 ok(links_to("baz", linkify("foo", "foo", "link to [[baz]] and [[bar]] ok", ["foo", "baz", "bar"])), "dual links");
74 ok(links_to("bar", linkify("foo", "foo", "link to [[some_page|bar]] ok", ["foo", "bar"])), "named link");
75 ok(links_text("some page", linkify("foo", "foo", "link to [[some_page|bar]] ok", ["foo", "bar"])), "named link text");
76 ok(links_to("bar", linkify("foo", "foo", "link to [[some page|bar]] ok", ["foo", "bar"])), "named link, with whitespace");
77 ok(links_text("some page", linkify("foo", "foo", "link to [[some page|bar]] ok", ["foo", "bar"])), "named link text, with whitespace");
78 ok(links_text("Some long, & complex page name.", linkify("foo", "foo", "link to [[Some long, & complex page name.|bar]] ok, and this is not a link]] here", ["foo", "bar"])), "complex named link text");
79 ok(links_to("foo/bar", linkify("foo/item", "foo", "link to [[bar]] ok", ["foo", "foo/item", "foo/bar"])), "inline page link");
80 ok(links_to("bar", linkify("foo", "foo", "link to [[bar]] ok", ["foo", "foo/item", "foo/bar"])), "same except not inline");