This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Integrate:
[perl5.git] / ext / Socket / Socket.t
CommitLineData
37120919
AD
1#!./perl
2
3BEGIN {
4 chdir 't' if -d 't';
20822f61 5 @INC = '../lib';
37120919 6 require Config; import Config;
c07a80fd 7 if ($Config{'extensions'} !~ /\bSocket\b/ &&
3149255e 8 !(($^O eq 'VMS') && $Config{d_socket})) {
2af9ad4a 9 print "1..0\n";
37120919
AD
10 exit 0;
11 }
ae054b0e 12 $has_alarm = $Config{d_alarm};
37120919
AD
13}
14
15use Socket;
16
2a84dff3 17print "1..16\n";
37120919 18
5d604bee 19$has_echo = $^O ne 'MSWin32';
ae054b0e
JH
20$alarmed = 0;
21sub arm { $alarmed = 0; alarm(shift) if $has_alarm }
22sub alarmed { $alarmed = 1 }
23$SIG{ALRM} = 'alarmed' if $has_alarm;
24
37120919
AD
25if (socket(T,PF_INET,SOCK_STREAM,6)) {
26 print "ok 1\n";
ae054b0e
JH
27
28 arm(5);
fd4f854d
NC
29 my $host = $^O eq 'MacOS' || ($^O eq 'irix' && $Config{osvers} == 5) ?
30 '127.0.0.1' : 'localhost';
31 my $localhost = inet_aton($host);
32
33 if ($has_echo && defined $localhost && connect(T,pack_sockaddr_in(7,$localhost))){
ae054b0e
JH
34 arm(0);
35
37120919
AD
36 print "ok 2\n";
37
31f187ae
JH
38 print "# Connected to " .
39 inet_ntoa((unpack_sockaddr_in(getpeername(T)))[1])."\n";
37120919 40
ae054b0e 41 arm(5);
37120919 42 syswrite(T,"hello",5);
ae054b0e
JH
43 arm(0);
44
45 arm(5);
962dce22 46 $read = sysread(T,$buff,10); # Connection may be granted, then closed!
ae054b0e
JH
47 arm(0);
48
d6831368
SB
49 while ($read > 0 && length($buff) < 5) {
50 # adjust for fact that TCP doesn't guarantee size of reads/writes
ae054b0e 51 arm(5);
d6831368 52 $read = sysread(T,$buff,10,length($buff));
ae054b0e 53 arm(0);
d6831368 54 }
962dce22 55 print(($read == 0 || $buff eq "hello") ? "ok 3\n" : "not ok 3\n");
37120919
AD
56 }
57 else {
dc26df50 58 print "# You're allowed to fail tests 2 and 3 if\n";
fd4f854d
NC
59 print "# the echo service has been disabled or if your\n";
60 print "# gethostbyname() cannot resolve your localhost.\n";
61 print "# 'Connection refused' indicates disabled echo service.\n";
ae054b0e
JH
62 print "# 'Interrupted system call' indicates a hanging echo service.\n";
63 print "# Error: $!\n";
64 print "ok 2 - skipped\n";
65 print "ok 3 - skipped\n";
37120919
AD
66 }
67}
68else {
ae054b0e 69 print "# Error: $!\n";
37120919
AD
70 print "not ok 1\n";
71}
72
73if( socket(S,PF_INET,SOCK_STREAM,6) ){
74 print "ok 4\n";
75
ae054b0e 76 arm(5);
5d604bee 77 if ($has_echo && connect(S,pack_sockaddr_in(7,INADDR_LOOPBACK))){
ae054b0e
JH
78 arm(0);
79
37120919
AD
80 print "ok 5\n";
81
31f187ae
JH
82 print "# Connected to " .
83 inet_ntoa((unpack_sockaddr_in(getpeername(S)))[1])."\n";
37120919 84
ae054b0e 85 arm(5);
37120919 86 syswrite(S,"olleh",5);
ae054b0e
JH
87 arm(0);
88
89 arm(5);
962dce22 90 $read = sysread(S,$buff,10); # Connection may be granted, then closed!
ae054b0e
JH
91 arm(0);
92
d6831368
SB
93 while ($read > 0 && length($buff) < 5) {
94 # adjust for fact that TCP doesn't guarantee size of reads/writes
ae054b0e 95 arm(5);
d6831368 96 $read = sysread(S,$buff,10,length($buff));
ae054b0e 97 arm(0);
d6831368 98 }
962dce22 99 print(($read == 0 || $buff eq "olleh") ? "ok 6\n" : "not ok 6\n");
37120919
AD
100 }
101 else {
dc26df50
JH
102 print "# You're allowed to fail tests 5 and 6 if\n";
103 print "# the echo service has been disabled.\n";
ae054b0e
JH
104 print "# 'Interrupted system call' indicates a hanging echo service.\n";
105 print "# Error: $!\n";
106 print "ok 5 - skipped\n";
107 print "ok 6 - skipped\n";
37120919
AD
108 }
109}
110else {
ae054b0e 111 print "# Error: $!\n";
37120919
AD
112 print "not ok 4\n";
113}
d3a7d8c7
GS
114
115# warnings
116$SIG{__WARN__} = sub {
117 ++ $w if $_[0] =~ /^6-ARG sockaddr_in call is deprecated/ ;
118} ;
119$w = 0 ;
120sockaddr_in(1,2,3,4,5,6) ;
121print ($w == 1 ? "not ok 7\n" : "ok 7\n") ;
122use warnings 'Socket' ;
123sockaddr_in(1,2,3,4,5,6) ;
124print ($w == 1 ? "ok 8\n" : "not ok 8\n") ;
e245830c
AB
125
126# Thest that whatever we give into pack/unpack_sockaddr retains
127# the value thru the entire chain.
128if((inet_ntoa((unpack_sockaddr_in(pack_sockaddr_in(100,inet_aton("10.250.230.10"))))[1])) eq '10.250.230.10') {
129 print "ok 9\n";
130} else {
131 print "not ok 9\n";
132}
2528d3bc
JH
133print ((inet_ntoa(inet_aton("10.20.30.40")) eq "10.20.30.40") ? "ok 10\n" : "not ok 10\n");
134print ((inet_ntoa(v10.20.30.40) eq "10.20.30.40") ? "ok 11\n" : "not ok 11\n");
d09712d8
AB
135{
136 my ($port,$addr) = unpack_sockaddr_in(pack_sockaddr_in(100,v10.10.10.10));
137 print (($port == 100) ? "ok 12\n" : "not ok 12\n");
2528d3bc 138 print ((inet_ntoa($addr) eq "10.10.10.10") ? "ok 13\n" : "not ok 13\n");
d09712d8
AB
139}
140
b2d93eb8
JH
141eval { inet_ntoa(v10.20.30.400) };
142print (($@ =~ /^Wide character in Socket::inet_ntoa at/) ? "ok 14\n" : "not ok 14\n");
2a84dff3
GA
143
144if (sockaddr_family(pack_sockaddr_in(100,inet_aton("10.250.230.10"))) == AF_INET) {
145 print "ok 15\n";
146} else {
147 print "not ok 15\n";
148}
149
150eval { sockaddr_family("") };
151print (($@ =~ /^Bad arg length for Socket::sockaddr_family, length is 0, should be at least \d+/) ? "ok 16\n" : "not ok 16\n");