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