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