2007-05-20 03:00:21 +02:00
|
|
|
#!/usr/bin/perl
|
|
|
|
use warnings;
|
|
|
|
use strict;
|
2007-08-28 03:59:01 +02:00
|
|
|
use Test::More 'no_plan';
|
2007-05-20 03:00:21 +02:00
|
|
|
|
2008-09-12 01:06:44 +02:00
|
|
|
ok(! system("rm -rf t/tmp; mkdir t/tmp"));
|
2008-07-26 01:40:28 +02:00
|
|
|
ok(! system("make -s ikiwiki.out"));
|
2007-09-06 01:51:08 +02:00
|
|
|
ok(! system("make extra_install DESTDIR=`pwd`/t/tmp/install PREFIX=/usr >/dev/null"));
|
2008-09-12 01:06:44 +02:00
|
|
|
|
|
|
|
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"));
|
2008-09-12 00:56:28 +02:00
|
|
|
}
|
2008-09-12 01:06:44 +02:00
|
|
|
ok(! system("rm -rf t/tmp"));
|