redirection.t 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. # Copyright (C) 2006, 2007 Alex Schroeder <alex@gnu.org>
  2. #
  3. # This program is free software; you can redistribute it and/or modify
  4. # it under the terms of the GNU General Public License as published by
  5. # the Free Software Foundation; either version 3 of the License, or
  6. # (at your option) any later version.
  7. #
  8. # This program is distributed in the hope that it will be useful,
  9. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. # GNU General Public License for more details.
  12. #
  13. # You should have received a copy of the GNU General Public License
  14. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  15. require './t/test.pl';
  16. package OddMuse;
  17. use Test::More tests => 9;
  18. use utf8; # tests contain UTF-8 characters and it matters
  19. # test message when using an undefined link pattern in a redirect
  20. test_page(update_page('John_Coltrane', '#REDIRECT Coltrane'),
  21. '#REDIRECT Coltrane',
  22. 'Invalid link pattern for #REDIRECT');
  23. # plain link to an existing page
  24. test_page(update_page('Miles_Davis', 'Featuring [[John Coltrane]]'),
  25. 'Featuring',
  26. 'John Coltrane');
  27. # simple redirect
  28. test_page(update_page('Sonny_Stitt', '#REDIRECT [[Stittö]]'),
  29. 'Status: 302',
  30. 'Location: .*wiki.pl\?action=browse;oldid=Sonny_Stitt;id=Stitt%c3%b6');
  31. # add another level to the redirect chain above
  32. test_page(update_page('Herby_Hancock', '#REDIRECT [[Sonny_Stitt]]'),
  33. 'Location: http://localhost/wiki.pl\?action=browse;oldid=Herby_Hancock;id=Sonny_Stitt');
  34. test_page(get_page('action=browse oldid=Herby_Hancock id=Sonny_Stitt'),
  35. 'Too many redirections',
  36. '#REDIRECT');