summaryrefslogtreecommitdiff
path: root/t/pagespec_match.t
blob: 09e9582d16a655c61911300c5e3074671a718ff1 (plain)
  1. #!/usr/bin/perl
  2. use warnings;
  3. use strict;
  4. use Test::More tests => 46;
  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("a/foo", "foo", "a/b"), "nonrelative fail");
  20. ok(! pagespec_match("foo", "./*", "a/b"), "relative fail");
  21. ok(pagespec_match("a/foo", "./*", "a/b"), "relative");
  22. ok(pagespec_match("a/b/foo", "./*", "a/b"), "relative 2");
  23. ok(pagespec_match("foo", "./*", "a"), "relative toplevel");
  24. ok(pagespec_match("foo/bar", "*", "baz"), "absolute");
  25. # The link and backlink stuff needs this.
  26. $config{userdir}="";
  27. $links{foo}=[qw{bar baz}];
  28. $links{bar}=[];
  29. $links{baz}=[];
  30. $links{"bugs/foo"}=[qw{bugs/done}];
  31. $links{"bugs/done"}=[];
  32. $links{"bugs/bar"}=[qw{done}];
  33. $links{"done"}=[];
  34. $links{"examples/softwaresite/bugs/fails_to_frobnicate"}=[qw{done}];
  35. $links{"examples/softwaresite/bugs/done"}=[];
  36. ok(pagespec_match("foo", "link(bar)", ""), "link");
  37. ok(! pagespec_match("foo", "link(quux)", ""), "failed link");
  38. ok(pagespec_match("bugs/foo", "link(done)", "bugs/done"), "link match to bestlink");
  39. ok(! pagespec_match("examples/softwaresite/bugs/done", "link(done)",
  40. "bugs/done"), "link match to bestlink");
  41. ok(pagespec_match("examples/softwaresite/bugs/fails_to_frobnicate",
  42. "link(./done)", "examples/softwaresite/bugs/done"), "link relative");
  43. ok(! pagespec_match("foo", "link(./bar)", "foo/bar"), "link relative fail");
  44. ok(pagespec_match("bar", "backlink(foo)", ""), "backlink");
  45. ok(! pagespec_match("quux", "backlink(foo)", ""), "failed backlink");
  46. $IkiWiki::pagectime{foo}=1154532692; # Wed Aug 2 11:26 EDT 2006
  47. $IkiWiki::pagectime{bar}=1154532695; # after
  48. ok(pagespec_match("foo", "created_before(bar)"));
  49. ok(! pagespec_match("foo", "created_after(bar)"));
  50. ok(! pagespec_match("bar", "created_before(foo)"));
  51. ok(pagespec_match("bar", "created_after(foo)"));
  52. ok(pagespec_match("foo", "creation_year(2006)"), "year");
  53. ok(! pagespec_match("foo", "creation_year(2005)"), "other year");
  54. ok(pagespec_match("foo", "creation_month(8)"), "month");
  55. ok(! pagespec_match("foo", "creation_month(9)"), "other month");
  56. ok(pagespec_match("foo", "creation_day(2)"), "day");
  57. ok(! pagespec_match("foo", "creation_day(3)"), "other day");
  58. ok(! pagespec_match("foo", "no_such_function(foo)"), "foo");
  59. # old style globlists
  60. ok(pagespec_match("foo", "foo bar"), "simple list");
  61. ok(pagespec_match("bar", "foo bar"), "simple list 2");
  62. ok(pagespec_match("foo", "f?? !foz"));
  63. ok(! pagespec_match("foo", "f?? !foo"));
  64. ok(! pagespec_match("foo", "* !foo"));
  65. ok(! pagespec_match("foo", "foo !foo"));
  66. ok(! pagespec_match("foo.png", "* !*.*"));