Allow sorting to be combined and/or reversed
[ikiwiki] / t / pagespec_match.t
1 #!/usr/bin/perl
2 use warnings;
3 use strict;
4 use Test::More tests => 72;
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("foo", "(
24         bar
25         or (
26                 (meep and foo)
27                 or
28                 (baz or foo)
29                 or beep
30         )
31 )"), "multiline complex pagespec");
32 ok(! pagespec_match("a/foo", "foo", location => "a/b"), "nonrelative fail");
33 ok(! pagespec_match("foo", "./*", location => "a/b"), "relative fail");
34 ok(pagespec_match("a/foo", "./*", location => "a/b"), "relative");
35 ok(pagespec_match("a/b/foo", "./*", location => "a/b"), "relative 2");
36 ok(pagespec_match("a/foo", "./*", "a/b"), "relative oldstyle call");
37 ok(pagespec_match("foo", "./*", location => "a"), "relative toplevel");
38 ok(pagespec_match("foo/bar", "*", location => "baz"), "absolute");
39 ok(! pagespec_match("foo", "foo and bar"), "foo and bar");
40 ok(pagespec_match("{f}oo", "{*}*"), "curly match");
41 ok(! pagespec_match("foo", "{*}*"), "curly !match");
42
43 ok(pagespec_match("somepage", "user(frodo)", user => "frodo"));
44 ok(pagespec_match("somepage", "user(frodo)", user => "Frodo"));
45 ok(! pagespec_match("somepage", "user(frodo)", user => "Sam"));
46 ok(pagespec_match("somepage", "user(*o)", user => "Bilbo"));
47 ok(pagespec_match("somepage", "user(*o)", user => "frodo"));
48 ok(! pagespec_match("somepage", "user(*o)", user => "Sam"));
49 ok(pagespec_match("somepage", "user(http://*.myopenid.com/)", user => "http://foo.myopenid.com/"));
50 ok(pagespec_match("somepage", "user(*://*)", user => "http://foo.myopenid.com/"));
51
52 # The link and backlink stuff needs this.
53 $config{userdir}="";
54 $links{foo}=[qw{bar baz}];
55 $links{bar}=[];
56 $links{baz}=[];
57 $links{"bugs/foo"}=[qw{bugs/done}];
58 $links{"bugs/done"}=[];
59 $links{"bugs/bar"}=[qw{done}];
60 $links{"done"}=[];
61 $links{"done"}=[];
62 $links{"examples/softwaresite/bugs/fails_to_frobnicate"}=[qw{done}];
63 $links{"examples/softwaresite/bugs/done"}=[];
64 $links{"ook"}=[qw{/blog/tags/foo}];
65 foreach my $p (keys %links) {
66         $pagesources{$p}="$p.mdwn";
67 }
68
69 ok(pagespec_match("foo", "link(bar)"), "link");
70 ok(pagespec_match("foo", "link(ba?)"), "glob link");
71 ok(! pagespec_match("foo", "link(quux)"), "failed link");
72 ok(! pagespec_match("foo", "link(qu*)"), "failed glob link");
73 ok(pagespec_match("bugs/foo", "link(done)", location => "bugs/done"), "link match to bestlink");
74 ok(! pagespec_match("examples/softwaresite/bugs/done", "link(done)", 
75                 location => "bugs/done"), "link match to bestlink");
76 ok(pagespec_match("examples/softwaresite/bugs/fails_to_frobnicate", 
77                 "link(./done)", location => "examples/softwaresite/bugs/done"), "link relative");
78 ok(! pagespec_match("foo", "link(./bar)", location => "foo/bar"), "link relative fail");
79 ok(pagespec_match("bar", "backlink(foo)"), "backlink");
80 ok(! pagespec_match("quux", "backlink(foo)"), "failed backlink");
81 ok(! pagespec_match("bar", ""), "empty pagespec should match nothing");
82 ok(! pagespec_match("bar", "            "), "blank pagespec should match nothing");
83 ok(pagespec_match("ook", "link(blog/tags/foo)"), "link internal absolute success");
84 ok(pagespec_match("ook", "link(/blog/tags/foo)"), "link explicit absolute success");
85
86 $IkiWiki::pagectime{foo}=1154532692; # Wed Aug  2 11:26 EDT 2006
87 $IkiWiki::pagectime{bar}=1154532695; # after
88 ok(pagespec_match("foo", "created_before(bar)"));
89 ok(! pagespec_match("foo", "created_after(bar)"));
90 ok(! pagespec_match("bar", "created_before(foo)"));
91 ok(pagespec_match("bar", "created_after(foo)"));
92 ok(pagespec_match("foo", "creation_year(2006)"), "year");
93 ok(! pagespec_match("foo", "creation_year(2005)"), "other year");
94 ok(pagespec_match("foo", "creation_month(8)"), "month");
95 ok(! pagespec_match("foo", "creation_month(9)"), "other month");
96 ok(pagespec_match("foo", "creation_day(2)"), "day");
97 ok(! pagespec_match("foo", "creation_day(3)"), "other day");
98
99 ok(! pagespec_match("foo", "no_such_function(foo)"), "foo");
100
101 my $ret=pagespec_match("foo", "(invalid");
102 ok(! $ret, "syntax error");
103 ok($ret =~ /syntax error/, "error message");
104
105 $ret=pagespec_match("foo", "bar or foo");
106 ok($ret, "simple match");
107 is($ret, "foo matches foo", "stringified return");
108
109 my $i=pagespec_match("foo", "link(bar)")->influences;
110 is(join(",", keys %$i), 'foo', "link is influenced by the page with the link");
111 $i=pagespec_match("bar", "backlink(foo)")->influences;
112 is(join(",", keys %$i), 'foo', "backlink is influenced by the page with the link");
113 $i=pagespec_match("bar", "backlink(foo)")->influences;
114 is(join(",", keys %$i), 'foo', "backlink is influenced by the page with the link");
115 $i=pagespec_match("bar", "created_before(foo)")->influences;
116 is(join(",", keys %$i), 'foo', "created_before is influenced by the comparison page");
117 $i=pagespec_match("bar", "created_after(foo)")->influences;
118 is(join(",", keys %$i), 'foo', "created_after is influenced by the comparison page");
119 $i=pagespec_match("foo", "link(baz) and created_after(bar)")->influences;
120 is(join(",", sort keys %$i), 'bar,foo', "influences add up over AND");
121 $i=pagespec_match("foo", "link(baz) and created_after(bar)")->influences;
122 is(join(",", sort keys %$i), 'bar,foo', "influences add up over OR");
123 $i=pagespec_match("foo", "!link(baz) and !created_after(bar)")->influences;
124 is(join(",", sort keys %$i), 'bar,foo', "influences unaffected by negation");