aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2006-11-26 20:10:09 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2006-11-26 20:10:09 +0000
commit1cc030f96b8cfe9da07d3994b8c1abb73d8e1eac (patch)
tree2f4995b89a4f13b204c290e3a5a8910b42732ee2
parent76dd3c46aa8e3d6ae25119247cd62aa62bb57165 (diff)
downloadikiwiki-1cc030f96b8cfe9da07d3994b8c1abb73d8e1eac.tar
ikiwiki-1cc030f96b8cfe9da07d3994b8c1abb73d8e1eac.tar.gz
git test suite
-rw-r--r--debian/changelog5
-rwxr-xr-xt/git.t68
2 files changed, 71 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog
index 0429f152d..a6718aef3 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -37,6 +37,7 @@ ikiwiki (1.34) UNRELEASED; urgency=low
* Fix nested examples directory in deb.
* Add a test suite for the mercurial backend, contributed by Emanuele Aina.
* Add a test suite for the svn backend.
+ * Add a test suite for the git backend, from Recai
* 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
@@ -48,8 +49,8 @@ ikiwiki (1.34) UNRELEASED; urgency=low
* Add softwaresite example.
* Mercurial backend improvements, including --get-ctime support. (Emanuele
Aina)
- * Git backend improvements, including bug fixes and better robustness.
- (Recai Oktaş)
+ * Git backend improvements, including bug fixes and better robustness,
+ from Recai.
-- Joey Hess <joeyh@debian.org> Sun, 26 Nov 2006 15:01:14 -0500
diff --git a/t/git.t b/t/git.t
new file mode 100755
index 000000000..a3e5b36de
--- /dev/null
+++ b/t/git.t
@@ -0,0 +1,68 @@
+#!/usr/bin/perl
+use warnings;
+use strict;
+
+my $dir;
+my $gitrepo;
+BEGIN {
+ $dir="/tmp/ikiwiki-test-git.$$";
+ $gitrepo="$dir/repo";
+ my $git=`which git`;
+ chomp $git;
+ if (! -x $git || ! mkdir($dir) || ! mkdir($gitrepo)) {
+ eval q{
+ use Test::More skip_all => "git not available or could not make test dirs"
+ }
+ }
+}
+use Test::More tests => 11;
+
+BEGIN { use_ok("IkiWiki"); }
+
+%config=IkiWiki::defaultconfig();
+$config{rcs} = "git";
+$config{srcdir} = "$dir/src";
+IkiWiki::checkconfig();
+
+system "cd $gitrepo && git init-db 2>/dev/null";
+system "cd $gitrepo && echo dummy >dummy; git add . 2>/dev/null";
+system "cd $gitrepo && git commit -m Initial 2>/dev/null";
+system "git clone -l -s $gitrepo $config{srcdir} 2>/dev/null";
+
+my @changes;
+@changes = IkiWiki::rcs_recentchanges(3);
+
+is($#changes, 0); # counts for dummy commit during repo creation
+is($changes[0]{message}[0]{"line"}, "Initial");
+is($changes[0]{pages}[0]{"page"}, undef); # no diff for first commit
+
+# 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");
+
+@changes = IkiWiki::rcs_recentchanges(3);
+
+is($#changes, 1);
+is($changes[0]{message}[0]{"line"}, "Added the first page");
+is($changes[0]{pages}[0]{"page"}, "test1.mdwn");
+
+# Manual commit
+my $message = "Added the second page";
+
+my $test2 = readfile("t/test2.mdwn");
+writefile('test2.mdwn', $config{srcdir}, $test2);
+system "cd $config{srcdir}; git add test2.mdwn 2>/dev/null";
+system "cd $config{srcdir}; git commit -m \"$message\" test2.mdwn 2>/dev/null";
+system "cd $config{srcdir}; git push origin 2>/dev/null";
+
+@changes = IkiWiki::rcs_recentchanges(3);
+
+is($#changes, 2);
+is($changes[0]{message}[0]{"line"}, $message);
+is($changes[0]{pages}[0]{"page"}, "test2.mdwn");
+
+is($changes[1]{pages}[0]{"page"}, "test1.mdwn");
+
+system "rm -rf $dir";