add a regression test to ensure that permalinks never change
authorJoey Hess <joey@kodama.kitenet.net>
Fri, 25 Jul 2008 23:40:28 +0000 (19:40 -0400)
committerJoey Hess <joey@kodama.kitenet.net>
Fri, 25 Jul 2008 23:40:28 +0000 (19:40 -0400)
t/basewiki_brokenlinks.t
t/permalink.t [new file with mode: 0755]

index 994e3e3779d94e118f63a916d3e70dca23c379ae..9753122a0f51fbf6466f478a5a9c1b997bc09dae 100755 (executable)
@@ -4,7 +4,7 @@ use strict;
 use Test::More 'no_plan';
 
 ok(! system("mkdir t/tmp"));
-ok(! system("make -q ikiwiki.out"));
+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"));
 ok(`grep 'no broken links' t/tmp/out/index.html`);
diff --git a/t/permalink.t b/t/permalink.t
new file mode 100755 (executable)
index 0000000..9b44cd7
--- /dev/null
@@ -0,0 +1,13 @@
+#!/usr/bin/perl
+use warnings;
+use strict;
+use Test::More 'no_plan';
+
+ok(! system("mkdir t/tmp"));
+ok(! system("make -s ikiwiki.out"));
+ok(! system("LC_ALL=C perl -T -I. ./ikiwiki.out -plugin inline -url=http://example.com -cgiurl=http://example.com/ikiwiki.cgi -rss -atom -underlaydir=underlays/basewiki -templatedir=templates t/tinyblog t/tmp/out"));
+# This guid should never, ever change, for any reason whatsoever!
+my $guid="http://example.com/post/";
+ok(length `grep '<guid>$guid</guid>' t/tmp/out/index.rss`);
+ok(length `grep '<id>$guid</id>' t/tmp/out/index.atom`);
+ok(! system("rm -rf t/tmp t/tinyblog/.ikiwiki"));