2010-12-25 23:54:20 +01:00
|
|
|
#!/usr/bin/perl
|
|
|
|
package IkiWiki;
|
|
|
|
|
|
|
|
use warnings;
|
|
|
|
use strict;
|
2012-04-09 16:31:14 +02:00
|
|
|
use Test::More tests => 50;
|
2010-12-25 23:54:20 +01:00
|
|
|
|
|
|
|
BEGIN { use_ok("IkiWiki"); }
|
|
|
|
BEGIN { use_ok("IkiWiki::Render"); }
|
2011-01-22 23:22:48 +01:00
|
|
|
BEGIN { use_ok("IkiWiki::Plugin::aggregate"); }
|
2010-12-25 23:54:20 +01:00
|
|
|
BEGIN { use_ok("IkiWiki::Plugin::autoindex"); }
|
|
|
|
BEGIN { use_ok("IkiWiki::Plugin::html"); }
|
|
|
|
BEGIN { use_ok("IkiWiki::Plugin::mdwn"); }
|
|
|
|
|
|
|
|
ok(! system("rm -rf t/tmp; mkdir t/tmp"));
|
|
|
|
|
|
|
|
$config{verbose} = 1;
|
2012-04-09 16:10:06 +02:00
|
|
|
$config{srcdir} = 't/tmp/in';
|
|
|
|
$config{underlaydir} = 't/tmp/underlay';
|
2010-12-25 23:54:20 +01:00
|
|
|
$config{underlaydirbase} = '.';
|
|
|
|
$config{templatedir} = 'templates';
|
|
|
|
$config{usedirs} = 1;
|
|
|
|
$config{htmlext} = 'html';
|
|
|
|
$config{wiki_file_chars} = "-[:alnum:]+/.:_";
|
|
|
|
$config{userdir} = "users";
|
|
|
|
$config{tagbase} = "tags";
|
|
|
|
$config{default_pageext} = "mdwn";
|
|
|
|
$config{wiki_file_prune_regexps} = [qr/^\./];
|
2011-01-22 23:39:45 +01:00
|
|
|
$config{autoindex_commit} = 0;
|
2010-12-25 23:54:20 +01:00
|
|
|
|
|
|
|
is(checkconfig(), 1);
|
|
|
|
|
|
|
|
%oldrenderedfiles=%pagectime=();
|
|
|
|
%pagesources=%pagemtime=%oldlinks=%links=%depends=%typedlinks=%oldtypedlinks=
|
|
|
|
%destsources=%renderedfiles=%pagecase=%pagestate=();
|
|
|
|
|
2011-01-22 23:28:50 +01:00
|
|
|
# Pages that (we claim) were deleted in an earlier pass. We're using deleted,
|
|
|
|
# not autofile, to test backwards compat.
|
2010-12-25 23:54:20 +01:00
|
|
|
$wikistate{autoindex}{deleted}{deleted} = 1;
|
|
|
|
$wikistate{autoindex}{deleted}{expunged} = 1;
|
|
|
|
$wikistate{autoindex}{deleted}{reinstated} = 1;
|
|
|
|
|
|
|
|
foreach my $page (qw(tags/numbers deleted/bar reinstated reinstated/foo gone/bar)) {
|
|
|
|
# we use a non-default extension for these, so they're distinguishable
|
|
|
|
# from programmatically-created pages
|
|
|
|
$pagesources{$page} = "$page.html";
|
|
|
|
$pagemtime{$page} = $pagectime{$page} = 1000000;
|
2012-04-09 16:10:06 +02:00
|
|
|
writefile("$page.html", "t/tmp/in", "your ad here");
|
2010-12-25 23:54:20 +01:00
|
|
|
}
|
|
|
|
|
2011-01-22 23:22:48 +01:00
|
|
|
# a directory containing only an internal page shouldn't be indexed
|
|
|
|
$pagesources{"has_internal/internal"} = "has_internal/internal._aggregated";
|
|
|
|
$pagemtime{"has_internal/internal"} = 123456789;
|
|
|
|
$pagectime{"has_internal/internal"} = 123456789;
|
2012-04-09 16:10:06 +02:00
|
|
|
writefile("has_internal/internal._aggregated", "t/tmp/in", "this page is internal");
|
|
|
|
|
2012-04-09 16:31:14 +02:00
|
|
|
# a directory containing only a page in an underlay is now indexed
|
|
|
|
# (see [[transient autocreated tagbase is not transient autoindexed]])
|
2012-04-09 16:10:06 +02:00
|
|
|
$pagesources{"has_underlay/underlay"} = "has_underlay/underlay.mdwn";
|
|
|
|
$pagemtime{"has_underlay/underlay"} = 123456789;
|
|
|
|
$pagectime{"has_underlay/underlay"} = 123456789;
|
|
|
|
writefile("has_underlay/underlay.mdwn", "t/tmp/underlay", "this page is in an underlay");
|
|
|
|
|
2012-04-09 16:31:14 +02:00
|
|
|
# a directory containing only a transient page is now indexed
|
|
|
|
# (see [[transient autocreated tagbase is not transient autoindexed]])
|
2012-04-09 16:10:06 +02:00
|
|
|
$pagesources{"has_transient/transient"} = "has_transient/transient.mdwn";
|
|
|
|
$pagemtime{"has_transient/transient"} = 123456789;
|
|
|
|
$pagectime{"has_transient/transient"} = 123456789;
|
|
|
|
writefile("has_transient/transient.mdwn", "t/tmp/in/.ikiwiki/transient", "this page is transient");
|
2011-01-22 23:22:48 +01:00
|
|
|
|
2011-01-22 23:23:50 +01:00
|
|
|
# a directory containing only an attachment should be indexed
|
|
|
|
$pagesources{"attached/pie.jpg"} = "attached/pie.jpg";
|
|
|
|
$pagemtime{"attached/pie.jpg"} = 123456789;
|
|
|
|
$pagectime{"attached/pie.jpg"} = 123456789;
|
2012-04-09 16:10:06 +02:00
|
|
|
writefile("attached/pie.jpg", "t/tmp/in", "I lied, this isn't a real JPEG");
|
2011-01-22 23:23:50 +01:00
|
|
|
|
2010-12-25 23:54:20 +01:00
|
|
|
# "gone" disappeared just before this refresh pass so it still has a mtime
|
|
|
|
$pagemtime{gone} = $pagectime{gone} = 1000000;
|
|
|
|
|
2011-01-06 01:15:28 +01:00
|
|
|
my %pages;
|
|
|
|
my @del;
|
|
|
|
|
2010-12-25 23:54:20 +01:00
|
|
|
IkiWiki::Plugin::autoindex::refresh();
|
|
|
|
|
2011-01-22 23:28:50 +01:00
|
|
|
# this page is still on record as having been deleted, because it has
|
2010-12-25 23:54:20 +01:00
|
|
|
# a reason to be re-created
|
2011-01-22 23:28:50 +01:00
|
|
|
is($wikistate{autoindex}{autofile}{"deleted.mdwn"}, 1);
|
|
|
|
is($autofiles{"deleted.mdwn"}{plugin}, "autoindex");
|
|
|
|
%pages = ();
|
|
|
|
@del = ();
|
|
|
|
IkiWiki::gen_autofile("deleted.mdwn", \%pages, \@del);
|
2011-03-04 14:50:56 +01:00
|
|
|
is_deeply(\%pages, {});
|
|
|
|
is_deeply(\@del, []);
|
2012-04-09 16:10:06 +02:00
|
|
|
ok(! -f "t/tmp/in/deleted.mdwn");
|
2011-01-22 23:28:50 +01:00
|
|
|
|
|
|
|
# this page is tried as an autofile, but because it'll be in @del, it's not
|
|
|
|
# actually created
|
|
|
|
ok(! exists $wikistate{autoindex}{autofile}{"gone.mdwn"});
|
|
|
|
%pages = ();
|
|
|
|
@del = ("gone.mdwn");
|
|
|
|
is($autofiles{"gone.mdwn"}{plugin}, "autoindex");
|
|
|
|
IkiWiki::gen_autofile("gone.mdwn", \%pages, \@del);
|
2011-03-04 14:50:56 +01:00
|
|
|
is_deeply(\%pages, {});
|
|
|
|
is_deeply(\@del, ["gone.mdwn"]);
|
2012-04-09 16:10:06 +02:00
|
|
|
ok(! -f "t/tmp/in/gone.mdwn");
|
2010-12-25 23:54:20 +01:00
|
|
|
|
2011-01-22 23:28:50 +01:00
|
|
|
# this page does not exist and has no reason to be re-created, but we no longer
|
|
|
|
# have a special case for that - see
|
|
|
|
# [[todo/autoindex_should_use_add__95__autofile]] - so it won't be created
|
|
|
|
# even if it gains subpages later
|
|
|
|
is($wikistate{autoindex}{autofile}{"expunged.mdwn"}, 1);
|
|
|
|
ok(! exists $autofiles{"expunged.mdwn"});
|
2012-04-09 16:10:06 +02:00
|
|
|
ok(! -f "t/tmp/in/expunged.mdwn");
|
2010-12-25 23:54:20 +01:00
|
|
|
|
2011-01-22 23:22:48 +01:00
|
|
|
# a directory containing only an internal page shouldn't be indexed
|
2011-01-22 23:28:50 +01:00
|
|
|
ok(! exists $wikistate{autoindex}{autofile}{"has_internal.mdwn"});
|
|
|
|
ok(! exists $autofiles{"has_internal.mdwn"});
|
2012-04-09 16:10:06 +02:00
|
|
|
ok(! -f "t/tmp/in/has_internal.mdwn");
|
|
|
|
|
2012-04-09 16:31:14 +02:00
|
|
|
# a directory containing only a page in an underlay is now indexed
|
|
|
|
# (see [[transient autocreated tagbase is not transient autoindexed]])
|
2012-04-09 16:10:06 +02:00
|
|
|
ok(! exists $wikistate{autoindex}{autofile}{"has_underlay.mdwn"});
|
2012-04-09 16:31:14 +02:00
|
|
|
is($autofiles{"has_underlay.mdwn"}{plugin}, "autoindex");
|
|
|
|
%pages = ();
|
|
|
|
@del = ();
|
|
|
|
IkiWiki::gen_autofile("has_underlay.mdwn", \%pages, \@del);
|
|
|
|
is_deeply(\%pages, {"t/tmp/in/has_underlay" => 1});
|
|
|
|
is_deeply(\@del, []);
|
2012-04-09 16:10:06 +02:00
|
|
|
ok(! -f "t/tmp/in/has_underlay.mdwn");
|
2012-04-09 16:31:14 +02:00
|
|
|
ok(-s "t/tmp/in/.ikiwiki/transient/has_underlay.mdwn");
|
2012-04-09 16:10:06 +02:00
|
|
|
|
2012-04-09 16:31:14 +02:00
|
|
|
# a directory containing only a transient page is now indexed
|
|
|
|
# (see [[transient autocreated tagbase is not transient autoindexed]])
|
2012-04-09 16:10:06 +02:00
|
|
|
ok(! exists $wikistate{autoindex}{autofile}{"has_transient.mdwn"});
|
2012-04-09 16:31:14 +02:00
|
|
|
is($autofiles{"has_transient.mdwn"}{plugin}, "autoindex");
|
|
|
|
%pages = ();
|
|
|
|
@del = ();
|
|
|
|
IkiWiki::gen_autofile("has_transient.mdwn", \%pages, \@del);
|
|
|
|
is_deeply(\%pages, {"t/tmp/in/has_transient" => 1});
|
|
|
|
is_deeply(\@del, []);
|
2012-04-09 16:10:06 +02:00
|
|
|
ok(! -f "t/tmp/in/has_transient.mdwn");
|
2012-04-09 16:31:14 +02:00
|
|
|
ok(-s "t/tmp/in/.ikiwiki/transient/has_transient.mdwn");
|
2011-01-22 23:22:48 +01:00
|
|
|
|
2011-01-22 23:28:50 +01:00
|
|
|
# this page was re-created, but that no longer gets a special case
|
|
|
|
# (see [[todo/autoindex_should_use_add__95__autofile]]) so it's the same as
|
|
|
|
# deleted
|
|
|
|
is($wikistate{autoindex}{autofile}{"reinstated.mdwn"}, 1);
|
|
|
|
ok(! exists $autofiles{"reinstated.mdwn"});
|
2012-04-09 16:31:14 +02:00
|
|
|
ok(! -f "t/tmp/in/.ikiwiki/transient/reinstated.mdwn");
|
2010-12-25 23:54:20 +01:00
|
|
|
|
2011-01-06 01:15:28 +01:00
|
|
|
# needs creating (deferred; part of the autofile mechanism now)
|
2011-01-22 23:28:50 +01:00
|
|
|
ok(! exists $wikistate{autoindex}{autofile}{"tags.mdwn"});
|
2011-01-06 01:15:28 +01:00
|
|
|
%pages = ();
|
|
|
|
@del = ();
|
|
|
|
is($autofiles{"tags.mdwn"}{plugin}, "autoindex");
|
|
|
|
IkiWiki::gen_autofile("tags.mdwn", \%pages, \@del);
|
2012-04-09 16:10:06 +02:00
|
|
|
is_deeply(\%pages, {"t/tmp/in/tags" => 1});
|
2011-03-04 14:50:56 +01:00
|
|
|
is_deeply(\@del, []);
|
2012-04-09 16:10:06 +02:00
|
|
|
ok(! -s "t/tmp/in/tags.mdwn");
|
|
|
|
ok(-s "t/tmp/in/.ikiwiki/transient/tags.mdwn");
|
2010-12-25 23:54:20 +01:00
|
|
|
|
2011-01-22 23:23:50 +01:00
|
|
|
# needs creating because of an attachment
|
2011-01-22 23:28:50 +01:00
|
|
|
ok(! exists $wikistate{autoindex}{autofile}{"attached.mdwn"});
|
2011-01-06 01:15:28 +01:00
|
|
|
%pages = ();
|
|
|
|
@del = ();
|
|
|
|
is($autofiles{"attached.mdwn"}{plugin}, "autoindex");
|
|
|
|
IkiWiki::gen_autofile("attached.mdwn", \%pages, \@del);
|
2012-04-09 16:10:06 +02:00
|
|
|
is_deeply(\%pages, {"t/tmp/in/attached" => 1});
|
2011-03-04 14:50:56 +01:00
|
|
|
is_deeply(\@del, []);
|
2012-04-09 16:10:06 +02:00
|
|
|
ok(-s "t/tmp/in/.ikiwiki/transient/attached.mdwn");
|
2011-01-22 23:23:50 +01:00
|
|
|
|
2010-12-25 23:54:20 +01:00
|
|
|
1;
|