wiki.pl: Port some fixes from upstream
[Orgmuse.git] / t / redirection.t
blob0ef4bbb228051d72104d4202f7e477c03f9f6758
1 # Copyright (C) 2006, 2007  Alex Schroeder <alex@gnu.org>
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.
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.
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/>.
16 require 't/test.pl';
17 package OddMuse;
18 use Test::More tests => 9;
19 use utf8; # tests contain UTF-8 characters and it matters
21 clear_pages();
23 # test message when using an undefined link pattern in a redirect
24 test_page(update_page('John_Coltrane', '#REDIRECT Coltrane'),
25           '#REDIRECT Coltrane',
26           'Invalid link pattern for #REDIRECT');
27 # plain link to an existing page
28 test_page(update_page('Miles_Davis', 'Featuring [[John Coltrane]]'),
29           'Featuring',
30           'John Coltrane');
31 # simple redirect
32 test_page(update_page('Sonny_Stitt', '#REDIRECT [[Stittö]]'),
33           'Status: 302',
34           'Location: .*wiki.pl\?action=browse;oldid=Sonny_Stitt;id=Stitt%c3%b6');
35 # add another level to the redirect chain above
36 test_page(update_page('Herby_Hancock', '#REDIRECT [[Sonny_Stitt]]'),
37           'Location: http://localhost/wiki.pl\?action=browse;oldid=Herby_Hancock;id=Sonny_Stitt');
38 test_page(get_page('action=browse oldid=Herby_Hancock id=Sonny_Stitt'),
39           'Too many redirections',
40           '#REDIRECT');