X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/blobdiff_plain/62c9df67212c7c42eb03ad9e36891afe4bc2d9a2..4531ea31e82af9146dc5a47847afdc9c1e430b8f:/t/git-cgi.t
diff --git a/t/git-cgi.t b/t/git-cgi.t
index 6dfe18ad6..3556bc038 100755
--- a/t/git-cgi.t
+++ b/t/git-cgi.t
@@ -1,7 +1,9 @@
#!/usr/bin/perl
+use utf8;
use warnings;
use strict;
+use Encode;
use Test::More;
BEGIN {
@@ -35,7 +37,7 @@ my $installed = $ENV{INSTALLED_TESTS};
my @command;
if ($installed) {
- @command = qw(ikiwiki);
+ @command = qw(ikiwiki --plugin inline);
}
else {
ok(! system("make -s ikiwiki.out"));
@@ -112,6 +114,7 @@ sub run_cgi {
my $cgi = CGI->new($args{params});
my $query_string = $cgi->query_string();
+ diag $query_string;
if ($method eq 'POST') {
$defaults{REQUEST_METHOD} = 'POST';
@@ -132,7 +135,7 @@ sub run_cgi {
} keys(%envvars);
});
- return $out;
+ return decode_utf8($out);
}
sub run_git {
@@ -142,7 +145,12 @@ sub run_git {
my ($in, $out);
ok(run(['git', @$args], \$in, \$out, init => sub {
chdir 't/tmp/in' or die $!;
- $ENV{EMAIL} = 'nobody@ikiwiki-tests.invalid';
+ my $name = 'The IkiWiki Tests';
+ my $email = 'nobody@ikiwiki-tests.invalid';
+ if ($args->[0] eq 'commit') {
+ $ENV{GIT_AUTHOR_NAME} = $ENV{GIT_COMMITTER_NAME} = $name;
+ $ENV{GIT_AUTHOR_EMAIL} = $ENV{GIT_COMMITTER_EMAIL} = $email;
+ }
}), "$desc at $filename:$line");
return $out;
}
@@ -159,6 +167,12 @@ sub test {
write_old_file('doc/writable/two.mdwn', 't/tmp/in', 'This is the second test page');
write_old_file('doc/writable/three.mdwn', 't/tmp/in', 'This is the third test page');
write_old_file('doc/writable/three.bin', 't/tmp/in', 'An attachment');
+ write_old_file('doc/writable/blog.mdwn', 't/tmp/in',
+ '[[!inline pages="writable/blog/*" actions=yes rootpage=writable/blog postform=yes show=0]]');
+ write_old_file('doc/writable/__172__blog.mdwn', 't/tmp/in',
+ '[[!inline pages="writable/¬blog/*" actions=yes rootpage="writable/¬blog" postform=yes show=0]]');
+ write_old_file('doc/writable/ä¸æ.mdwn', 't/tmp/in',
+ '[[!inline pages="writable/ä¸æ/*" actions=yes rootpage="writable/ä¸æ" postform=yes show=0]]');
unless ($installed) {
ok(! system(qw(cp -pRL doc/wikiicons t/tmp/in/doc/)));
@@ -286,6 +300,10 @@ sub test {
$content = readfile('t/tmp/in/two.mdwn');
like($content, qr{Here is new content for the second page});
+ # We have to wait 1 second here so that new writes are guaranteed
+ # to have a strictly larger mtime.
+ sleep 1;
+
# This one can legitimately be reverted
$content = run_cgi(method => 'post',
params => {
@@ -305,6 +323,33 @@ sub test {
like($content, qr{This is the third test page});
$content = readfile('t/tmp/out/writable/three.bin');
like($content, qr{An attachment});
+
+ $content = readfile('t/tmp/out/writable/blog/index.html');
+ like($content, qr{ 'get',
+ params => {
+ do => 'blog',
+ from => 'writable/blog',
+ subpage => '1',
+ title => 'hello',
+ },
+ );
+ like($content, qr{});
+
+ # Regression test for a bug in which we couldn't use an
+ # alphanumeric, but non-ASCII, root page.
+ $content = readfile('t/tmp/out/writable/ä¸æ/index.html');
+ like($content, qr{ 'get',
+ params => {
+ do => 'blog',
+ from => 'writable/ä¸æ',
+ subpage => '1',
+ title => 'hello',
+ },
+ );
+ like($content, qr{});
+ unlike($content, qr{Error: bad page name});
}
test();