]> sipb.mit.edu Git - ikiwiki.git/blob - t/pagespec_match.t
web commit by http://madduck.net/
[ikiwiki.git] / t / pagespec_match.t
1 #!/usr/bin/perl
2 use warnings;
3 use strict;
4 use Test::More tests => 52;
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", location => "a/b"), "nonrelative fail");
22 ok(! pagespec_match("foo", "./*", location => "a/b"), "relative fail");
23 ok(pagespec_match("a/foo", "./*", location => "a/b"), "relative");
24 ok(pagespec_match("a/b/foo", "./*", location => "a/b"), "relative 2");
25 ok(pagespec_match("a/foo", "./*", "a/b"), "relative oldstyle call");
26 ok(pagespec_match("foo", "./*", location => "a"), "relative toplevel");
27 ok(pagespec_match("foo/bar", "*", location => "baz"), "absolute");
28 ok(! pagespec_match("foo", "foo and bar"), "foo and bar");
29
30 # The link and backlink stuff needs this.
31 $config{userdir}="";
32 $links{foo}=[qw{bar baz}];
33 $links{bar}=[];
34 $links{baz}=[];
35 $links{"bugs/foo"}=[qw{bugs/done}];
36 $links{"bugs/done"}=[];
37 $links{"bugs/bar"}=[qw{done}];
38 $links{"done"}=[];
39 $links{"examples/softwaresite/bugs/fails_to_frobnicate"}=[qw{done}];
40 $links{"examples/softwaresite/bugs/done"}=[];
41
42 ok(pagespec_match("foo", "link(bar)"), "link");
43 ok(pagespec_match("foo", "link(ba?)"), "glob link");
44 ok(! pagespec_match("foo", "link(quux)"), "failed link");
45 ok(! pagespec_match("foo", "link(qu*)"), "failed glob link");
46 ok(pagespec_match("bugs/foo", "link(done)", location => "bugs/done"), "link match to bestlink");
47 ok(! pagespec_match("examples/softwaresite/bugs/done", "link(done)", 
48                 location => "bugs/done"), "link match to bestlink");
49 ok(pagespec_match("examples/softwaresite/bugs/fails_to_frobnicate", 
50                 "link(./done)", location => "examples/softwaresite/bugs/done"), "link relative");
51 ok(! pagespec_match("foo", "link(./bar)", location => "foo/bar"), "link relative fail");
52 ok(pagespec_match("bar", "backlink(foo)"), "backlink");
53 ok(! pagespec_match("quux", "backlink(foo)"), "failed backlink");
54
55 $IkiWiki::pagectime{foo}=1154532692; # Wed Aug  2 11:26 EDT 2006
56 $IkiWiki::pagectime{bar}=1154532695; # after
57 ok(pagespec_match("foo", "created_before(bar)"));
58 ok(! pagespec_match("foo", "created_after(bar)"));
59 ok(! pagespec_match("bar", "created_before(foo)"));
60 ok(pagespec_match("bar", "created_after(foo)"));
61 ok(pagespec_match("foo", "creation_year(2006)"), "year");
62 ok(! pagespec_match("foo", "creation_year(2005)"), "other year");
63 ok(pagespec_match("foo", "creation_month(8)"), "month");
64 ok(! pagespec_match("foo", "creation_month(9)"), "other month");
65 ok(pagespec_match("foo", "creation_day(2)"), "day");
66 ok(! pagespec_match("foo", "creation_day(3)"), "other day");
67
68 ok(! pagespec_match("foo", "no_such_function(foo)"), "foo");
69
70 my $ret=pagespec_match("foo", "(invalid");
71 ok(! $ret, "syntax error");
72 ok($ret eq "syntax error", "error message");
73
74 # old style globlists
75 ok(pagespec_match("foo", "foo bar"), "simple list");
76 ok(pagespec_match("bar", "foo bar"), "simple list 2");
77 ok(pagespec_match("foo", "f?? !foz"));
78 ok(! pagespec_match("foo", "f?? !foo"));
79 ok(! pagespec_match("foo", "* !foo"));
80 ok(! pagespec_match("foo", "foo !foo"));
81 ok(! pagespec_match("foo.png", "* !*.*"));