Re: [ID 20001202.001] (Net::hostent)
[p5sagit/p5-mst-13.2.git] / t / lib / net-hostent.t
CommitLineData
fedf0971 1#!./perl -w
2
3BEGIN {
67b60da2 4 chdir 't' if -d 't';
5 @INC = '../lib';
6 require Config; import Config;
7 if ($Config{'extensions'} !~ /\bSocket\b/ &&
8 !(($^O eq 'VMS') && $Config{d_socket})) {
9 print "1..0 # Test uses Socket, Socket not built\n";
10 exit 0;
11 }
fedf0971 12}
13
14BEGIN { $| = 1; print "1..5\n"; }
15
16END {print "not ok 1\n" unless $loaded;}
17
18use Net::hostent;
19
20$loaded = 1;
21print "ok 1\n";
22
23# test basic resolution of localhost <-> 127.0.0.1
24use Socket;
25
26my $h = gethost('localhost');
67b60da2 27print +(defined $h ? '' : 'not ') . "ok 2\n";
fedf0971 28my $i = gethostbyaddr(inet_aton("127.0.0.1"));
67b60da2 29print +(!defined $i ? 'not ' : '') . "ok 3\n";
fedf0971 30
31print "not " if inet_ntoa($h->addr) ne "127.0.0.1";
67b60da2 32print "ok 4\n";
fedf0971 33
34print "not " if inet_ntoa($i->addr) ne "127.0.0.1";
67b60da2 35print "ok 5\n";
fedf0971 36
37# need to skip the name comparisons on Win32 because windows will
38# return the name of the machine instead of "localhost" when resolving
39# 127.0.0.1 or even "localhost"
40
d26aeb84 41# VMS returns "LOCALHOST" under tcp/ip services V4.1 ECO 2, possibly others
84bf2719 42# OS/390 returns localhost.YADDA.YADDA
d26aeb84 43
fedf0971 44if ($^O eq 'MSWin32') {
67b60da2 45 print "ok $_ # skipped on win32\n" for (6,7);
fedf0971 46} else {
84bf2719 47 print "not " unless $h->name =~ /^localhost(?:\..+)?$/i;
67b60da2 48 print "ok 6 # ",$h->name,"\n";
fedf0971 49
84bf2719 50 print "not " unless $i->name =~ /^localhost(?:\..+)?$/i;
67b60da2 51 print "ok 7 # ",$i->name,"\n";
fedf0971 52}