Newer
Older
NetAddr-IP / Lite / Util / t / inet_n2ad.t
  1. # Before `make install' is performed this script should be runnable with
  2. # `make test'. After `make install' it should work as `perl test.pl'
  3.  
  4. ######################### We start with some black magic to print on failure.
  5. # Change 1..1 below to 1..last_test_to_print .
  6. # (It may become useful if the test is moved to ./t subdirectory.)
  7.  
  8. BEGIN { $| = 1; print "1..4\n"; }
  9. END {print "not ok 1\n" unless $loaded;}
  10.  
  11. use NetAddr::IP::Util qw(
  12. ipv6_aton
  13. ipv6_n2x
  14. inet_any2n
  15. inet_n2ad
  16. );
  17.  
  18. $loaded = 1;
  19. print "ok 1\n";
  20. ######################### End of black magic.
  21.  
  22. # Insert your test code below (better if it prints "ok 13"
  23. # (correspondingly "not ok 13") depending on the success of chunk 13
  24. # of the test code):
  25.  
  26. $test = 2;
  27.  
  28. sub ok {
  29. print "ok $test\n";
  30. ++$test;
  31. }
  32.  
  33. my @num = qw # input expected
  34. ( a1b2:c3d4:e5d6:f7e8:08f9:190a:2a1b:3b4c A1B2:C3D4:E5D6:F7E8:8F9:190A:42.27.59.76
  35. 1.2.3.4 1.2.3.4
  36. 190A::102:304 190A:0:0:0:0:0:1.2.3.4
  37. );
  38.  
  39. my $ff = ipv6_aton($num[1]);
  40. for(my $i=0;$i<@num;$i+=2) {
  41. my $num = $num[$i];
  42. my $bstr = inet_any2n($num);
  43. my $rv = inet_n2ad($bstr);
  44. my $exp = $num[$i +1];
  45. print "got: $rv\nexp: $exp\nnot "
  46. unless $rv eq $exp;
  47. &ok;
  48. }