]> sipb.mit.edu Git - ikiwiki.git/blob - t/pagespec_match.t
WC lock idea and patch with stub functions
[ikiwiki.git] / t / pagespec_match.t
1 #!/usr/bin/perl
2 use warnings;
3 use strict;
4 use Test::More tests => 42;
5
6 BEGIN { use_ok("IkiWiki"); }
7
8 ok(pagespec_match("foo", "*", ""));
9 ok(pagespec_match("page", "?ag?", ""));
10 ok(! pagespec_match("page", "?a?g?", ""));
11 ok(pagespec_match("foo.png", "*.*", ""));
12 ok(! pagespec_match("foo", "*.*", ""));
13 ok(pagespec_match("foo", "foo or bar", ""), "simple list");
14 ok(pagespec_match("bar", "foo or bar", ""), "simple list 2");
15 ok(pagespec_match("foo", "f?? and !foz", ""));
16 ok(! pagespec_match("foo", "f?? and !foo", ""));
17 ok(! pagespec_match("foo", "* and !foo", ""));
18 ok(! pagespec_match("foo", "foo and !foo", ""));
19 ok(! pagespec_match("foo.png", "* and !*.*", ""));
20 ok(pagespec_match("foo", "(bar or ((meep and foo) or (baz or foo) or beep))", ""));
21 ok(! pagespec_match("a/foo", "foo", "a/b"), "nonrelative fail");
22 ok(! pagespec_match("foo", "./*", "a/b"), "relative fail");
23 ok(pagespec_match("a/foo", "./*", "a/b"), "relative");
24 ok(pagespec_match("a/b/foo", "./*", "a/b"), "relative 2");
25 ok(pagespec_match("foo", "./*", "a"), "relative toplevel");
26 ok(pagespec_match("foo/bar", "*", "baz"), "absolute");
27
28 $links{foo}=[qw{bar baz}];
29 ok(pagespec_match("foo", "link(bar)", ""));
30 ok(! pagespec_match("foo", "link(quux)", ""));
31 ok(pagespec_match("bar", "backlink(foo)", ""));
32 ok(! pagespec_match("quux", "backlink(foo)", ""));
33
34 $IkiWiki::pagectime{foo}=1154532692; # Wed Aug  2 11:26 EDT 2006
35 $IkiWiki::pagectime{bar}=1154532695; # after
36 ok(pagespec_match("foo", "created_before(bar)"));
37 ok(! pagespec_match("foo", "created_after(bar)"));
38 ok(! pagespec_match("bar", "created_before(foo)"));
39 ok(pagespec_match("bar", "created_after(foo)"));
40 ok(pagespec_match("foo", "creation_year(2006)"), "year");
41 ok(! pagespec_match("foo", "creation_year(2005)"), "other year");
42 ok(pagespec_match("foo", "creation_month(8)"), "month");
43 ok(! pagespec_match("foo", "creation_month(9)"), "other month");
44 ok(pagespec_match("foo", "creation_day(2)"), "day");
45 ok(! pagespec_match("foo", "creation_day(3)"), "other day");
46
47 ok(! pagespec_match("foo", "no_such_function(foo)"), "foo");
48
49 # old style globlists
50 ok(pagespec_match("foo", "foo bar"), "simple list");
51 ok(pagespec_match("bar", "foo bar"), "simple list 2");
52 ok(pagespec_match("foo", "f?? !foz"));
53 ok(! pagespec_match("foo", "f?? !foo"));
54 ok(! pagespec_match("foo", "* !foo"));
55 ok(! pagespec_match("foo", "foo !foo"));
56 ok(! pagespec_match("foo.png", "* !*.*"));