File: v4-numeric.t

package info (click to toggle)
libnetaddr-ip-perl 4.079%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster, stretch
  • size: 1,580 kB
  • ctags: 251
  • sloc: perl: 1,417; cpp: 67; sh: 51; makefile: 9
file content (36 lines) | stat: -rw-r--r-- 823 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
use NetAddr::IP::Lite;

my $nets = {
    '10.0.0.0/20'	=> [ 167772160, 4294963200 ],
    '10.0.15.0/24'	=> [ 167776000, 4294967040 ],
    '192.168.0.0/24'	=> [ 3232235520, 4294967040],
    'broadcast'		=> [ 4294967295, 4294967295],
    'default'		=> [ 0, 0 ],
};

$| = 1;
print "1..", 4 * (scalar keys %$nets), "\n";

my $count = 1;

for my $a (keys %$nets) {
    my $ip = new NetAddr::IP::Lite $a;
    my ($addr, $mask) = $ip->numeric;

    my $nip = new NetAddr::IP::Lite $addr, $mask;

    print '', ($nip ? '' : 'not '), 'ok ', $count++, "\n";

    print '', ($nip and $nip->cidr eq $ip->cidr) ? '' : 'not ',
    'ok ', $count ++, "\n";

    print '', (($addr != $nets->{$a}->[0] ?  'not ' : ''),
	   "ok ", $count++, "\n");

    print '', (($mask != $nets->{$a}->[1] ?  'not ' : ''),
	   "ok ", $count++, "\n");


}