aboutsummaryrefslogtreecommitdiff
path: root/t/404.t
blob: 0bb3c60637e3935c9a743029b5346ab800b7b4eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/usr/bin/perl
use warnings;
use strict;
use Test::More tests => 17;

BEGIN { use_ok("IkiWiki::Plugin::404"); }

sub cgi_page_from_404 {
	return IkiWiki::Plugin::404::cgi_page_from_404(shift, shift, shift);
}

$IkiWiki::config{htmlext} = 'html';

is(cgi_page_from_404('/', 'http://example.com', 1), 'index');
is(cgi_page_from_404('/index.html', 'http://example.com', 0), 'index');
is(cgi_page_from_404('/', 'http://example.com/', 1), 'index');
is(cgi_page_from_404('/index.html', 'http://example.com/', 0), 'index');

is(cgi_page_from_404('/~user/foo/bar', 'http://example.com/~user', 1),
   'foo/bar');
is(cgi_page_from_404('/~user/foo/bar/index.html', 'http://example.com/~user', 1),
   'foo/bar');
is(cgi_page_from_404('/~user/foo/bar/', 'http://example.com/~user', 1),
   'foo/bar');
is(cgi_page_from_404('/~user/foo/bar.html', 'http://example.com/~user', 0),
   'foo/bar');

is(cgi_page_from_404('/~user/foo/bar', 'http://example.com/~user/', 1),
   'foo/bar');
is(cgi_page_from_404('/~user/foo/bar/index.html', 'http://example.com/~user/', 1),
   'foo/bar');
is(cgi_page_from_404('/~user/foo/bar/', 'http://example.com/~user/', 1),
   'foo/bar');
is(cgi_page_from_404('/~user/foo/bar.html', 'http://example.com/~user/', 0),
   'foo/bar');

is(cgi_page_from_404('/~user/foo', 'https://example.com/~user', 1),
   'foo');
is(cgi_page_from_404('/~user/foo/index.html', 'https://example.com/~user', 1),
   'foo');
is(cgi_page_from_404('/~user/foo/', 'https://example.com/~user', 1),
   'foo');
is(cgi_page_from_404('/~user/foo.html', 'https://example.com/~user', 0),
   'foo');