Newer
Older
NetAddr-IP / Lite / Util / t / inet_pton.t
@Michael Robinton Michael Robinton on 21 Oct 2014 2 KB Import of MIKER/NetAddr-IP-4.049 from CPAN.
# Before `make install' is performed this script should be runnable with
# `make test'. After `make install' it should work as `perl test.pl'

######################### We start with some black magic to print on failure.
# Change 1..1 below to 1..last_test_to_print .
# (It may become useful if the test is moved to ./t subdirectory.)

BEGIN { $| = 1; print "1..32\n"; }
END {print "not ok 1\n" unless $loaded;}

#use diagnostics;
use NetAddr::IP::Util qw(
	inet_ntop
	inet_pton
	AF_INET
	AF_INET6
);

$loaded = 1;
print "ok 1\n";
######################### End of black magic.

# Insert your test code below (better if it prints "ok 13"
# (correspondingly "not ok 13") depending on the success of chunk 13
# of the test code):

$test = 2;

sub ok {
  print "ok $test\n";
  ++$test;
}

## test 2 - 13	add stuff to buffer
my @num = # addr
qw(
	0.0.0.0
	255.255.255.255
	1.2.3.4
	10.253.230.9
);

foreach (@num) {
  my @digs = split(/\./,$_);
  my $pkd = pack('C4',@digs);
  my $naddr = inet_pton(AF_INET(),$_);
  my $addr = join('.',unpack('C4',$naddr));
  my $num = inet_ntop(AF_INET(),$pkd);

  print "bits do not match\nnot "
	unless $naddr eq $pkd;
  &ok;

  print "inet_pton: $addr, exp: $_\nnot "
	unless $addr eq $_;
  &ok;

  print "inet_ntop: $num, exp: $_\nnot "
	unless $num eq $_;
  &ok;
}

## test 14 - 31
@num = #	in			    	exphex
qw(
		::				::
		43::				43::
		::21				::21
	::1:2:3:4:5:6:7				0:1:2:3:4:5:6:7
	1:2:3:4:5:6:7::				1:2:3:4:5:6:7:0
		1::8				1::8
	FF00::FFFF				ff00::ffff
	FFFF::FFFF:FFFF				ffff::ffff:ffff
	A1B2:C3D4:E5D6:F7E8:08F9:190A:1.2.3.4	a1b2:c3d4:e5d6:f7e8:8f9:190a:102:304
);

for (my $i=0;$i<@num;$i+=2) {
  my $bits = inet_pton(AF_INET6(),$num[$i]);
  my $len = length($bits);
  print "bad len = $len, exp: 16\nnot "
	unless $len == 16;		# 16 bytes x 8 bits
  &ok;
  my $ipv6x = inet_ntop(AF_INET6(),$bits);
  print "got: $ipv6x\nexp: $num[$i +1]\nnot "
	unless $ipv6x eq $num[$i +1];
  &ok;
}

## test 32	check bad length ntop
my $try = '1234';
my $notempty = eval {
	inet_ntop(AF_INET6(),$try);
};
print "failed bad argument length test for inet_ntop\nnot "
	unless $@ && $@ =~ /Bad arg/;
&ok;