File: 02-text.t

package info (click to toggle)
libnet-dns-perl 1.50-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,644 kB
  • sloc: perl: 18,185; makefile: 9
file content (141 lines) | stat: -rw-r--r-- 5,508 bytes parent folder | download
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
#!/usr/bin/perl
# $Id: 02-text.t 1910 2023-03-30 19:16:30Z willem $	-*-perl-*-
#

use strict;
use warnings;
use Test::More tests => 40;
use TestToolkit;


use_ok('Net::DNS::Text');


for my $object ( Net::DNS::Text->new( my $string = 'example' ) ) {
	ok( $object->isa('Net::DNS::Text'), 'object returned by new() constructor' );
	$object->value;			## untestable optimisation: avoid returning value in void context
	is( $object->value,   $string, 'expected object->value' );
	is( $object->string,  $string, 'expected object->string' );
	is( $object->unicode, $string, 'expected object->unicode' );
}


for my $object ( Net::DNS::Text->new( my $sample = '' ) ) {
	my $expect = '""';
	is( $object->string,  $expect, 'quoted empty object->string' );
	is( $object->unicode, $expect, 'quoted empty object->unicode' );
}


for my $object ( Net::DNS::Text->new( my $sample = '\e\x\a\m\p\l\e' ) ) {
	my $expect = 'example';
	is( $object->string, $expect, 'character escape' );
}


for my $object ( Net::DNS::Text->new( my $sample = '\065' ) ) {
	my $expect = 'A';
	is( $object->string, $expect, 'numeric escape' );
}


for my $object ( Net::DNS::Text->new( my $string = 'a' x 256 ) ) {
	is( scalar(@$object),	       2,		'new() splits long argument' );
	is( length( $object->value ),  length($string), 'object->value reassembles string' );
	is( length( $object->string ), length($string), 'object->string reassembles string' );
}


for my $object ( Net::DNS::Text->new( join '', ( my $filler = 'a' x 254 ), '\192\160' ) ) {
	is( scalar(@$object),	    2,		     'new() splits long UTF8 sequence' );
	is( length( $object->[0] ), length($filler), 'new() does not break UTF8 sequence' );
}


for my $object ( Net::DNS::Text->new( my $sample = 'x\000x\031x\127x\128x\159\160\255x' ) ) {
	my $expect = '7800781f787f7880789fa0ff78';
	my $length = sprintf '%02x', length pack( 'H*', $expect );
	my $buffer = $object->encode;
	is( unpack( 'H*', $buffer ),	  $length . $expect, 'encode() returns expected data' );
	is( unpack( 'H*', $object->raw ), $expect,	     'raw() returns expected data' );
}


for my $object ( Net::DNS::Text->new( my $sample = 'example' ) ) {
	my $buffer = $object->encode;
	my $decode = Net::DNS::Text->decode( \$buffer );
	ok( $decode->isa('Net::DNS::Text'), 'decode() constructor' );
	is( $decode->string, $sample, 'decode matches original data' );
	my ( $x, $next ) = Net::DNS::Text->decode( \$buffer );
	is( $next, length $buffer, 'expected offset returned by decode()' );
}


for my $object ( Net::DNS::Text->new( my $sample = 'example' ) ) {
	my $buffer = $object->encode;
	my ( $decode, $next ) = Net::DNS::Text->decode( \$buffer, 1, length($buffer) - 1 );
	is( $decode->string, $sample,	     'decode() extracts arbitrary substring' );
	is( $next,	     length $buffer, 'expected offset returned by decode()' );
}


my %C0controls = (
	'000102030405060708090a0b0c0d0e0f' => '\000\001\002\003\004\005\006\007\008\009\010\011\012\013\014\015',
	'101112131415161718191a1b1c1d1e1f' => '\016\017\018\019\020\021\022\023\024\025\026\027\028\029\030\031',
	);

foreach my $hexcode ( sort keys %C0controls ) {
	my $string  = $C0controls{$hexcode};
	my $content = pack 'H*',   $hexcode;
	my $buffer  = pack 'C a*', length $content, $content;
	my $decoded = Net::DNS::Text->decode( \$buffer );
	my $compare = $decoded->string;
	is( $compare, qq($string), "C0 controls:\t$string" );
}


my %ASCIIprintable = (
	'202122232425262728292a2b2c2d2e2f' => q|" !\034#$%&'()*+,-./"|,
	'303132333435363738393a3b3c3d3e3f' => q|"0123456789:;<=>?"|,
	'404142434445464748494a4b4c4d4e4f' => '@ABCDEFGHIJKLMNO',
	'505152535455565758595a5b5c5d5e5f' => 'PQRSTUVWXYZ[\092]^_',
	'606162636465666768696a6b6c6d6e6f' => '`abcdefghijklmno',
	'707172737475767778797a7b7c7d7e7f' => 'pqrstuvwxyz{|}~\127'
	);

foreach my $hexcode ( sort keys %ASCIIprintable ) {
	my $string  = $ASCIIprintable{$hexcode};
	my $content = pack 'H*',   $hexcode;
	my $buffer  = pack 'C a*', length $content, $content;
	my $decoded = Net::DNS::Text->decode( \$buffer );
	my $compare = $decoded->string;
	is( $compare, qq($string), "G0 graphics:\t$string" );
}


my %unprintable = (
	'808182838485868788898a8b8c8d8e8f' => '\128\129\130\131\132\133\134\135\136\137\138\139\140\141\142\143',
	'909192939495969798999a9b9c9d9e9f' => '\144\145\146\147\148\149\150\151\152\153\154\155\156\157\158\159',
	'a0a1a2a3a4a5a6a7a8a9aaabacadaeaf' => '\160\161\162\163\164\165\166\167\168\169\170\171\172\173\174\175',
	'b0b1b2b3b4b5b6b7b8b9babbbcbdbebf' => '\176\177\178\179\180\181\182\183\184\185\186\187\188\189\190\191',
	'c0c1c2c3c4c5c6c7c8c9cacbcccdcecf' => '\192\193\194\195\196\197\198\199\200\201\202\203\204\205\206\207',
	'd0d1d2d3d4d5d6d7d8d9dadbdcdddedf' => '\208\209\210\211\212\213\214\215\216\217\218\219\220\221\222\223',
	'e0e1e2e3e4e5e6e7e8e9eaebecedeeef' => '\224\225\226\227\228\229\230\231\232\233\234\235\236\237\238\239',
	'f0f1f2f3f4f5f6f7f8f9fafbfcfdfeff' => '\240\241\242\243\244\245\246\247\248\249\250\251\252\253\254\255'
	);

foreach my $hexcode ( sort keys %unprintable ) {
	my $string  = $unprintable{$hexcode};
	my $encoded = Net::DNS::Text->new($string)->encode;
	is( unpack( 'xH*', $encoded ), $hexcode, qq(8-bit codes:\t$string) );
}


exception( 'empty argument list', sub { Net::DNS::Text->new() } );
exception( 'argument undefined',  sub { Net::DNS::Text->new(undef) } );

my $truncated = substr Net::DNS::Text->new('example')->encode, 0, 2;
exception( 'corrupt wire-format', sub { Net::DNS::Text->decode( \$truncated ) } );

exit;