t/relativity.t: Add tests for IkiWiki::redirect behaviour
[ikiwiki] / t / comments.t
1 #!/usr/bin/perl
2 use warnings;
3 use strict;
4 use Cwd qw(getcwd);
5 use Test::More;
6 use IkiWiki;
7
8 ok(! system("rm -rf t/tmp"));
9 ok(mkdir "t/tmp");
10 ok(! system("cp -R t/tinyblog t/tmp/in"));
11 ok(mkdir "t/tmp/in/post" or -d "t/tmp/in/post");
12
13 my $installed = $ENV{INSTALLED_TESTS};
14
15 my @command;
16 if ($installed) {
17         @command = qw(ikiwiki);
18 }
19 else {
20         ok(! system("make -s ikiwiki.out"));
21         @command = ("perl", "-I".getcwd, qw(./ikiwiki.out
22                 --underlaydir=underlays/basewiki
23                 --set underlaydirbase=underlays
24                 --templatedir=templates));
25 }
26
27 my $comment;
28
29 $comment = <<EOF;
30 [[!comment username="neil"
31   date="1969-07-20T20:17:40Z"
32   content="I landed"]]
33 EOF
34 #ok(eval { writefile("post/comment_3._comment", "t/tmp/in", $comment); 1 });
35 writefile("post/comment_3._comment", "t/tmp/in", $comment);
36
37 $comment = <<EOF;
38 [[!comment username="christopher"
39   date="1969-02-12T07:00:00Z"
40   content="I explored"]]
41 EOF
42 writefile("post/comment_2._comment", "t/tmp/in", $comment);
43
44 $comment = <<EOF;
45 [[!comment username="william"
46   date="1969-01-14T12:00:00Z"
47   content="I conquered"]]
48 EOF
49 writefile("post/comment_1._comment", "t/tmp/in", $comment);
50
51 # Give the files mtimes in the wrong order
52 ok(utime(111111111, 111111111, "t/tmp/in/post/comment_3._comment"));
53 ok(utime(222222222, 222222222, "t/tmp/in/post/comment_2._comment"));
54 ok(utime(333333333, 333333333, "t/tmp/in/post/comment_1._comment"));
55
56 # Build the wiki
57 ok(! system(@command, qw(--verbose --plugin comments --url=http://example.com --cgiurl=http://example.com/ikiwiki.cgi --rss --atom --set comments_pagespec=* t/tmp/in t/tmp/out)));
58
59 # Check that the comments are in the right order
60
61 sub slurp {
62     open my $fh, "<", shift or return undef;
63     local $/;
64     my $content = <$fh>;
65     close $fh or return undef;
66     return $content;
67 }
68
69 my $content = slurp("t/tmp/out/post/index.html");
70 ok(defined $content);
71 ok($content =~ m/I conquered.*I explored.*I landed/s);
72
73 done_testing();