-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path02-unix_domain_socket.t
68 lines (53 loc) · 1.69 KB
/
02-unix_domain_socket.t
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
use strict;
use warnings;
use Check::Fork qw(check_fork);
use Check::Socket qw(check_socket);
use FCGI;
use FCGI::Client;
use File::Temp qw(tempfile);
use IO::Socket;
use Test::More 0.88;
check_fork() || plan skip_all => $Check::Fork::ERROR_MESSAGE;
check_socket() || plan skip_all => $Check::Socket::ERROR_MESSAGE;
$^O eq 'MSWin32' && plan skip_all => 'FCGI with UNIX domain sockets not implemented on $^O';
my (undef, $unix_socket_file) = tempfile();
my $fcgi_socket = FCGI::OpenSocket($unix_socket_file, 5);
# Client
if (my $pid = fork()) {
my $right_ret = <<'END';
Content-Type: text/plain
END
my ($stdout, $stderr) = client_request($unix_socket_file);
is($stdout, $right_ret."0\n", 'Test first round on stdout.');
is($stderr, undef, 'Test first round on stderr.');
($stdout, $stderr) = client_request($unix_socket_file);
is($stdout, $right_ret."1\n", 'Test second round on stdout.');
is($stderr, undef, 'Test second round on stderr.');
# Server
} elsif (defined $pid) {
my $request = FCGI::Request(\*STDIN, \*STDOUT, \*STDERR, \%ENV, $fcgi_socket);
# Only two cycles.
my $count = 0;
while ($count < 2 && $request->Accept() >= 0) {
print "Content-Type: text/plain\n\n";
print $count++."\n";
}
exit;
} else {
die $!;
}
# Cleanup.
FCGI::CloseSocket($fcgi_socket);
unlink $unix_socket_file;
done_testing;
sub client_request {
my $unix_socket_file = shift;
my $sock = IO::Socket::UNIX->new(
Peer => $unix_socket_file,
) or die $!;
my $client = FCGI::Client::Connection->new(sock => $sock);
my ($stdout, $stderr) = $client->request({
REQUEST_METHOD => 'GET',
}, '');
return ($stdout, $stderr);
}