Adding the failure diagnostic
[p5sagit/p5-mst-13.2.git] / t / op / pack.t
1 #!./perl -Tw
2
3 BEGIN {
4     chdir 't' if -d 't';
5     @INC = '../lib';
6 }
7
8 use Config;
9
10 $Is_EBCDIC = (defined $Config{ebcdic} && $Config{ebcdic} eq 'define');
11
12 my $test = 1;
13 sub ok {
14     my($ok) = @_;
15
16     # You have to do it this way or VMS will get confused.
17     my $out = '';
18     $out =  "not " unless $ok;
19     $out .= "ok $test\n";
20     print $out;
21
22     printf "# Failed test at line %d\n", (caller)[2] unless $ok;
23
24     $test++;
25     return $ok;
26 }
27
28
29 print "1..161\n";
30
31 # Note: All test numbers in comments are off by 1 after the comment below..
32
33 $format = "c2 x5 C C x s d i l a6";
34 # Need the expression in here to force ary[5] to be numeric.  This avoids
35 # test2 failing because ary2 goes str->numeric->str and ary doesn't.
36 @ary = (1,-100,127,128,32767,987.654321098 / 100.0,12345,123456,"abcdef");
37 $foo = pack($format,@ary);
38 @ary2 = unpack($format,$foo);
39
40 ok($#ary == $#ary2);
41
42 $out1=join(':',@ary);
43 $out2=join(':',@ary2);
44 # Using long double NVs may introduce greater accuracy than wanted.
45 $out1 =~ s/:9\.87654321097999\d*:/:9.87654321098:/;
46 $out2 =~ s/:9\.87654321097999\d*:/:9.87654321098:/;
47 ok($out1 eq $out2);
48
49 ok($foo =~ /def/);
50
51 # How about counting bits?
52
53 ok( ($x = unpack("%32B*", "\001\002\004\010\020\040\100\200\377")) == 16 );
54
55 ok( ($x = unpack("%32b69", "\001\002\004\010\020\040\100\200\017")) == 12 );
56
57 ok( ($x = unpack("%32B69", "\001\002\004\010\020\040\100\200\017")) == 9 );
58
59 my $sum = 129; # ASCII
60 $sum = 103 if $Is_EBCDIC;
61
62 ok( ($x = unpack("%32B*", "Now is the time for all good blurfl")) == $sum );
63
64 open(BIN, "./perl") || open(BIN, "./perl.exe") || open(BIN, $^X)
65     || die "Can't open ../perl or ../perl.exe: $!\n";
66 sysread BIN, $foo, 8192;
67 close BIN;
68
69 $sum = unpack("%32b*", $foo);
70 $longway = unpack("b*", $foo);
71 ok( $sum == $longway =~ tr/1/1/ );
72
73 ok( ($x = unpack("I",pack("I", 0xFFFFFFFF))) == 0xFFFFFFFF );
74
75 # check 'w'
76 my @x = (5,130,256,560,32000,3097152,268435455,1073741844, 2**33,
77          '4503599627365785','23728385234614992549757750638446');
78 my $x = pack('w*', @x);
79 my $y = pack 'H*', '0581028200843081fa0081bd8440ffffff7f8480808014A08080800087ffffffffffdb19caefe8e1eeeea0c2e1e3e8ede1ee6e';
80
81 if ($x eq $y) {
82   print "ok $test\n";
83 } else {
84   printf "not ok $test # %s\n", unpack 'H*', $x;
85 }
86 $test++;
87
88 @y = unpack('w*', $y);
89 my $a;
90 while ($a = pop @x) {
91   my $b = pop @y;
92   print $a eq $b ? "ok $test\n" : "not ok $test\n$a\n$b\n"; $test++;
93 }
94
95 # XXX All test numbers in comments are off by 1 after this point.
96
97 @y = unpack('w2', $x);
98
99 print scalar(@y) == 2 ? "ok $test\n" : "not ok $test\n"; $test++;
100 print $y[1] == 130 ? "ok $test\n" : "not ok $test # $y[1]\n"; $test++;
101
102 # test exeptions
103 eval { $x = unpack 'w', pack 'C*', 0xff, 0xff};
104 print $@ ne '' ? "ok $test\n" : "not ok $test\n"; $test++;
105
106 eval { $x = unpack 'w', pack 'C*', 0xff, 0xff, 0xff, 0xff};
107 print $@ ne '' ? "ok $test\n" : "not ok $test\n"; $test++;
108
109 eval { $x = unpack 'w', pack 'C*', 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
110 print $@ ne '' ? "ok $test\n" : "not ok $test\n"; $test++;
111
112 #
113 # test the "p" template
114
115 # literals
116 print((unpack("p",pack("p","foo")) eq "foo" ? "ok " : "not ok "),$test++,"\n");
117
118 # scalars
119 print((unpack("p",pack("p",$test)) == $test ? "ok " : "not ok "),$test++,"\n");
120
121 # temps
122 sub foo { my $a = "a"; return $a . $a++ . $a++ }
123 {
124   use warnings;
125   my $last = $test;
126   local $SIG{__WARN__} = sub {
127         print "ok ",$test++,"\n" if $_[0] =~ /temporary val/
128   };
129   my $junk = pack("p", &foo);
130   print "not ok ", $test++, "\n" if $last == $test;
131 }
132
133 # undef should give null pointer
134 print((pack("p", undef) =~ /^\0+/ ? "ok " : "not ok "),$test++,"\n");
135
136 # Check for optimizer bug (e.g.  Digital Unix GEM cc with -O4 on DU V4.0B gives
137 #                                4294967295 instead of -1)
138 #                                see #ifdef __osf__ in pp.c pp_unpack
139 # Test 30:
140 print( ((unpack("i",pack("i",-1))) == -1 ? "ok " : "not ok "),$test++,"\n");
141
142 # 31..36: test the pack lengths of s S i I l L
143 print "not " unless length(pack("s", 0)) == 2;
144 print "ok ", $test++, "\n";
145
146 print "not " unless length(pack("S", 0)) == 2;
147 print "ok ", $test++, "\n";
148
149 print "not " unless length(pack("i", 0)) >= 4;
150 print "ok ", $test++, "\n";
151
152 print "not " unless length(pack("I", 0)) >= 4;
153 print "ok ", $test++, "\n";
154
155 print "not " unless length(pack("l", 0)) == 4;
156 print "ok ", $test++, "\n";
157
158 print "not " unless length(pack("L", 0)) == 4;
159 print "ok ", $test++, "\n";
160
161 # 37..40: test the pack lengths of n N v V
162
163 print "not " unless length(pack("n", 0)) == 2;
164 print "ok ", $test++, "\n";
165
166 print "not " unless length(pack("N", 0)) == 4;
167 print "ok ", $test++, "\n";
168
169 print "not " unless length(pack("v", 0)) == 2;
170 print "ok ", $test++, "\n";
171
172 print "not " unless length(pack("V", 0)) == 4;
173 print "ok ", $test++, "\n";
174
175 # 41..56: test unpack-pack lengths
176
177 my @templates = qw(c C i I s S l L n N v V f d);
178
179 # quads not supported everywhere: if not, retest floats/doubles
180 # to preserve the test count...
181 eval { my $q = pack("q",0) };
182 push @templates, $@ !~ /Invalid type in pack/ ? qw(q Q) : qw(f d);
183
184 foreach my $t (@templates) {
185     my @t = unpack("$t*", pack("$t*", 12, 34));
186     print "not "
187       unless @t == 2 and (($t[0] == 12 and $t[1] == 34) or ($t =~ /[nv]/i));
188     print "ok ", $test++, "\n";
189 }
190
191 # 57..60: uuencode/decode
192
193 # Note that first uuencoding known 'text' data and then checking the
194 # binary values of the uuencoded version would not be portable between
195 # character sets.  Uuencoding is meant for encoding binary data, not
196 # text data.
197
198 $in = pack 'C*', 0 .. 255;
199
200 # just to be anal, we do some random tr/`/ /
201 $uu = <<'EOUU';
202 M` $"`P0%!@<("0H+# T.#Q`1$A,4%187&!D:&QP='A\@(2(C)"4F)R@I*BLL
203 M+2XO,#$R,S0U-C<X.3H[/#T^/T!!0D-$149'2$E*2TQ-3D]045)35%565UA9
204 M6EM<75Y?8&%B8V1E9F=H:6IK;&UN;W!Q<G-T=79W>'EZ>WQ]?G^`@8*#A(6&
205 MAXB)BHN,C8Z/D)&2DY25EI>8F9J;G)V>GZ"AHJ.DI::GJ*FJJZRMKJ^PL;*S
206 MM+6VM[BYNKN\O;Z_P,'"P\3%QL?(R<K+S,W.S]#1TM/4U=;7V-G:V]S=WM_@
207 ?X>+CY.7FY^CIZNOL[>[O\/'R\_3U]O?X^?K[_/W^_P `
208 EOUU
209
210 $_ = $uu;
211 tr/ /`/;
212 print "not " unless pack('u', $in) eq $_;
213 print "ok ", $test++, "\n";
214
215 print "not " unless unpack('u', $uu) eq $in;
216 print "ok ", $test++, "\n";
217
218 $in = "\x1f\x8b\x08\x08\x58\xdc\xc4\x35\x02\x03\x4a\x41\x50\x55\x00\xf3\x2a\x2d\x2e\x51\x48\xcc\xcb\x2f\xc9\x48\x2d\x52\x08\x48\x2d\xca\x51\x28\x2d\x4d\xce\x4f\x49\x2d\xe2\x02\x00\x64\x66\x60\x5c\x1a\x00\x00\x00";
219 $uu = <<'EOUU';
220 M'XL("%C<Q#4"`TI!4%4`\RHM+E%(S,LOR4@M4@A(+<I1*"U-SD])+>("`&1F
221 &8%P:````
222 EOUU
223
224 print "not " unless unpack('u', $uu) eq $in;
225 print "ok ", $test++, "\n";
226
227 # 60 identical to 59 except that backquotes have been changed to spaces
228
229 $uu = <<'EOUU';
230 M'XL("%C<Q#4" TI!4%4 \RHM+E%(S,LOR4@M4@A(+<I1*"U-SD])+>(" &1F
231 &8%P:
232 EOUU
233
234 print "not " unless unpack('u', $uu) eq $in;
235 print "ok ", $test++, "\n";
236
237 # 61..73: test the ascii template types (A, a, Z)
238
239 print "not " unless pack('A*', "foo\0bar\0 ") eq "foo\0bar\0 ";
240 print "ok ", $test++, "\n";
241
242 print "not " unless pack('A11', "foo\0bar\0 ") eq "foo\0bar\0   ";
243 print "ok ", $test++, "\n";
244
245 print "not " unless unpack('A*', "foo\0bar \0") eq "foo\0bar";
246 print "ok ", $test++, "\n";
247
248 print "not " unless unpack('A8', "foo\0bar \0") eq "foo\0bar";
249 print "ok ", $test++, "\n";
250
251 print "not " unless pack('a*', "foo\0bar\0 ") eq "foo\0bar\0 ";
252 print "ok ", $test++, "\n";
253
254 print "not " unless pack('a11', "foo\0bar\0 ") eq "foo\0bar\0 \0\0";
255 print "ok ", $test++, "\n";
256
257 print "not " unless unpack('a*', "foo\0bar \0") eq "foo\0bar \0";
258 print "ok ", $test++, "\n";
259
260 print "not " unless unpack('a8', "foo\0bar \0") eq "foo\0bar ";
261 print "ok ", $test++, "\n";
262
263 print "not " unless pack('Z*', "foo\0bar\0 ") eq "foo\0bar\0 \0";
264 print "ok ", $test++, "\n";
265
266 print "not " unless pack('Z11', "foo\0bar\0 ") eq "foo\0bar\0 \0\0";
267 print "ok ", $test++, "\n";
268
269 print "not " unless pack('Z3', "foo") eq "fo\0";
270 print "ok ", $test++, "\n";
271
272 print "not " unless unpack('Z*', "foo\0bar \0") eq "foo";
273 print "ok ", $test++, "\n";
274
275 print "not " unless unpack('Z8', "foo\0bar \0") eq "foo";
276 print "ok ", $test++, "\n";
277
278 # 74..79: packing native shorts/ints/longs
279
280 print "not " unless length(pack("s!", 0)) == $Config{shortsize};
281 print "ok ", $test++, "\n";
282
283 print "not " unless length(pack("i!", 0)) == $Config{intsize};
284 print "ok ", $test++, "\n";
285
286 print "not " unless length(pack("l!", 0)) == $Config{longsize};
287 print "ok ", $test++, "\n";
288
289 print "not " unless length(pack("s!", 0)) <= length(pack("i!", 0));
290 print "ok ", $test++, "\n";
291
292 print "not " unless length(pack("i!", 0)) <= length(pack("l!", 0));
293 print "ok ", $test++, "\n";
294
295 print "not " unless length(pack("i!", 0)) == length(pack("i", 0));
296 print "ok ", $test++, "\n";
297
298 # 80..139: pack <-> unpack bijectionism
299
300 #  80.. 84 c
301 foreach my $c (-128, -1, 0, 1, 127) {
302     print "not " unless unpack("c", pack("c", $c)) == $c;
303     print "ok ", $test++, "\n";
304 }
305
306 #  85.. 89: C
307 foreach my $C (0, 1, 127, 128, 255) {
308     print "not " unless unpack("C", pack("C", $C)) == $C;
309     print "ok ", $test++, "\n";
310 }
311
312 #  90.. 94: s
313 foreach my $s (-32768, -1, 0, 1, 32767) {
314     print "not " unless unpack("s", pack("s", $s)) == $s;
315     print "ok ", $test++, "\n";
316 }
317
318 #  95.. 99: S
319 foreach my $S (0, 1, 32767, 32768, 65535) {
320     print "not " unless unpack("S", pack("S", $S)) == $S;
321     print "ok ", $test++, "\n";
322 }
323
324 #  100..104: i
325 foreach my $i (-2147483648, -1, 0, 1, 2147483647) {
326     print "not " unless unpack("i", pack("i", $i)) == $i;
327     print "ok ", $test++, "\n";
328 }
329
330 # 105..109: I
331 foreach my $I (0, 1, 2147483647, 2147483648, 4294967295) {
332     print "not " unless unpack("I", pack("I", $I)) == $I;
333     print "ok ", $test++, "\n";
334 }
335
336 # 110..114: l
337 foreach my $l (-2147483648, -1, 0, 1, 2147483647) {
338     print "not " unless unpack("l", pack("l", $l)) == $l;
339     print "ok ", $test++, "\n";
340 }
341
342 # 115..119: L
343 foreach my $L (0, 1, 2147483647, 2147483648, 4294967295) {
344     print "not " unless unpack("L", pack("L", $L)) == $L;
345     print "ok ", $test++, "\n";
346 }
347
348 # 120..124: n
349 foreach my $n (0, 1, 32767, 32768, 65535) {
350     print "not " unless unpack("n", pack("n", $n)) == $n;
351     print "ok ", $test++, "\n";
352 }
353
354 # 125..129: v
355 foreach my $v (0, 1, 32767, 32768, 65535) {
356     print "not " unless unpack("v", pack("v", $v)) == $v;
357     print "ok ", $test++, "\n";
358 }
359
360 # 130..134: N
361 foreach my $N (0, 1, 2147483647, 2147483648, 4294967295) {
362     print "not " unless unpack("N", pack("N", $N)) == $N;
363     print "ok ", $test++, "\n";
364 }
365
366 # 135..139: V
367 foreach my $V (0, 1, 2147483647, 2147483648, 4294967295) {
368     print "not " unless unpack("V", pack("V", $V)) == $V;
369     print "ok ", $test++, "\n";
370 }
371
372 # 140..143: pack nvNV byteorders
373
374 print "not " unless pack("n", 0xdead) eq "\xde\xad";
375 print "ok ", $test++, "\n";
376
377 print "not " unless pack("v", 0xdead) eq "\xad\xde";
378 print "ok ", $test++, "\n";
379
380 print "not " unless pack("N", 0xdeadbeef) eq "\xde\xad\xbe\xef";
381 print "ok ", $test++, "\n";
382
383 print "not " unless pack("V", 0xdeadbeef) eq "\xef\xbe\xad\xde";
384 print "ok ", $test++, "\n";
385
386 # 144..152: /
387
388 # Using Test considered bad plan in op/*.t ?
389
390 sub report {
391   my ($pass, $test, $err, $wrong) = @_;
392   if ($pass) {
393     print "ok $test\n"
394   } else {
395     if ($err) {
396       chomp $err;
397       print "not ok $test # \$\@ = $err\n";
398     } else {
399       $wrong =~ s/([[:cntrl:]\177 ])/sprintf "\\%03o", ord $1/ge;
400       print "not ok $test # got $wrong\n";
401     }
402   }
403 }
404
405 my $z;
406 eval { ($x) = unpack '/a*','hello' };
407 print 'not ' unless $@; print "ok $test\n"; $test++;
408 eval { ($z,$x,$y) = unpack 'a3/A C/a* C/Z', "003ok \003yes\004z\000abc" };
409 print $@ eq '' && $z eq 'ok' ? "ok $test\n" : "not ok $test\n"; $test++;
410 print $@ eq '' && $x eq 'yes' ? "ok $test\n" : "not ok $test\n"; $test++;
411 print $@ eq '' && $y eq 'z' ? "ok $test\n" : "not ok $test\n"; $test++;
412
413 eval { ($x) = pack '/a*','hello' };
414 print 'not ' unless $@; print "ok $test\n"; $test++;
415 $z = pack 'n/a* N/Z* w/A*','string','hi there ','etc';
416 my $expect = "\000\006string\0\0\0\012hi there \000\003etc";
417 report ($z eq $expect, $test++, '', $z);
418
419 eval { ($x) = unpack 'a/a*/a*', '212ab345678901234567' };
420 print $@ eq '' && $x eq 'ab3456789012' ? "ok $test\n" : "#$x,$@\nnot ok $test\n";
421 $test++;
422
423 eval { ($x) = unpack 'a/a*/a*', '3012ab345678901234567' };
424 print $@ eq '' && $x eq 'ab3456789012' ? "ok $test\n" : "not ok $test\n";
425 $test++;
426
427 eval { ($x) = unpack 'a/a*/b*', '212ab' };
428 my $expected_x = '100001100100';
429 if ($Is_EBCDIC) { $expected_x = '100000010100'; }
430 print $@ eq '' && $x eq $expected_x ? "ok $test\n" : "#$x,$@\nnot ok $test\n";
431 $test++;
432
433 # 153..156: / with #
434
435 eval { ($z,$x,$y) = unpack <<EOU, "003ok \003yes\004z\000abc" };
436  a3/A                   # Count in ASCII
437  C/a*                   # Count in a C char
438  C/Z                    # Count in a C char but skip after \0
439 EOU
440 print $@ eq '' && $z eq 'ok' ? "ok $test\n" : "not ok $test\n"; $test++;
441 print $@ eq '' && $x eq 'yes' ? "ok $test\n" : "not ok $test\n"; $test++;
442 print $@ eq '' && $y eq 'z' ? "ok $test\n" : "not ok $test\n"; $test++;
443
444 $z = pack <<EOP,'string','etc';
445   n/a*                  # Count as network short
446   w/A*                  # Count a  BER integer
447 EOP
448 $expect = "\000\006string\003etc";
449 report ($z eq $expect, $test++, '', $z);
450
451 print 'not ' unless "1.20.300.4000" eq sprintf "%vd", pack("U*",1,20,300,4000);
452 print "ok $test\n"; $test++;
453 print 'not ' unless "1.20.300.4000" eq
454                     sprintf "%vd", pack("  U*",1,20,300,4000);
455 print "ok $test\n"; $test++;
456 print 'not ' unless v1.20.300.4000 ne
457                     sprintf "%vd", pack("C0U*",1,20,300,4000);
458 print "ok $test\n"; $test++;
459
460 # 160
461 print "not " unless join(" ", unpack("C*", chr(0x1e2)))
462         eq ((ord(A) == 193) ? "156 67" : "199 162");
463 print "ok $test\n"; $test++;