# $Id: 05-APL.t 1033 2012-10-24 12:25:55Z willem $ -*-perl-*- use strict; use Test::More tests => 13; use Net::DNS; my $name = 'APL.example'; my $type = 'APL'; my $code = 42; my @attr = qw( aplist ); my @data = qw( 1:224.0.0.0/4 2:FF00:0:0:0:0:0:0:0/8 !1:192.168.38.0/28 ); my @also = qw( string negate family address ); # apitem attributes my $wire = '00010401e000020801ff00011c83c0a826'; { my $typecode = unpack 'xn', new Net::DNS::RR(". $type")->encode; is( $typecode, $code, "$type RR type code = $code" ); my $hash = {}; @{$hash}{@attr} = @data; my $rr = new Net::DNS::RR( name => $name, type => $type, %$hash ); my $string = $rr->string; my $rr2 = new Net::DNS::RR($string); is( $rr2->string, $string, 'new/string transparent' ); is( $rr2->encode, $rr->encode, 'new($string) and new(%hash) equivalent' ); foreach (@attr) { is( $rr->$_, $hash->{$_}, "expected result from rr->$_()" ); } my @aplist1 = $rr->aplist; my @aplist2 = $rr2->aplist; foreach my $item (@aplist1) { my $item2 = shift @aplist2; foreach (@also) { is( $item2->$_, $item->$_, "aplist item->$_() attribute" ); } } } { my $rr = new Net::DNS::RR("$name $type @data"); my $null = new Net::DNS::RR("$name NULL")->encode; my $empty = new Net::DNS::RR("$name $type")->encode; my $rxbin = decode Net::DNS::RR( \$empty )->encode; my $txtext = new Net::DNS::RR("$name $type")->string; my $rxtext = new Net::DNS::RR($txtext)->encode; my $encoded = $rr->encode; my $decoded = decode Net::DNS::RR( \$encoded ); my $hex1 = unpack 'H*', $encoded; my $hex2 = unpack 'H*', $decoded->encode; my $hex3 = unpack 'H*', substr( $encoded, length $null ); is( $hex2, $hex1, 'encode/decode transparent' ); is( $hex3, $wire, 'encoded RDATA matches example' ); is( length($empty), length($null), 'encoded RDATA can be empty' ); is( length($rxbin), length($null), 'decoded RDATA can be empty' ); is( length($rxtext), length($null), 'string RDATA can be empty' ); } exit;