aboutsummaryrefslogtreecommitdiff
path: root/t/wrapper-environ.t
blob: 6254816faa79dfe578062c65036e5bef43584476 (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
#!/usr/bin/perl
use warnings;
use strict;

use Test::More;
plan(skip_all => "IPC::Run not available")
	unless eval q{
		use IPC::Run qw(run);
		1;
	};

use IkiWiki;

use Cwd qw(getcwd);
use Errno qw(ENOENT);

my $installed = $ENV{INSTALLED_TESTS};

my @command;
if ($installed) {
	@command = qw(env PERL5LIB=t/tmp ikiwiki);
}
else {
	ok(! system("make -s ikiwiki.out"));
	@command = (qw(env PERL5LIB=t/tmp:blib/lib:blib/arch perl),
		"-I".getcwd, qw(./ikiwiki.out
		--underlaydir=underlays/basewiki
		--set underlaydirbase=underlays
		--templatedir=templates));
}

ok(! system("rm -rf t/tmp"));

writefile("test.setup", "t/tmp", <<EOF
# IkiWiki::Setup::Yaml - YAML formatted setup file
wikiname: this is the name of my wiki
srcdir: t/tmp/in
destdir: t/tmp/out
url: http://localhost
cgiurl: http://localhost/ikiwiki.cgi
cgi_wrapper: t/tmp/ikiwiki.cgi
cgi_wrappermode: 0754
add_plugins:
- anonok
- excessiveenvironment
anonok_pagespec: "*"
ENV: { 'PERL5LIB': 't/tmp:blib/lib:blib/arch' }
EOF
	);

writefile("index.mdwn", "t/tmp/in", "");

writefile("IkiWiki/Plugin/excessiveenvironment.pm", "t/tmp", <<'EOF'
#!/usr/bin/perl
package IkiWiki::Plugin::excessiveenvironment;
use warnings;
use strict;
use IkiWiki;

sub import {
	hook(type => "getsetup", id => "excessiveenvironment", call => \&getsetup);
	hook(type => "genwrapper", id => "excessiveenvironment", call => \&genwrapper);
}

sub getsetup {
	return plugin => {
		safe => 0,
		rebuild => undef,
		section => "rcs",
	};
}

sub genwrapper {
	my @ret;
	foreach my $j (1..4096) {
		push @ret, qq{addenv("VAR$j", "val$j");\n};
	}
	return join '', @ret;
}

1;
EOF
	);

my $stdout;
ok(! system(@command, qw(--setup t/tmp/test.setup --rebuild --wrappers)), "run ikiwiki");
ok(run(["./t/tmp/ikiwiki.cgi"], '<&-', '>', \$stdout, init => sub {
	$ENV{HTTP_HOST} = "localhost";
	$ENV{QUERY_STRING} = "do=prefs";
	$ENV{REQUEST_METHOD} = "GET";
	$ENV{SCRIPT_NAME} = "/cgi-bin/ikiwiki.cgi";
	$ENV{SERVER_PORT} = "80"
}), "run CGI");

done_testing();