aboutsummaryrefslogtreecommitdiff
path: root/t/mercurial.t
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2006-11-21 17:47:53 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2006-11-21 17:47:53 +0000
commitffb27000431f744f2cec9d198d0a0d8cbb0bd405 (patch)
tree818d52f0e8791741d643b1024c09c3f6e2c01b9b /t/mercurial.t
parentee8e5261203bfb5964e7b14ef0137ad4c7b5137c (diff)
downloadikiwiki-ffb27000431f744f2cec9d198d0a0d8cbb0bd405.tar
ikiwiki-ffb27000431f744f2cec9d198d0a0d8cbb0bd405.tar.gz
* Add a test suite for the mercurial backend, contributed by Emanuele Aina.
* Add a test suite for the svn backend. * Daemonize before sending RPC pings, since that can take a while and/or hang. * Daemonize before sending commit mails, as that can also take a long time/hang if the mail server is unhappy. * Factor out commit mail sending code into new function.
Diffstat (limited to 't/mercurial.t')
-rwxr-xr-xt/mercurial.t58
1 files changed, 58 insertions, 0 deletions
diff --git a/t/mercurial.t b/t/mercurial.t
new file mode 100755
index 000000000..fc9ab68a3
--- /dev/null
+++ b/t/mercurial.t
@@ -0,0 +1,58 @@
+#!/usr/bin/perl
+use warnings;
+use strict;
+my $dir;
+BEGIN {
+ $dir = "/tmp/ikiwiki-test-hg.$$";
+ my $hg=`which hg`;
+ chomp $hg;
+ if (! -x $hg || ! mkdir($dir)) {
+ eval q{
+ use Test::More skip_all => "hg not available or could not make test dir"
+ }
+ }
+}
+use Test::More tests => 9;
+
+BEGIN { use_ok("IkiWiki"); }
+
+%config=IkiWiki::defaultconfig();
+$config{rcs} = "mercurial";
+$config{srcdir} = "$dir/repo";
+IkiWiki::checkconfig();
+
+system "hg init $config{srcdir}";
+
+# Web commit
+my $test1 = readfile("t/test1.mdwn");
+writefile('test1.mdwn', $config{srcdir}, $test1);
+IkiWiki::rcs_add("test1.mdwn");
+IkiWiki::rcs_commit("test1.mdwn", "Added the first page", "moo");
+
+my @changes;
+@changes = IkiWiki::rcs_recentchanges(3);
+
+is($#changes, 0);
+is($changes[0]{message}[0]{"line"}, "Added the first page");
+is($changes[0]{pages}[0]{"page"}, "test1.mdwn");
+
+# Manual commit
+my $username = "Foo Bar";
+my $user = "$username <foo.bar\@example.com>";
+my $message = "Added the second page";
+
+my $test2 = readfile("t/test2.mdwn");
+writefile('test2.mdwn', $config{srcdir}, $test2);
+system "hg add -R $config{srcdir} $config{srcdir}/test2.mdwn";
+system "hg commit -R $config{srcdir} -u \"$user\" -m \"$message\"";
+
+@changes = IkiWiki::rcs_recentchanges(3);
+
+is($#changes, 1);
+is($changes[0]{message}[0]{"line"}, $message);
+is($changes[0]{user}, $username);
+is($changes[0]{pages}[0]{"page"}, "test2.mdwn");
+
+is($changes[1]{pages}[0]{"page"}, "test1.mdwn");
+
+system "rm -rf $dir";