aboutsummaryrefslogtreecommitdiff
path: root/t/basewiki_brokenlinks.t
diff options
context:
space:
mode:
authorJoey Hess <joey@kodama.kitenet.net>2008-09-11 19:06:44 -0400
committerJoey Hess <joey@kodama.kitenet.net>2008-09-11 19:06:44 -0400
commita7ff240afcbe213b31e45d2b6cf69916721e2537 (patch)
treec93296d3b63840b429e787aacf58dc7042804107 /t/basewiki_brokenlinks.t
parent2d43eda27dce947bff8c86b4a2757589867fba23 (diff)
downloadikiwiki-a7ff240afcbe213b31e45d2b6cf69916721e2537.tar
ikiwiki-a7ff240afcbe213b31e45d2b6cf69916721e2537.tar.gz
test for brokenlinks when listdirectives is enabled, too
Diffstat (limited to 't/basewiki_brokenlinks.t')
-rwxr-xr-xt/basewiki_brokenlinks.t29
1 files changed, 20 insertions, 9 deletions
diff --git a/t/basewiki_brokenlinks.t b/t/basewiki_brokenlinks.t
index 061841482..ac04f800f 100755
--- a/t/basewiki_brokenlinks.t
+++ b/t/basewiki_brokenlinks.t
@@ -3,15 +3,26 @@ use warnings;
use strict;
use Test::More 'no_plan';
-ok(! system("mkdir t/tmp"));
+ok(! system("rm -rf t/tmp; mkdir t/tmp"));
ok(! system("make -s ikiwiki.out"));
ok(! system("make extra_install DESTDIR=`pwd`/t/tmp/install PREFIX=/usr >/dev/null"));
-ok(! system("LC_ALL=C perl -T -I. ./ikiwiki.out -plugin smiley -plugin brokenlinks -rebuild -underlaydir=t/tmp/install/usr/share/ikiwiki/basewiki -templatedir=templates t/basewiki_brokenlinks t/tmp/out"));
-my $result=`grep 'no broken links' t/tmp/out/index.html`;
-ok(length($result));
-if (! length $result) {
- print STDERR "broken links found:";
- system("grep '<li>' t/tmp/out/index.html >&2");
+
+foreach my $plugin ("", "listdirectives") {
+ ok(! system("LC_ALL=C perl -T -I. ./ikiwiki.out -rebuild -plugin brokenlinks ".
+ # always enabled because pages link to it conditionally,
+ # which brokenlinks cannot handle properly
+ "-plugin smiley ".
+ ($plugin ? "-plugin $plugin " : "").
+ "-underlaydir=t/tmp/install/usr/share/ikiwiki/basewiki ".
+ "-templatedir=templates t/basewiki_brokenlinks t/tmp/out"));
+ my $result=`grep 'no broken links' t/tmp/out/index.html`;
+ ok(length($result));
+ if (! length $result) {
+ print STDERR "\n\nbroken links found".($plugin ? " (with $plugin)" : "")."\n";
+ system("grep '<li>' t/tmp/out/index.html >&2");
+ print STDERR "\n\n";
+ }
+ ok(-e "t/tmp/out/style.css"); # linked to..
+ ok(! system("rm -rf t/tmp/out t/basewiki_brokenlinks/.ikiwiki"));
}
-ok(-e "t/tmp/out/style.css");
-ok(! system("rm -rf t/tmp t/basewiki_brokenlinks/.ikiwiki"));
+ok(! system("rm -rf t/tmp"));