SvTEMP_off to stop private PV's being stolen and stored in shared space
[p5sagit/p5-mst-13.2.git] / ext / Socket / socketpair.t
CommitLineData
02fc2eee 1#!./perl -w
2
b4023995 3my $child;
26bf1728 4my $can_fork;
b4023995 5
02fc2eee 6BEGIN {
7 chdir 't' if -d 't';
8 @INC = '../lib';
9 require Config; import Config;
26bf1728 10 $can_fork = $Config{d_fork} || ($^O eq 'MSWin32' && $Config{useithreads});
11
a6e733f3 12 if ($^O eq "hpux" or $Config{'extensions'} !~ /\bSocket\b/ &&
02fc2eee 13 !(($^O eq 'VMS') && $Config{d_socket})) {
14 print "1..0\n";
15 exit 0;
b4023995 16 }
17
18 # Too many things in this test will hang forever if something is wrong,
19 # so we need a self destruct timer. And IO can hang despite an alarm.
20
21 # This is convoluted, but we must fork before Test::More, else child's
22 # Test::More thinks that it ran no tests, and prints a message to that
23 # effect
26bf1728 24 if( $can_fork) {
b4023995 25 my $parent = $$;
26 $child = fork;
27 die "Fork failed" unless defined $child;
28 if (!$child) {
29 $SIG{INT} = sub {exit 0}; # You have 60 seconds. Your time starts now.
30 my $must_finish_by = time + 60;
31 my $remaining;
32 while ($remaining = time - $must_finish_by) {
33 sleep $remaining;
34 }
35 warn "Something unexpectedly hung during testing";
36 kill "INT", $parent or die "Kill failed: $!";
37 exit 1;
38 }
02fc2eee 39 }
40}
b4023995 41
02fc2eee 42use Socket;
43use Test::More;
44use strict;
45use warnings;
5ec8c883 46use Errno;
02fc2eee 47
48my $skip_reason;
49
50if( !$Config{d_alarm} ) {
51 plan skip_all => "alarm() not implemented on this platform";
26bf1728 52} elsif( !$can_fork ) {
b4023995 53 plan skip_all => "fork() not implemented on this platform";
02fc2eee 54} else {
55 # This should fail but not die if there is real socketpair
56 eval {socketpair LEFT, RIGHT, -1, -1, -1};
57 if ($@ =~ /^Unsupported socket function "socketpair" called/) {
58 plan skip_all => 'No socketpair (real or emulated)';
59 } else {
60 eval {AF_UNIX};
61 if ($@ =~ /^Your vendor has not defined Socket macro AF_UNIX/) {
62 plan skip_all => 'No AF_UNIX';
63 } else {
cd0506f1 64 plan tests => 45;
02fc2eee 65 }
66 }
67}
68
b4023995 69# But we'll install an alarm handler in case any of the races below fail.
70$SIG{ALRM} = sub {die "Unexpected alarm during testing"};
02fc2eee 71
72ok (socketpair (LEFT, RIGHT, AF_UNIX, SOCK_STREAM, PF_UNSPEC),
73 "socketpair (LEFT, RIGHT, AF_UNIX, SOCK_STREAM, PF_UNSPEC)")
c5f49a01 74 or print "# \$\! = $!\n";
02fc2eee 75
76my @left = ("hello ", "world\n");
77my @right = ("perl ", "rules!"); # Not like I'm trying to bias any survey here.
78
79foreach (@left) {
80 # is (syswrite (LEFT, $_), length $_, "write " . _qq ($_) . " to left");
81 is (syswrite (LEFT, $_), length $_, "syswrite to left");
82}
83foreach (@right) {
84 # is (syswrite (RIGHT, $_), length $_, "write " . _qq ($_) . " to right");
85 is (syswrite (RIGHT, $_), length $_, "syswrite to right");
86}
87
88# stream socket, so our writes will become joined:
89my ($buffer, $expect);
90$expect = join '', @right;
22954800 91undef $buffer;
02fc2eee 92is (read (LEFT, $buffer, length $expect), length $expect, "read on left");
93is ($buffer, $expect, "content what we expected?");
94$expect = join '', @left;
22954800 95undef $buffer;
02fc2eee 96is (read (RIGHT, $buffer, length $expect), length $expect, "read on right");
97is ($buffer, $expect, "content what we expected?");
98
c5f49a01 99ok (shutdown(LEFT, SHUT_WR), "shutdown left for writing");
b4023995 100# This will hang forever if eof is buggy, and alarm doesn't interrupt system
101# Calls. Hence the child process minder.
c5f49a01 102{
103 local $SIG{ALRM} = sub { warn "EOF on right took over 3 seconds" };
e03d5f0a 104 local $TODO = "Known problems with unix sockets on $^O"
105 if $^O eq 'hpux' || $^O eq 'unicosmk';
c5f49a01 106 alarm 3;
cd0506f1 107 $! = 0;
c5f49a01 108 ok (eof RIGHT, "right is at EOF");
cd0506f1 109 is ($!, '', 'and $! should report no error');
c5f49a01 110 alarm 60;
111}
112
113$SIG{PIPE} = 'IGNORE';
114{
115 local $SIG{ALRM}
116 = sub { warn "syswrite to left didn't fail within 3 seconds" };
117 alarm 3;
118 is (syswrite (LEFT, "void"), undef, "syswrite to shutdown left should fail");
119 alarm 60;
120}
26bf1728 121{
c5f49a01 122 # This may need skipping on some OSes
5ec8c883 123 ok (($!{EPIPE} or $!{ESHUTDOWN}), '$! should be EPIPE or ESHUTDOWN')
c5f49a01 124 or printf "\$\!=%d(%s)\n", $!, $!;
125}
02fc2eee 126
127my @gripping = (chr 255, chr 127);
128foreach (@gripping) {
129 is (syswrite (RIGHT, $_), length $_, "syswrite to right");
130}
131
132ok (!eof LEFT, "left is not at EOF");
133
134$expect = join '', @gripping;
22954800 135undef $buffer;
02fc2eee 136is (read (LEFT, $buffer, length $expect), length $expect, "read on left");
137is ($buffer, $expect, "content what we expected?");
138
139ok (close LEFT, "close left");
140ok (close RIGHT, "close right");
141
26bf1728 142
02fc2eee 143# And now datagrams
144# I suspect we also need a self destruct time-bomb for these, as I don't see any
145# guarantee that the stack won't drop a UDP packet, even if it is for localhost.
146
26bf1728 147SKIP: {
148 skip "No usable SOCK_DGRAM", 24 if ($^O eq 'MSWin32');
149
150
02fc2eee 151ok (socketpair (LEFT, RIGHT, AF_UNIX, SOCK_DGRAM, PF_UNSPEC),
152 "socketpair (LEFT, RIGHT, AF_UNIX, SOCK_DGRAM, PF_UNSPEC)")
c5f49a01 153 or print "# \$\! = $!\n";
02fc2eee 154
155foreach (@left) {
156 # is (syswrite (LEFT, $_), length $_, "write " . _qq ($_) . " to left");
157 is (syswrite (LEFT, $_), length $_, "syswrite to left");
158}
159foreach (@right) {
160 # is (syswrite (RIGHT, $_), length $_, "write " . _qq ($_) . " to right");
161 is (syswrite (RIGHT, $_), length $_, "syswrite to right");
162}
163
164# stream socket, so our writes will become joined:
165my ($total);
166$total = join '', @right;
167foreach $expect (@right) {
22954800 168 undef $buffer;
02fc2eee 169 is (sysread (LEFT, $buffer, length $total), length $expect, "read on left");
170 is ($buffer, $expect, "content what we expected?");
171}
172$total = join '', @left;
173foreach $expect (@left) {
22954800 174 undef $buffer;
02fc2eee 175 is (sysread (RIGHT, $buffer, length $total), length $expect, "read on right");
176 is ($buffer, $expect, "content what we expected?");
177}
178
179ok (shutdown(LEFT, 1), "shutdown left for writing");
180# eof uses buffering. eof is indicated by a sysread of zero.
181# but for a datagram socket there's no way it can know nothing will ever be
182# sent
183{
184 my $alarmed = 0;
185 local $SIG{ALRM} = sub { $alarmed = 1; };
186 print "# Approximate forever as 3 seconds. Wait 'forever'...\n";
187 alarm 3;
22954800 188 undef $buffer;
02fc2eee 189 is (sysread (RIGHT, $buffer, 1), undef,
190 "read on right should be interrupted");
191 is ($alarmed, 1, "alarm should have fired");
192}
193alarm 30;
194
195#ok (eof RIGHT, "right is at EOF");
196
197foreach (@gripping) {
198 is (syswrite (RIGHT, $_), length $_, "syswrite to right");
199}
200
201$total = join '', @gripping;
202foreach $expect (@gripping) {
22954800 203 undef $buffer;
02fc2eee 204 is (sysread (LEFT, $buffer, length $total), length $expect, "read on left");
205 is ($buffer, $expect, "content what we expected?");
206}
207
208ok (close LEFT, "close left");
209ok (close RIGHT, "close right");
b4023995 210
26bf1728 211} # end of DGRAM SKIP
212
b4023995 213kill "INT", $child or warn "Failed to kill child process $child: $!";
214exit 0;