summaryrefslogtreecommitdiff
path: root/t/pagespec_match.t
blob: 64408f4898cb8b0671ba24fb7f2f8433e87dacae (plain)
  1. #!/usr/bin/perl
  2. use warnings;
  3. use strict;
  4. use Test::More tests => 54;
  5. BEGIN { use_ok("IkiWiki"); }
  6. ok(pagespec_match("foo", "*"));
  7. ok(!pagespec_match("foo", ""));
  8. ok(pagespec_match("foo", "!bar"));
  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("foo", "(
  22. bar
  23. or (
  24. (meep and foo)
  25. or
  26. (baz or foo)
  27. or beep
  28. )
  29. )"), "multiline complex pagespec");
  30. ok(! pagespec_match("a/foo", "foo", location => "a/b"), "nonrelative fail");
  31. ok(! pagespec_match("foo", "./*", location => "a/b"), "relative fail");
  32. ok(pagespec_match("a/foo", "./*", location => "a/b"), "relative");
  33. ok(pagespec_match("a/b/foo", "./*", location => "a/b"), "relative 2");
  34. ok(pagespec_match("a/foo", "./*", "a/b"), "relative oldstyle call");
  35. ok(pagespec_match("foo", "./*", location => "a"), "relative toplevel");
  36. ok(pagespec_match("foo/bar", "*", location => "baz"), "absolute");
  37. ok(! pagespec_match("foo", "foo and bar"), "foo and bar");
  38. ok(pagespec_match("{f}oo", "{*}*"), "curly match");
  39. ok(! pagespec_match("foo", "{*}*"), "curly !match");
  40. # The link and backlink stuff needs this.
  41. $config{userdir}="";
  42. $links{foo}=[qw{bar baz}];
  43. $links{bar}=[];
  44. $links{baz}=[];
  45. $links{"bugs/foo"}=[qw{bugs/done}];
  46. $links{"bugs/done"}=[];
  47. $links{"bugs/bar"}=[qw{done}];
  48. $links{"done"}=[];
  49. $links{"examples/softwaresite/bugs/fails_to_frobnicate"}=[qw{done}];
  50. $links{"examples/softwaresite/bugs/done"}=[];
  51. $links{"ook"}=[qw{/blog/tags/foo}];
  52. ok(pagespec_match("foo", "link(bar)"), "link");
  53. ok(pagespec_match("foo", "link(ba?)"), "glob link");
  54. ok(! pagespec_match("foo", "link(quux)"), "failed link");
  55. ok(! pagespec_match("foo", "link(qu*)"), "failed glob link");
  56. ok(pagespec_match("bugs/foo", "link(done)", location => "bugs/done"), "link match to bestlink");
  57. ok(! pagespec_match("examples/softwaresite/bugs/done", "link(done)",
  58. location => "bugs/done"), "link match to bestlink");
  59. ok(pagespec_match("examples/softwaresite/bugs/fails_to_frobnicate",
  60. "link(./done)", location => "examples/softwaresite/bugs/done"), "link relative");
  61. ok(! pagespec_match("foo", "link(./bar)", location => "foo/bar"), "link relative fail");
  62. ok(pagespec_match("bar", "backlink(foo)"), "backlink");
  63. ok(! pagespec_match("quux", "backlink(foo)"), "failed backlink");
  64. ok(! pagespec_match("bar", ""), "empty pagespec should match nothing");
  65. ok(! pagespec_match("bar", " "), "blank pagespec should match nothing");
  66. ok(pagespec_match("ook", "link(blog/tags/foo)"), "link internal absolute success");
  67. ok(pagespec_match("ook", "link(/blog/tags/foo)"), "link explicit absolute success");
  68. $IkiWiki::pagectime{foo}=1154532692; # Wed Aug 2 11:26 EDT 2006
  69. $IkiWiki::pagectime{bar}=1154532695; # after
  70. ok(pagespec_match("foo", "created_before(bar)"));
  71. ok(! pagespec_match("foo", "created_after(bar)"));
  72. ok(! pagespec_match("bar", "created_before(foo)"));
  73. ok(pagespec_match("bar", "created_after(foo)"));
  74. ok(pagespec_match("foo", "creation_year(2006)"), "year");
  75. ok(! pagespec_match("foo", "creation_year(2005)"), "other year");
  76. ok(pagespec_match("foo", "creation_month(8)"), "month");
  77. ok(! pagespec_match("foo", "creation_month(9)"), "other month");
  78. ok(pagespec_match("foo", "creation_day(2)"), "day");
  79. ok(! pagespec_match("foo", "creation_day(3)"), "other day");
  80. ok(! pagespec_match("foo", "no_such_function(foo)"), "foo");
  81. my $ret=pagespec_match("foo", "(invalid");
  82. ok(! $ret, "syntax error");
  83. ok($ret =~ /syntax error/, "error message");