2008-07-26 01:40:28 +02:00
|
|
|
#!/usr/bin/perl
|
|
|
|
use warnings;
|
|
|
|
use strict;
|
2015-11-30 18:33:00 +01:00
|
|
|
use Test::More;
|
|
|
|
|
|
|
|
my $installed = $ENV{INSTALLED_TESTS};
|
|
|
|
|
|
|
|
my @command;
|
|
|
|
if ($installed) {
|
|
|
|
@command = qw(ikiwiki);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
ok(! system("make -s ikiwiki.out"));
|
|
|
|
@command = qw(perl -I. ./ikiwiki.out
|
|
|
|
--underlaydir=underlays/basewiki
|
|
|
|
--set underlaydirbase=underlays
|
|
|
|
--templatedir=templates);
|
|
|
|
}
|
2008-07-26 01:40:28 +02:00
|
|
|
|
2013-02-24 14:18:34 +01:00
|
|
|
ok(! system("rm -rf t/tmp"));
|
2008-07-26 01:40:28 +02:00
|
|
|
ok(! system("mkdir t/tmp"));
|
2015-11-30 18:33:00 +01:00
|
|
|
ok(! system(@command, qw(--plugin inline --url=http://example.com
|
|
|
|
--cgiurl=http://example.com/ikiwiki.cgi --rss --atom
|
|
|
|
t/tinyblog t/tmp/out)));
|
2008-07-26 01:40:28 +02:00
|
|
|
# This guid should never, ever change, for any reason whatsoever!
|
|
|
|
my $guid="http://example.com/post/";
|
2010-09-15 21:38:06 +02:00
|
|
|
ok(length `egrep '<guid.*>$guid</guid>' t/tmp/out/index.rss`);
|
|
|
|
ok(length `egrep '<id>$guid</id>' t/tmp/out/index.atom`);
|
2008-07-26 01:40:28 +02:00
|
|
|
ok(! system("rm -rf t/tmp t/tinyblog/.ikiwiki"));
|
2015-11-30 18:33:00 +01:00
|
|
|
|
|
|
|
done_testing();
|