13 eval q{use Test::More skip_all => "IPC::Run not available"};
16 eval q{use Test::More};
21 my $PERL5LIB = 'blib/lib:blib/arch';
24 # Black-box (ish) test for relative linking between CGI and static content
27 my ($content, $in, %bits);
29 sub parse_cgi_content {
31 if ($content =~ qr{<base href="([^"]+)" */>}) {
34 if ($content =~ qr{href="([^"]+/style.css)"}) {
35 $bits{stylehref} = $1;
37 if ($content =~ qr{class="parentlinks">\s+<a href="([^"]+)">this is the name of my wiki</a>/}s) {
40 if ($content =~ qr{<a[^>]+href="([^"]+)\?do=prefs"}) {
46 ok(! system("make -s ikiwiki.out"));
47 ok(! system("rm -rf t/tmp"));
48 ok(! system("mkdir t/tmp"));
54 writefile($name, "t/tmp/in", $content);
55 ok(utime(333333333, 333333333, "t/tmp/in/$name"));
58 write_old_file("a.mdwn", "A");
59 write_old_file("a/b.mdwn", "B");
60 write_old_file("a/b/c.mdwn",
64 write_old_file("a/d.mdwn", "D");
65 write_old_file("a/d/e.mdwn", "E");
67 #######################################################################
68 # site 1: a perfectly ordinary ikiwiki
70 writefile("test.setup", "t/tmp", <<EOF
71 # IkiWiki::Setup::Yaml - YAML formatted setup file
72 wikiname: this is the name of my wiki
75 templatedir: templates
76 url: "http://example.com/wiki/"
77 cgiurl: "http://example.com/cgi-bin/ikiwiki.cgi"
78 cgi_wrapper: t/tmp/ikiwiki.cgi
80 # make it easier to test previewing
84 ENV: { 'PERL5LIB': '$PERL5LIB' }
88 ok(unlink("t/tmp/ikiwiki.cgi") || $!{ENOENT});
89 ok(! system("./ikiwiki.out --setup t/tmp/test.setup --rebuild --wrappers"));
91 # CGI wrapper should be exactly the requested mode
92 my (undef, undef, $mode, undef, undef,
93 undef, undef, undef, undef, undef,
94 undef, undef, undef) = stat("t/tmp/ikiwiki.cgi");
95 is($mode & 07777, 0754);
97 ok(-e "t/tmp/out/a/b/c/index.html");
98 $content = readfile("t/tmp/out/a/b/c/index.html");
99 # no <base> on static HTML
100 unlike($content, qr{<base\W});
101 # url and cgiurl are on the same host so the cgiurl is host-relative
102 like($content, qr{<a[^>]+href="/cgi-bin/ikiwiki.cgi\?do=prefs"});
103 # cross-links between static pages are relative
104 like($content, qr{<li>A: <a href="../../">a</a></li>});
105 like($content, qr{<li>B: <a href="../">b</a></li>});
106 like($content, qr{<li>E: <a href="../../d/e/">e</a></li>});
108 run(["./t/tmp/ikiwiki.cgi"], \undef, \$content, init => sub {
109 $ENV{REQUEST_METHOD} = 'GET';
110 $ENV{SERVER_PORT} = '80';
111 $ENV{SCRIPT_NAME} = '/cgi-bin/ikiwiki.cgi';
112 $ENV{QUERY_STRING} = 'do=prefs';
113 $ENV{HTTP_HOST} = 'example.com';
115 %bits = parse_cgi_content($content);
116 is($bits{basehref}, "http://example.com/wiki/");
117 like($bits{stylehref}, qr{^(?:(?:http:)?//example.com)?/wiki/style.css$});
118 like($bits{tophref}, qr{^(?:/wiki|\.)/$});
119 like($bits{cgihref}, qr{^(?:(?:http:)?//example.com)?/cgi-bin/ikiwiki.cgi$});
121 # when accessed via HTTPS, links are secure
122 run(["./t/tmp/ikiwiki.cgi"], \undef, \$content, init => sub {
123 $ENV{REQUEST_METHOD} = 'GET';
124 $ENV{SERVER_PORT} = '443';
125 $ENV{SCRIPT_NAME} = '/cgi-bin/ikiwiki.cgi';
126 $ENV{QUERY_STRING} = 'do=prefs';
127 $ENV{HTTP_HOST} = 'example.com';
130 %bits = parse_cgi_content($content);
131 is($bits{basehref}, "https://example.com/wiki/");
132 like($bits{stylehref}, qr{^(?:(?:https:)?//example.com)?/wiki/style.css$});
133 like($bits{tophref}, qr{^(?:/wiki|\.)/$});
134 like($bits{cgihref}, qr{^(?:(?:https:)?//example.com)?/cgi-bin/ikiwiki.cgi$});
136 # when accessed via a different hostname, links stay on that host
137 run(["./t/tmp/ikiwiki.cgi"], \undef, \$content, init => sub {
138 $ENV{REQUEST_METHOD} = 'GET';
139 $ENV{SERVER_PORT} = '80';
140 $ENV{SCRIPT_NAME} = '/cgi-bin/ikiwiki.cgi';
141 $ENV{QUERY_STRING} = 'do=prefs';
142 $ENV{HTTP_HOST} = 'staging.example.net';
144 %bits = parse_cgi_content($content);
145 is($bits{basehref}, "http://staging.example.net/wiki/");
146 like($bits{stylehref}, qr{^(?:(?:http:)?//staging.example.net)?/wiki/style.css$});
147 like($bits{tophref}, qr{^(?:/wiki|\.)/$});
148 like($bits{cgihref}, qr{^(?:(?:http:)?//staging.example.net)?/cgi-bin/ikiwiki.cgi$});
151 $in = 'do=edit&page=a/b/c&Preview';
152 run(["./t/tmp/ikiwiki.cgi"], \$in, \$content, init => sub {
153 $ENV{REQUEST_METHOD} = 'POST';
154 $ENV{SERVER_PORT} = '80';
155 $ENV{SCRIPT_NAME} = '/cgi-bin/ikiwiki.cgi';
156 $ENV{HTTP_HOST} = 'example.com';
157 $ENV{CONTENT_LENGTH} = length $in;
159 %bits = parse_cgi_content($content);
160 is($bits{basehref}, "http://example.com/wiki/a/b/c/");
161 like($bits{stylehref}, qr{^(?:(?:http:)?//example.com)?/wiki/style.css$});
162 like($bits{tophref}, qr{^(?:/wiki|\.\./\.\./\.\.)/$});
163 like($bits{cgihref}, qr{^(?:(?:http:)?//example.com)?/cgi-bin/ikiwiki.cgi$});
165 #######################################################################
166 # site 2: static content and CGI are on different servers
168 writefile("test.setup", "t/tmp", <<EOF
169 # IkiWiki::Setup::Yaml - YAML formatted setup file
170 wikiname: this is the name of my wiki
173 templatedir: templates
174 url: "http://static.example.com/"
175 cgiurl: "http://cgi.example.com/ikiwiki.cgi"
176 cgi_wrapper: t/tmp/ikiwiki.cgi
177 cgi_wrappermode: 0754
178 # make it easier to test previewing
182 ENV: { 'PERL5LIB': '$PERL5LIB' }
186 ok(unlink("t/tmp/ikiwiki.cgi"));
187 ok(! system("./ikiwiki.out --setup t/tmp/test.setup --rebuild --wrappers"));
189 # CGI wrapper should be exactly the requested mode
190 (undef, undef, $mode, undef, undef,
191 undef, undef, undef, undef, undef,
192 undef, undef, undef) = stat("t/tmp/ikiwiki.cgi");
193 is($mode & 07777, 0754);
195 ok(-e "t/tmp/out/a/b/c/index.html");
196 $content = readfile("t/tmp/out/a/b/c/index.html");
197 # no <base> on static HTML
198 unlike($content, qr{<base\W});
199 # url and cgiurl are not on the same host so the cgiurl has to be
200 # protocol-relative or absolute
201 like($content, qr{<a[^>]+href="(?:http:)?//cgi.example.com/ikiwiki.cgi\?do=prefs"});
202 # cross-links between static pages are still relative
203 like($content, qr{<li>A: <a href="../../">a</a></li>});
204 like($content, qr{<li>B: <a href="../">b</a></li>});
205 like($content, qr{<li>E: <a href="../../d/e/">e</a></li>});
207 run(["./t/tmp/ikiwiki.cgi"], \undef, \$content, init => sub {
208 $ENV{REQUEST_METHOD} = 'GET';
209 $ENV{SERVER_PORT} = '80';
210 $ENV{SCRIPT_NAME} = '/ikiwiki.cgi';
211 $ENV{QUERY_STRING} = 'do=prefs';
212 $ENV{HTTP_HOST} = 'cgi.example.com';
214 %bits = parse_cgi_content($content);
215 like($bits{basehref}, qr{^http://static.example.com/$});
216 like($bits{stylehref}, qr{^(?:(?:http:)?//static.example.com)?/style.css$});
217 like($bits{tophref}, qr{^(?:http:)?//static.example.com/$});
218 like($bits{cgihref}, qr{^(?:(?:http:)?//cgi.example.com)?/ikiwiki.cgi$});
220 # when accessed via HTTPS, links are secure
221 run(["./t/tmp/ikiwiki.cgi"], \undef, \$content, init => sub {
222 $ENV{REQUEST_METHOD} = 'GET';
223 $ENV{SERVER_PORT} = '443';
224 $ENV{SCRIPT_NAME} = '/ikiwiki.cgi';
225 $ENV{QUERY_STRING} = 'do=prefs';
226 $ENV{HTTP_HOST} = 'cgi.example.com';
229 %bits = parse_cgi_content($content);
231 local $TODO = "avoid mixed content";
232 like($bits{basehref}, qr{^https://static.example.com/$});
233 like($bits{stylehref}, qr{^(?:(?:https:)?//static.example.com)?/style.css$});
234 like($bits{tophref}, qr{^(?:https:)?//static.example.com/$});
235 like($bits{cgihref}, qr{^(?:(?:https:)?//cgi.example.com)?/ikiwiki.cgi$});
238 # when accessed via a different hostname, links to the CGI (only) should
240 $in = 'do=edit&page=a/b/c&Preview';
241 run(["./t/tmp/ikiwiki.cgi"], \$in, \$content, init => sub {
242 $ENV{REQUEST_METHOD} = 'POST';
243 $ENV{SERVER_PORT} = '80';
244 $ENV{SCRIPT_NAME} = '/ikiwiki.cgi';
245 $ENV{HTTP_HOST} = 'staging.example.net';
247 $ENV{CONTENT_LENGTH} = length $in;
249 like($bits{basehref}, qr{^http://static.example.com/$});
250 like($bits{stylehref}, qr{^(?:(?:http:)?//static.example.com)?/style.css$});
251 like($bits{tophref}, qr{^(?:http:)?//static.example.com/$});
253 local $TODO = "use self-referential CGI URL?";
254 like($bits{cgihref}, qr{^(?:(?:http:)?//staging.example.net)?/ikiwiki.cgi$});
257 #######################################################################
258 # site 3: we specifically want everything to be secure
260 writefile("test.setup", "t/tmp", <<EOF
261 # IkiWiki::Setup::Yaml - YAML formatted setup file
262 wikiname: this is the name of my wiki
265 templatedir: templates
266 url: "https://example.com/wiki/"
267 cgiurl: "https://example.com/cgi-bin/ikiwiki.cgi"
268 cgi_wrapper: t/tmp/ikiwiki.cgi
269 cgi_wrappermode: 0754
270 # make it easier to test previewing
274 ENV: { 'PERL5LIB': '$PERL5LIB' }
278 ok(unlink("t/tmp/ikiwiki.cgi"));
279 ok(! system("./ikiwiki.out --setup t/tmp/test.setup --rebuild --wrappers"));
281 # CGI wrapper should be exactly the requested mode
282 (undef, undef, $mode, undef, undef,
283 undef, undef, undef, undef, undef,
284 undef, undef, undef) = stat("t/tmp/ikiwiki.cgi");
285 is($mode & 07777, 0754);
287 ok(-e "t/tmp/out/a/b/c/index.html");
288 $content = readfile("t/tmp/out/a/b/c/index.html");
289 # no <base> on static HTML
290 unlike($content, qr{<base\W});
291 # url and cgiurl are on the same host so the cgiurl is host-relative
292 like($content, qr{<a[^>]+href="/cgi-bin/ikiwiki.cgi\?do=prefs"});
293 # cross-links between static pages are relative
294 like($content, qr{<li>A: <a href="../../">a</a></li>});
295 like($content, qr{<li>B: <a href="../">b</a></li>});
296 like($content, qr{<li>E: <a href="../../d/e/">e</a></li>});
298 # when accessed via HTTPS, links are secure
299 run(["./t/tmp/ikiwiki.cgi"], \undef, \$content, init => sub {
300 $ENV{REQUEST_METHOD} = 'GET';
301 $ENV{SERVER_PORT} = '443';
302 $ENV{SCRIPT_NAME} = '/cgi-bin/ikiwiki.cgi';
303 $ENV{QUERY_STRING} = 'do=prefs';
304 $ENV{HTTP_HOST} = 'example.com';
307 %bits = parse_cgi_content($content);
308 is($bits{basehref}, "https://example.com/wiki/");
309 like($bits{stylehref}, qr{^(?:(?:https:)?//example.com)?/wiki/style.css$});
310 like($bits{tophref}, qr{^(?:/wiki|\.)/$});
311 like($bits{cgihref}, qr{^(?:(?:https:)?//example.com)?/cgi-bin/ikiwiki.cgi$});
313 # when not accessed via HTTPS, links should still be secure
314 # (but if this happens, that's a sign of web server misconfiguration)
315 run(["./t/tmp/ikiwiki.cgi"], \undef, \$content, init => sub {
316 $ENV{REQUEST_METHOD} = 'GET';
317 $ENV{SERVER_PORT} = '80';
318 $ENV{SCRIPT_NAME} = '/cgi-bin/ikiwiki.cgi';
319 $ENV{QUERY_STRING} = 'do=prefs';
320 $ENV{HTTP_HOST} = 'example.com';
322 %bits = parse_cgi_content($content);
323 like($bits{tophref}, qr{^(?:/wiki|\.)/$});
325 local $TODO = "treat https in configured url, cgiurl as required?";
326 is($bits{basehref}, "https://example.com/wiki/");
327 like($bits{stylehref}, qr{^(?:(?:https:)?//example.com)?/wiki/style.css$});
329 like($bits{cgihref}, qr{^(?:(?:https:)?//example.com)?/cgi-bin/ikiwiki.cgi$});
331 # when accessed via a different hostname, links stay on that host
332 run(["./t/tmp/ikiwiki.cgi"], \undef, \$content, init => sub {
333 $ENV{REQUEST_METHOD} = 'GET';
334 $ENV{SERVER_PORT} = '443';
335 $ENV{SCRIPT_NAME} = '/cgi-bin/ikiwiki.cgi';
336 $ENV{QUERY_STRING} = 'do=prefs';
337 $ENV{HTTP_HOST} = 'staging.example.net';
340 %bits = parse_cgi_content($content);
341 is($bits{basehref}, "https://staging.example.net/wiki/");
342 like($bits{stylehref}, qr{^(?:(?:https:)?//staging.example.net)?/wiki/style.css$});
343 like($bits{tophref}, qr{^(?:/wiki|\.)/$});
344 like($bits{cgihref}, qr{^(?:(?:https:)?//staging.example.net)?/cgi-bin/ikiwiki.cgi$});
347 $in = 'do=edit&page=a/b/c&Preview';
348 run(["./t/tmp/ikiwiki.cgi"], \$in, \$content, init => sub {
349 $ENV{REQUEST_METHOD} = 'POST';
350 $ENV{SERVER_PORT} = '443';
351 $ENV{SCRIPT_NAME} = '/cgi-bin/ikiwiki.cgi';
352 $ENV{HTTP_HOST} = 'example.com';
353 $ENV{CONTENT_LENGTH} = length $in;
356 %bits = parse_cgi_content($content);
357 is($bits{basehref}, "https://example.com/wiki/a/b/c/");
358 like($bits{stylehref}, qr{^(?:(?:https:)?//example.com)?/wiki/style.css$});
359 like($bits{tophref}, qr{^(?:/wiki|\.\./\.\./\.\.)/$});
360 like($bits{cgihref}, qr{^(?:(?:https:)?//example.com)?/cgi-bin/ikiwiki.cgi$});
362 #######################################################################
363 # site 4 (NetBSD wiki): CGI is secure, static content doesn't have to be
365 writefile("test.setup", "t/tmp", <<EOF
366 # IkiWiki::Setup::Yaml - YAML formatted setup file
367 wikiname: this is the name of my wiki
370 templatedir: templates
371 url: "http://example.com/wiki/"
372 cgiurl: "https://example.com/cgi-bin/ikiwiki.cgi"
373 cgi_wrapper: t/tmp/ikiwiki.cgi
374 cgi_wrappermode: 0754
375 # make it easier to test previewing
379 ENV: { 'PERL5LIB': '$PERL5LIB' }
383 ok(unlink("t/tmp/ikiwiki.cgi"));
384 ok(! system("./ikiwiki.out --setup t/tmp/test.setup --rebuild --wrappers"));
386 # CGI wrapper should be exactly the requested mode
387 (undef, undef, $mode, undef, undef,
388 undef, undef, undef, undef, undef,
389 undef, undef, undef) = stat("t/tmp/ikiwiki.cgi");
390 is($mode & 07777, 0754);
392 ok(-e "t/tmp/out/a/b/c/index.html");
393 $content = readfile("t/tmp/out/a/b/c/index.html");
394 # no <base> on static HTML
395 unlike($content, qr{<base\W});
396 # url and cgiurl are on the same host but different schemes
397 like($content, qr{<a[^>]+href="https://example.com/cgi-bin/ikiwiki.cgi\?do=prefs"});
398 # cross-links between static pages are relative
399 like($content, qr{<li>A: <a href="../../">a</a></li>});
400 like($content, qr{<li>B: <a href="../">b</a></li>});
401 like($content, qr{<li>E: <a href="../../d/e/">e</a></li>});
403 # when accessed via HTTPS, links are secure (to avoid mixed-content)
404 run(["./t/tmp/ikiwiki.cgi"], \undef, \$content, init => sub {
405 $ENV{REQUEST_METHOD} = 'GET';
406 $ENV{SERVER_PORT} = '443';
407 $ENV{SCRIPT_NAME} = '/cgi-bin/ikiwiki.cgi';
408 $ENV{QUERY_STRING} = 'do=prefs';
409 $ENV{HTTP_HOST} = 'example.com';
412 %bits = parse_cgi_content($content);
414 local $TODO = "avoid mixed content";
415 is($bits{basehref}, "https://example.com/wiki/");
416 like($bits{stylehref}, qr{^(?:(?:https:)?//example.com)?/wiki/style.css$});
417 like($bits{tophref}, qr{^(?:/wiki|\.)/$});
419 like($bits{cgihref}, qr{^(?:(?:https:)?//example.com)?/cgi-bin/ikiwiki.cgi$});
421 # when not accessed via HTTPS, ???
422 run(["./t/tmp/ikiwiki.cgi"], \undef, \$content, init => sub {
423 $ENV{REQUEST_METHOD} = 'GET';
424 $ENV{SERVER_PORT} = '80';
425 $ENV{SCRIPT_NAME} = '/cgi-bin/ikiwiki.cgi';
426 $ENV{QUERY_STRING} = 'do=prefs';
427 $ENV{HTTP_HOST} = 'example.com';
429 %bits = parse_cgi_content($content);
430 like($bits{basehref}, qr{^https?://example.com/wiki/$});
431 like($bits{stylehref}, qr{^(?:(?:https?:)?//example.com)?/wiki/style.css$});
432 like($bits{tophref}, qr{^(?:(?:https?://example.com)?/wiki|\.)/$});
433 like($bits{cgihref}, qr{^(?:(?:https:)?//example.com)?/cgi-bin/ikiwiki.cgi$});
435 # when accessed via a different hostname, links stay on that host
436 run(["./t/tmp/ikiwiki.cgi"], \undef, \$content, init => sub {
437 $ENV{REQUEST_METHOD} = 'GET';
438 $ENV{SERVER_PORT} = '443';
439 $ENV{SCRIPT_NAME} = '/cgi-bin/ikiwiki.cgi';
440 $ENV{QUERY_STRING} = 'do=prefs';
441 $ENV{HTTP_HOST} = 'staging.example.net';
444 %bits = parse_cgi_content($content);
446 local $TODO = "avoid mixed content";
447 like($bits{basehref}, qr{^https://example.com/wiki/$});
448 like($bits{stylehref}, qr{^(?:(?:https:)?//example.com)?/wiki/style.css$});
449 like($bits{tophref}, qr{^(?:(?:(?:https:)?//example.com)?/wiki|\.)/$});
450 like($bits{cgihref}, qr{^(?:(?:https:)?//staging.example.net)?/cgi-bin/ikiwiki.cgi$});
454 $in = 'do=edit&page=a/b/c&Preview';
455 run(["./t/tmp/ikiwiki.cgi"], \$in, \$content, init => sub {
456 $ENV{REQUEST_METHOD} = 'POST';
457 $ENV{SERVER_PORT} = '443';
458 $ENV{SCRIPT_NAME} = '/cgi-bin/ikiwiki.cgi';
459 $ENV{HTTP_HOST} = 'example.com';
460 $ENV{CONTENT_LENGTH} = length $in;
463 %bits = parse_cgi_content($content);
465 local $TODO = "avoid mixed content";
466 is($bits{basehref}, "https://example.com/wiki/a/b/c/");
467 like($bits{stylehref}, qr{^(?:(?:https:)?//example.com)?/wiki/style.css$});
469 like($bits{tophref}, qr{^(?:/wiki|\.\./\.\./\.\.)/$});
470 like($bits{cgihref}, qr{^(?:(?:https:)?//example.com)?/cgi-bin/ikiwiki.cgi$});
472 # Deliberately not testing https static content with http cgiurl,
473 # because that makes remarkably little sense.
475 #######################################################################
476 # site 5: w3mmode, as documented in [[w3mmode]]
478 writefile("test.setup", "t/tmp", <<EOF
479 # IkiWiki::Setup::Yaml - YAML formatted setup file
480 wikiname: this is the name of my wiki
483 templatedir: templates
486 cgi_wrapper: t/tmp/ikiwiki.cgi
487 cgi_wrappermode: 0754
491 ENV: { 'PERL5LIB': '$PERL5LIB' }
495 ok(unlink("t/tmp/ikiwiki.cgi"));
496 ok(! system("./ikiwiki.out --setup t/tmp/test.setup --rebuild --wrappers"));
498 # CGI wrapper should be exactly the requested mode
499 (undef, undef, $mode, undef, undef,
500 undef, undef, undef, undef, undef,
501 undef, undef, undef) = stat("t/tmp/ikiwiki.cgi");
502 is($mode & 07777, 0754);
504 ok(-e "t/tmp/out/a/b/c/index.html");
505 $content = readfile("t/tmp/out/a/b/c/index.html");
506 # no <base> on static HTML
507 unlike($content, qr{<base\W});
508 # FIXME: does /$LIB/ikiwiki-w3m.cgi work under w3m?
509 like($content, qr{<a[^>]+href="(?:file://)?/\$LIB/ikiwiki-w3m.cgi/ikiwiki.cgi\?do=prefs"});
510 # cross-links between static pages are still relative
511 like($content, qr{<li>A: <a href="../../">a</a></li>});
512 like($content, qr{<li>B: <a href="../">b</a></li>});
513 like($content, qr{<li>E: <a href="../../d/e/">e</a></li>});
515 run(["./t/tmp/ikiwiki.cgi"], \undef, \$content, init => sub {
516 $ENV{REQUEST_METHOD} = 'GET';
517 $ENV{PATH_INFO} = '/ikiwiki.cgi';
518 $ENV{SCRIPT_NAME} = '/cgi-bin/ikiwiki-w3m.cgi';
519 $ENV{QUERY_STRING} = 'do=prefs';
521 %bits = parse_cgi_content($content);
522 like($bits{tophref}, qr{^(?:\Q$pwd\E/t/tmp/out|\.)/$});
523 like($bits{cgihref}, qr{^(?:file://)?/\$LIB/ikiwiki-w3m.cgi/ikiwiki.cgi$});
525 local $TODO = "should be file:///";
526 like($bits{basehref}, qr{^(?:(?:file:)?//)?\Q$pwd\E/t/tmp/out/$});
527 like($bits{stylehref}, qr{^(?:(?:(?:file:)?//)?\Q$pwd\E/t/tmp/out|\.)/style.css$});
530 #######################################################################
531 # site 6: we're behind a reverse-proxy
533 writefile("test.setup", "t/tmp", <<EOF
534 # IkiWiki::Setup::Yaml - YAML formatted setup file
535 wikiname: this is the name of my wiki
538 templatedir: templates
539 url: "https://example.com/wiki/"
540 cgiurl: "https://example.com/cgi-bin/ikiwiki.cgi"
541 cgi_wrapper: t/tmp/ikiwiki.cgi
542 cgi_wrappermode: 0754
543 # make it easier to test previewing
548 ENV: { 'PERL5LIB': '$PERL5LIB' }
552 ok(unlink("t/tmp/ikiwiki.cgi"));
553 ok(! system("./ikiwiki.out --setup t/tmp/test.setup --rebuild --wrappers"));
555 # CGI wrapper should be exactly the requested mode
556 (undef, undef, $mode, undef, undef,
557 undef, undef, undef, undef, undef,
558 undef, undef, undef) = stat("t/tmp/ikiwiki.cgi");
559 is($mode & 07777, 0754);
561 ok(-e "t/tmp/out/a/b/c/index.html");
562 $content = readfile("t/tmp/out/a/b/c/index.html");
563 # no <base> on static HTML
564 unlike($content, qr{<base\W});
565 # url and cgiurl are on the same host so the cgiurl is host-relative
566 like($content, qr{<a[^>]+href="/cgi-bin/ikiwiki.cgi\?do=prefs"});
567 # cross-links between static pages are relative
568 like($content, qr{<li>A: <a href="../../">a</a></li>});
569 like($content, qr{<li>B: <a href="../">b</a></li>});
570 like($content, qr{<li>E: <a href="../../d/e/">e</a></li>});
572 # because we are behind a reverse-proxy we must assume that
573 # we're being accessed by the configured cgiurl
574 run(["./t/tmp/ikiwiki.cgi"], \undef, \$content, init => sub {
575 $ENV{REQUEST_METHOD} = 'GET';
576 $ENV{SERVER_PORT} = '80';
577 $ENV{SCRIPT_NAME} = '/cgi-bin/ikiwiki.cgi';
578 $ENV{QUERY_STRING} = 'do=prefs';
579 $ENV{HTTP_HOST} = 'localhost';
581 %bits = parse_cgi_content($content);
582 like($bits{tophref}, qr{^(?:/wiki|\.)/$});
583 like($bits{cgihref}, qr{^(?:(?:https:)?//example.com)?/cgi-bin/ikiwiki.cgi$});
585 local $TODO = "reverse-proxy support needed";
586 is($bits{basehref}, "https://example.com/wiki/");
587 like($bits{stylehref}, qr{^(?:(?:https:)?//example.com)?/wiki/style.css$});
591 $in = 'do=edit&page=a/b/c&Preview';
592 run(["./t/tmp/ikiwiki.cgi"], \$in, \$content, init => sub {
593 $ENV{REQUEST_METHOD} = 'POST';
594 $ENV{SERVER_PORT} = '80';
595 $ENV{SCRIPT_NAME} = '/cgi-bin/ikiwiki.cgi';
596 $ENV{HTTP_HOST} = 'localhost';
597 $ENV{CONTENT_LENGTH} = length $in;
599 %bits = parse_cgi_content($content);
600 like($bits{tophref}, qr{^(?:/wiki|\.\./\.\./\.\.)/$});
601 like($bits{cgihref}, qr{^(?:(?:https:)?//example.com)?/cgi-bin/ikiwiki.cgi$});
603 local $TODO = "reverse-proxy support needed";
604 is($bits{basehref}, "https://example.com/wiki/a/b/c/");
605 like($bits{stylehref}, qr{^(?:(?:https:)?//example.com)?/wiki/style.css$});