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