Merge commit 'upstream/master' into prv/po
[ikiwiki] / t / pagespec_match.t
1 #!/usr/bin/perl
2 use warnings;
3 use strict;
4 use Test::More tests => 58;
5
6 BEGIN { use_ok("IkiWiki"); }
7
8 ok(pagespec_match("foo", "*"));
9 ok(!pagespec_match("foo", ""));
10 ok(pagespec_match("foo", "!bar"));
11 ok(pagespec_match("page", "?ag?"));
12 ok(! pagespec_match("page", "?a?g?"));
13 ok(pagespec_match("foo.png", "*.*"));
14 ok(! pagespec_match("foo", "*.*"));
15 ok(pagespec_match("foo", "foo or bar"), "simple list");
16 ok(pagespec_match("bar", "foo or bar"), "simple list 2");
17 ok(pagespec_match("foo", "f?? and !foz"));
18 ok(! pagespec_match("foo", "f?? and !foo"));
19 ok(! pagespec_match("foo", "* and !foo"));
20 ok(! pagespec_match("foo", "foo and !foo"));
21 ok(! pagespec_match("foo.png", "* and !*.*"));
22 ok(pagespec_match("foo", "(bar or ((meep and foo) or (baz or foo) or beep))"));
23 ok(! pagespec_match("a/foo", "foo", location => "a/b"), "nonrelative fail");
24 ok(! pagespec_match("foo", "./*", location => "a/b"), "relative fail");
25 ok(pagespec_match("a/foo", "./*", location => "a/b"), "relative");
26 ok(pagespec_match("a/b/foo", "./*", location => "a/b"), "relative 2");
27 ok(pagespec_match("a/foo", "./*", "a/b"), "relative oldstyle call");
28 ok(pagespec_match("foo", "./*", location => "a"), "relative toplevel");
29 ok(pagespec_match("foo/bar", "*", location => "baz"), "absolute");
30 ok(! pagespec_match("foo", "foo and bar"), "foo and bar");
31
32 # The link and backlink stuff needs this.
33 $config{userdir}="";
34 $links{foo}=[qw{bar baz}];
35 $links{bar}=[];
36 $links{baz}=[];
37 $links{"bugs/foo"}=[qw{bugs/done}];
38 $links{"bugs/done"}=[];
39 $links{"bugs/bar"}=[qw{done}];
40 $links{"done"}=[];
41 $links{"examples/softwaresite/bugs/fails_to_frobnicate"}=[qw{done}];
42 $links{"examples/softwaresite/bugs/done"}=[];
43 $links{"ook"}=[qw{/blog/tags/foo}];
44
45 ok(pagespec_match("foo", "link(bar)"), "link");
46 ok(pagespec_match("foo", "link(ba?)"), "glob link");
47 ok(! pagespec_match("foo", "link(quux)"), "failed link");
48 ok(! pagespec_match("foo", "link(qu*)"), "failed glob link");
49 ok(pagespec_match("bugs/foo", "link(done)", location => "bugs/done"), "link match to bestlink");
50 ok(! pagespec_match("examples/softwaresite/bugs/done", "link(done)", 
51                 location => "bugs/done"), "link match to bestlink");
52 ok(pagespec_match("examples/softwaresite/bugs/fails_to_frobnicate", 
53                 "link(./done)", location => "examples/softwaresite/bugs/done"), "link relative");
54 ok(! pagespec_match("foo", "link(./bar)", location => "foo/bar"), "link relative fail");
55 ok(pagespec_match("bar", "backlink(foo)"), "backlink");
56 ok(! pagespec_match("quux", "backlink(foo)"), "failed backlink");
57 ok(! pagespec_match("bar", ""), "empty pagespec should match nothing");
58 ok(! pagespec_match("bar", "            "), "blank pagespec should match nothing");
59 ok(pagespec_match("ook", "link(blog/tags/foo)"), "link internal absolute success");
60 ok(pagespec_match("ook", "link(/blog/tags/foo)"), "link explicit absolute success");
61
62 $IkiWiki::pagectime{foo}=1154532692; # Wed Aug  2 11:26 EDT 2006
63 $IkiWiki::pagectime{bar}=1154532695; # after
64 ok(pagespec_match("foo", "created_before(bar)"));
65 ok(! pagespec_match("foo", "created_after(bar)"));
66 ok(! pagespec_match("bar", "created_before(foo)"));
67 ok(pagespec_match("bar", "created_after(foo)"));
68 ok(pagespec_match("foo", "creation_year(2006)"), "year");
69 ok(! pagespec_match("foo", "creation_year(2005)"), "other year");
70 ok(pagespec_match("foo", "creation_month(8)"), "month");
71 ok(! pagespec_match("foo", "creation_month(9)"), "other month");
72 ok(pagespec_match("foo", "creation_day(2)"), "day");
73 ok(! pagespec_match("foo", "creation_day(3)"), "other day");
74
75 ok(! pagespec_match("foo", "no_such_function(foo)"), "foo");
76
77 my $ret=pagespec_match("foo", "(invalid");
78 ok(! $ret, "syntax error");
79 ok($ret =~ /syntax error/, "error message");
80
81 # old style globlists
82 ok(pagespec_match("foo", "foo bar"), "simple list");
83 ok(pagespec_match("bar", "foo bar"), "simple list 2");
84 ok(pagespec_match("foo", "f?? !foz"));
85 ok(! pagespec_match("foo", "f?? !foo"));
86 ok(! pagespec_match("foo", "* !foo"));
87 ok(! pagespec_match("foo", "foo !foo"));
88 ok(! pagespec_match("foo.png", "* !*.*"));