File: Reader-ASN.t

package info (click to toggle)
libgeoip2-perl 2.006002-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 2,156 kB
  • sloc: perl: 2,275; makefile: 10
file content (25 lines) | stat: -rw-r--r-- 593 bytes parent folder | download | duplicates (2)
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
use strict;
use warnings;

use Test::More;
use Test::Fatal;

use GeoIP2::Database::Reader ();
use Path::Class qw( file );

my $reader = GeoIP2::Database::Reader->new(
    file => file(qw( maxmind-db test-data GeoLite2-ASN-Test.mmdb )) );

my $ip_address = '1.128.0.0';
my $asn        = $reader->asn( ip => $ip_address );
is(
    $asn->autonomous_system_number, 1221,
    'correct ASN in ASN database'
);
is(
    $asn->autonomous_system_organization,
    'Telstra Pty Ltd', 'correct AS Org in ASN database'
);
is( $asn->ip_address, $ip_address, 'correct IP in ASN database' );

done_testing();