Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add test for network socket #12

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions perl/MANIFEST
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,5 @@ MANIFEST.SKIP
README
t/01-load.t
t/02-unix_domain_socket.t
t/03-network_socket.t
typemap
1 change: 1 addition & 0 deletions perl/Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ WriteMakefile(
'FCGI::Client' => 0.09,
'File::Temp' => 0,
'IO::Socket' => 0,
'IO::Socket::IP' => 0,
'Test::More' => 0,
},
@extras,
Expand Down
64 changes: 64 additions & 0 deletions perl/t/03-network_socket.t
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
#!/usr/bin/env perl

use strict;
use warnings;

use Check::Fork qw(check_fork);
use Check::Socket qw(check_socket);
use FCGI;
use FCGI::Client;
use IO::Socket::IP;
use Test::More 'tests' => 4;

check_fork() || plan skip_all => $Check::Fork::ERROR_MESSAGE;
check_socket() || plan skip_all => $Check::Socket::ERROR_MESSAGE;

my $port = 8888;

# Client
if (my $pid = fork()) {
my $right_ret = <<'END';
Content-Type: text/plain

END

my ($stdout, $stderr) = client_request($port);
is($stdout, $right_ret."0\n", 'Test first round on stdout.');
is($stderr, undef, 'Test first round on stderr.');

($stdout, $stderr) = client_request($port);
is($stdout, $right_ret."1\n", 'Test second round on stdout.');
is($stderr, undef, 'Test second round on stderr.');

# Server
} elsif (defined $pid) {
my $fcgi_socket = FCGI::OpenSocket(':'.$port, 5);
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 $!;
}

sub client_request {
my $port = shift;

my $sock = IO::Socket::IP->new(
PeerAddr => '127.0.0.1',
PeerPort => $port,
) or die $!;

my $client = FCGI::Client::Connection->new(sock => $sock);
my ($stdout, $stderr) = $client->request({
REQUEST_METHOD => 'GET',
}, '');

return ($stdout, $stderr);
}