15 my $Is_EBCDIC = (defined $Config{ebcdic} && $Config{ebcdic} eq 'define');
16 my $Perl = which_perl();
19 my @result = map {_qq($_)} @_;
23 return '(' . join (', ', @result) . ')';
29 return 0 unless @$l == @$r;
31 if (defined $l->[$i]) {
32 return 0 unless defined ($r->[$i]) && $l->[$i] eq $r->[$i];
34 return 0 if defined $r->[$i]
40 ##############################################################################
42 # Here starteth the tests
46 my $format = "c2 x5 C C x s d i l a6";
47 # Need the expression in here to force ary[5] to be numeric. This avoids
48 # test2 failing because ary2 goes str->numeric->str and ary doesn't.
49 my @ary = (1,-100,127,128,32767,987.654321098 / 100.0,12345,123456,
51 my $foo = pack($format,@ary);
52 my @ary2 = unpack($format,$foo);
56 my $out1=join(':',@ary);
57 my $out2=join(':',@ary2);
58 # Using long double NVs may introduce greater accuracy than wanted.
59 $out1 =~ s/:9\.87654321097999\d*:/:9.87654321098:/;
60 $out2 =~ s/:9\.87654321097999\d*:/:9.87654321098:/;
65 # How about counting bits?
69 is( ($x = unpack("%32B*", "\001\002\004\010\020\040\100\200\377")), 16 );
71 is( ($x = unpack("%32b69", "\001\002\004\010\020\040\100\200\017")), 12 );
73 is( ($x = unpack("%32B69", "\001\002\004\010\020\040\100\200\017")), 9 );
77 my $sum = 129; # ASCII
78 $sum = 103 if $Is_EBCDIC;
81 is( ($x = unpack("%32B*", "Now is the time for all good blurfl")), $sum );
84 open(BIN, $Perl) || die "Can't open $Perl: $!\n";
85 sysread BIN, $foo, 8192;
88 $sum = unpack("%32b*", $foo);
89 my $longway = unpack("b*", $foo);
90 is( $sum, $longway =~ tr/1/1/ );
95 is( ($x = unpack("I",pack("I", 0xFFFFFFFF))), 0xFFFFFFFF );
100 my @x = (5,130,256,560,32000,3097152,268435455,1073741844, 2**33,
101 '4503599627365785','23728385234614992549757750638446');
102 my $x = pack('w*', @x);
103 my $y = pack 'H*', '0581028200843081fa0081bd8440ffffff7f8480808014A0808'.
104 '0800087ffffffffffdb19caefe8e1eeeea0c2e1e3e8ede1ee6e';
108 my @y = unpack('w*', $y);
110 while ($a = pop @x) {
115 @y = unpack('w2', $x);
119 $x = pack('w*', 5000000000); $y = '';
122 $y = pack('w*', Math::BigInt::->new(5000000000));
127 $y = pack 'w', (~0).'';
129 is(unpack ('w',$x), ~0);
130 is(unpack ('w',$y), ~0);
132 $x = pack 'w', ~0 - 1;
133 $y = pack 'w', (~0) - 2;
135 if (~0 - 1 == (~0) - 2) {
136 is($x, $y, "NV arithmetic");
138 isnt($x, $y, "IV/NV arithmetic");
140 cmp_ok(unpack ('w',$x), '==', ~0 - 1);
141 cmp_ok(unpack ('w',$y), '==', ~0 - 2);
143 # These should spot that pack 'w' is using NV, not double, on platforms
144 # where IVs are smaller than doubles, and harmlessly pass elsewhere.
145 # (tests for change 16861)
153 is($x, $y, "NV arithmetic");
155 isnt($x, $y, "IV/NV arithmetic");
157 cmp_ok(unpack ('w',$x), '==', $x0);
158 cmp_ok(unpack ('w',$y), '==', $y0);
165 eval { $x = unpack 'w', pack 'C*', 0xff, 0xff};
166 like($@, qr/^Unterminated compressed integer/);
168 eval { $x = unpack 'w', pack 'C*', 0xff, 0xff, 0xff, 0xff};
169 like($@, qr/^Unterminated compressed integer/);
171 eval { $x = unpack 'w', pack 'C*', 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
172 like($@, qr/^Unterminated compressed integer/);
174 eval { $x = pack 'w', -1 };
175 like ($@, qr/^Cannot compress negative numbers/);
177 eval { $x = pack 'w', '1'x(1 + length ~0) . 'e0' };
178 like ($@, qr/^Can only compress unsigned integers/);
181 # Is this a stupid thing to do on VMS, VOS and other unusual platforms?
183 skip "-- the IEEE infinity model is unavailable in this configuration."
184 if (($^O eq 'VMS') && !defined($Config{useieee}));
186 skip "-- MPE/iX has serious fp indigestionf on w-packed infinities"
187 if (($^O eq 'mpeix'));
189 my $inf = eval '2**10000';
191 skip "Couldn't generate infinity - got error '$@'"
192 unless defined $inf and $inf == $inf / 2 and $inf + 1 == $inf;
195 $TODO = "VOS needs a fix for posix-1022 to pass this test."
198 eval { $x = pack 'w', $inf };
199 like ($@, qr/^Cannot compress integer/, "Cannot compress integer");
204 skip "-- the full range of an IEEE double may not be available in this configuration."
205 if (($^O eq 'VMS') && !defined($Config{useieee}));
207 # This should be about the biggest thing possible on an IEEE double
208 my $big = eval '2**1023';
210 skip "Couldn't generate 2**1023 - got error '$@'", 3
211 unless defined $big and $big != $big / 2;
213 eval { $x = pack 'w', $big };
214 is ($@, '', "Should be able to pack 'w', $big # 2**1023");
216 my $y = eval {unpack 'w', $x};
218 "Should be able to unpack 'w' the result of pack 'w', $big # 2**1023");
220 # I'm getting about 1e-16 on FreeBSD
221 my $quotient = int (100 * ($y - $big) / $big);
222 ok($quotient < 2 && $quotient > -2,
223 "Round trip pack, unpack 'w' of $big is withing 1% ($quotient%)");
229 # test the "p" template
232 is(unpack("p",pack("p","foo")), "foo");
235 is(unpack("p",pack("p",239)), 239);
238 sub foo { my $a = "a"; return $a . $a++ . $a++ }
242 local $SIG{__WARN__} = sub {
245 my $junk = pack("p", &foo);
247 like($warning, qr/temporary val/);
250 # undef should give null pointer
251 like(pack("p", undef), qr/^\0+/);
253 # Check for optimizer bug (e.g. Digital Unix GEM cc with -O4 on DU V4.0B gives
254 # 4294967295 instead of -1)
255 # see #ifdef __osf__ in pp.c pp_unpack
256 is((unpack("i",pack("i",-1))), -1);
258 # test the pack lengths of s S i I l L
259 # test the pack lengths of n N v V
260 my @lengths = qw(s 2 S 2 i -4 I -4 l 4 L 4 n 2 N 4 v 2 V 4);
261 while (my ($format, $expect) = splice @lengths, 0, 2) {
262 my $len = length(pack($format, 0));
264 is($expect, $len, "format '$format'");
267 ok ($len >= $expect, "format '$format'") ||
268 print "# format '$format' has length $len, expected >= $expect\n";
273 # test unpack-pack lengths
274 my @templates = qw(c C i I s S l L n N v V f d q Q);
276 foreach my $t (@templates) {
278 my @t = eval { unpack("$t*", pack("$t*", 12, 34)) };
280 # quads not supported everywhere
281 skip "Quads not supported", 4 if $@ =~ /Invalid type/;
287 skip "$t not expected to work for some reason", 2 if $t =~ /[nv]/i;
298 # Note that first uuencoding known 'text' data and then checking the
299 # binary values of the uuencoded version would not be portable between
300 # character sets. Uuencoding is meant for encoding binary data, not
303 my $in = pack 'C*', 0 .. 255;
305 # just to be anal, we do some random tr/`/ /
307 M` $"`P0%!@<("0H+# T.#Q`1$A,4%187&!D:&QP='A\@(2(C)"4F)R@I*BLL
308 M+2XO,#$R,S0U-C<X.3H[/#T^/T!!0D-$149'2$E*2TQ-3D]045)35%565UA9
309 M6EM<75Y?8&%B8V1E9F=H:6IK;&UN;W!Q<G-T=79W>'EZ>WQ]?G^`@8*#A(6&
310 MAXB)BHN,C8Z/D)&2DY25EI>8F9J;G)V>GZ"AHJ.DI::GJ*FJJZRMKJ^PL;*S
311 MM+6VM[BYNKN\O;Z_P,'"P\3%QL?(R<K+S,W.S]#1TM/4U=;7V-G:V]S=WM_@
312 ?X>+CY.7FY^CIZNOL[>[O\/'R\_3U]O?X^?K[_/W^_P `
318 is(pack('u', $in), $_);
320 is(unpack('u', $uu), $in);
322 $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";
324 M'XL("%C<Q#4"`TI!4%4`\RHM+E%(S,LOR4@M4@A(+<I1*"U-SD])+>("`&1F
328 is(unpack('u', $uu), $in);
330 # This is identical to the above except that backquotes have been
334 M'XL("%C<Q#4" TI!4%4 \RHM+E%(S,LOR4@M4@A(+<I1*"U-SD])+>(" &1F
339 is(unpack('u', $uu), $in);
343 # test the ascii template types (A, a, Z)
346 ['p', 'A*', "foo\0bar\0 ", "foo\0bar\0 "],
347 ['p', 'A11', "foo\0bar\0 ", "foo\0bar\0 "],
348 ['u', 'A*', "foo\0bar \0", "foo\0bar"],
349 ['u', 'A8', "foo\0bar \0", "foo\0bar"],
350 ['p', 'a*', "foo\0bar\0 ", "foo\0bar\0 "],
351 ['p', 'a11', "foo\0bar\0 ", "foo\0bar\0 \0\0"],
352 ['u', 'a*', "foo\0bar \0", "foo\0bar \0"],
353 ['u', 'a8', "foo\0bar \0", "foo\0bar "],
354 ['p', 'Z*', "foo\0bar\0 ", "foo\0bar\0 \0"],
355 ['p', 'Z11', "foo\0bar\0 ", "foo\0bar\0 \0\0"],
356 ['p', 'Z3', "foo", "fo\0"],
357 ['u', 'Z*', "foo\0bar \0", "foo"],
358 ['u', 'Z8', "foo\0bar \0", "foo"],
361 my ($what, $template, $in, $out) = @$_;
362 my $got = $what eq 'u' ? (unpack $template, $in) : (pack $template, $in);
363 unless (is($got, $out)) {
364 my $un = $what eq 'u' ? 'un' : '';
365 print "# ${un}pack ('$template', "._qq($in).') gave '._qq($out).
366 ' not '._qq($got)."\n";
370 # packing native shorts/ints/longs
372 is(length(pack("s!", 0)), $Config{shortsize});
373 is(length(pack("i!", 0)), $Config{intsize});
374 is(length(pack("l!", 0)), $Config{longsize});
375 ok(length(pack("s!", 0)) <= length(pack("i!", 0)));
376 ok(length(pack("i!", 0)) <= length(pack("l!", 0)));
377 is(length(pack("i!", 0)), length(pack("i", 0)));
381 return numbers_with_total ($format, undef, @_);
384 sub numbers_with_total {
387 if (!defined $total) {
394 my $out = eval {unpack($format, pack($format, $_))};
395 skip "cannot pack '$format' on this perl", 2 if
396 $@ =~ /Invalid type '$format'/;
403 my $skip_if_longer_than = ~0; # "Infinity"
405 # If we're running with -DNO_PERLPRESERVE_IVUV and NVs don't preserve all
406 # UVs (in which case ~0 is NV, ~0-1 will be the same NV) then we can't
407 # correctly in perl calculate UV totals for long checksums, as pp_unpack
408 # is using UV maths, and we've only got NVs.
409 $skip_if_longer_than = $Config{nv_preserves_uv_bits};
412 foreach ('', 1, 2, 3, 15, 16, 17, 31, 32, 33, 53, 54, 63, 64, 65) {
414 my $sum = eval {unpack "%$_$format*", pack "$format*", @_};
415 skip "cannot pack '$format' on this perl", 3
416 if $@ =~ /Invalid type '$format'/;
421 my $len = $_; # Copy, so that we can reassign ''
422 $len = 16 unless length $len;
425 skip "cannot test checksums over $skip_if_longer_than bits", 1
426 if $len > $skip_if_longer_than;
428 # Our problem with testing this portably is that the checksum code in
429 # pp_unpack is able to cast signed to unsigned, and do modulo 2**n
430 # arithmetic in unsigned ints, which perl has no operators to do.
431 # (use integer; does signed ints, which won't wrap on UTS, which is just
432 # fine with ANSI, but not with most people's assumptions.
433 # This is why we need to supply the totals for 'Q' as there's no way in
434 # perl to calculate them, short of unpack '%0Q' (is that documented?)
435 # ** returns NVs; make sure it's IV.
436 my $max = 1 + 2 * (int (2 ** ($len-1))-1); # The max possible checksum
437 my $max_p1 = $max + 1;
438 my ($max_is_integer, $max_p1_is_integer);
439 $max_p1_is_integer = 1 unless $max_p1 + 1 == $max_p1;
440 $max_is_integer = 1 if $max - 1 < ~0;
444 $calc_sum = &$total($len);
447 # Shift into range by some multiple of the total
448 my $mult = $max_p1 ? int ($total / $max_p1) : undef;
449 # Need this to make sure that -1 + (~0+1) is ~0 (ie still integer)
450 $calc_sum = $total - $mult;
451 $calc_sum -= $mult * $max;
457 if ($calc_sum == $calc_sum - 1 && $calc_sum == $max_p1) {
458 # we're into floating point (either by getting out of the range of
459 # UV arithmetic, or because we're doing a floating point checksum)
460 # and our calculation of the checksum has become rounded up to
465 if ($calc_sum == $sum) { # HAS to be ==, not eq (so no is()).
466 ok ("unpack '%$_$format' gave $sum");
468 my $delta = 1.000001;
469 if ($format =~ tr /dDfF//
470 && ($calc_sum <= $sum * $delta && $calc_sum >= $sum / $delta)) {
471 pass ("unpack '%$_$format' gave $sum, expected $calc_sum");
473 my $text = ref $total ? &$total($len) : $total;
475 print "# For list (" . join (", ", @_) . ") (total $text)"
476 . " packed with $format unpack '%$_$format' gave $sum,"
477 . " expected $calc_sum\n";
485 numbers ('c', -128, -1, 0, 1, 127);
486 numbers ('C', 0, 1, 127, 128, 255);
487 numbers ('s', -32768, -1, 0, 1, 32767);
488 numbers ('S', 0, 1, 32767, 32768, 65535);
489 numbers ('i', -2147483648, -1, 0, 1, 2147483647);
490 numbers ('I', 0, 1, 2147483647, 2147483648, 4294967295);
491 numbers ('l', -2147483648, -1, 0, 1, 2147483647);
492 numbers ('L', 0, 1, 2147483647, 2147483648, 4294967295);
493 numbers ('s!', -32768, -1, 0, 1, 32767);
494 numbers ('S!', 0, 1, 32767, 32768, 65535);
495 numbers ('i!', -2147483648, -1, 0, 1, 2147483647);
496 numbers ('I!', 0, 1, 2147483647, 2147483648, 4294967295);
497 numbers ('l!', -2147483648, -1, 0, 1, 2147483647);
498 numbers ('L!', 0, 1, 2147483647, 2147483648, 4294967295);
499 numbers ('n', 0, 1, 32767, 32768, 65535);
500 numbers ('v', 0, 1, 32767, 32768, 65535);
501 numbers ('N', 0, 1, 2147483647, 2147483648, 4294967295);
502 numbers ('V', 0, 1, 2147483647, 2147483648, 4294967295);
503 # All these should have exact binary representations:
504 numbers ('f', -1, 0, 0.5, 42, 2**34);
505 numbers ('d', -(2**34), -1, 0, 1, 2**34);
506 ## These don't, but 'd' is NV. XXX wrong, it's double
507 #numbers ('d', -1, 0, 1, 1-exp(-1), -exp(1));
509 numbers_with_total ('q', -1,
510 -9223372036854775808, -1, 0, 1,9223372036854775807);
511 # This total is icky, but the true total is 2**65-1, and need a way to generate
512 # the epxected checksum on any system including those where NVs can preserve
513 # 65 bits. (long double is 128 bits on sparc, so they certainly can)
514 # or where rounding is down not up on binary conversion (crays)
515 numbers_with_total ('Q', sub {
517 $len = 65 if $len > 65; # unmasked total is 2**65-1 here
518 my $total = 1 + 2 * (int (2**($len - 1)) - 1);
519 return 0 if $total == $total - 1; # Overflowed integers
520 return $total; # NVs still accurate to nearest integer
522 0, 1,9223372036854775807, 9223372036854775808,
523 18446744073709551615);
525 # pack nvNV byteorders
527 is(pack("n", 0xdead), "\xde\xad");
528 is(pack("v", 0xdead), "\xad\xde");
529 is(pack("N", 0xdeadbeef), "\xde\xad\xbe\xef");
530 is(pack("V", 0xdeadbeef), "\xef\xbe\xad\xde");
536 eval { ($x) = unpack '/a*','hello' };
537 like($@, qr!'/' must follow a numeric type!);
539 eval { $x = unpack '/a*','hello' };
540 like($@, qr!'/' must follow a numeric type!);
543 eval { ($z,$x,$y) = unpack 'a3/A C/a* C/Z', "003ok \003yes\004z\000abc" };
549 eval { $z = unpack 'a3/A C/a* C/Z', "003ok \003yes\004z\000abc" };
555 eval { ($x) = pack '/a*','hello' };
556 like($@, qr!Invalid type '/'!);
558 eval { $x = pack '/a*','hello' };
559 like($@, qr!Invalid type '/'!);
561 $z = pack 'n/a* N/Z* w/A*','string','hi there ','etc';
562 my $expect = "\000\006string\0\0\0\012hi there \000\003etc";
566 $expect = 'hello world';
567 eval { ($x) = unpack ("w/a", chr (11) . "hello world!")};
572 # Doing this in scalar context used to fail.
573 eval { $x = unpack ("w/a", chr (11) . "hello world!")};
578 ['a/a*/a*', '212ab345678901234567','ab3456789012'],
579 ['a/a*/a*', '3012ab345678901234567', 'ab3456789012'],
580 ['a/a*/b*', '212ab', $Is_EBCDIC ? '100000010100' : '100001100100'],
583 my ($pat, $in, $expect) = @$_;
585 eval { ($x) = unpack $pat, $in };
588 printf "# list unpack ('$pat', '$in') gave %s, expected '$expect'\n",
592 eval { $x = unpack $pat, $in };
595 printf "# scalar unpack ('$pat', '$in') gave %s, expected '$expect'\n",
601 my $pattern = <<'EOU';
602 a3/A # Count in ASCII
603 C/a* # Count in a C char
604 C/Z # Count in a C char but skip after \0
608 eval { ($z,$x,$y) = unpack $pattern, "003ok \003yes\004z\000abc" };
614 eval { $z = unpack $pattern, "003ok \003yes\004z\000abc" };
619 n/a* # Count as network short
620 w/A* # Count a BER integer
622 $expect = "\000\006string\003etc";
623 $z = pack $pattern,'string','etc';
629 skip("(EBCDIC and) version strings are bad idea", 2) if $Is_EBCDIC;
631 is("1.20.300.4000", sprintf "%vd", pack("U*",1,20,300,4000));
632 is("1.20.300.4000", sprintf "%vd", pack(" U*",1,20,300,4000));
634 isnt(v1.20.300.4000, sprintf "%vd", pack("C0U*",1,20,300,4000));
636 my $rslt = $Is_EBCDIC ? "156 67" : "199 162";
637 is(join(" ", unpack("C*", chr(0x1e2))), $rslt);
639 # does pack U create Unicode?
640 is(ord(pack('U', 300)), 300);
642 # does unpack U deref Unicode?
643 is((unpack('U', chr(300)))[0], 300);
645 # is unpack U the reverse of pack U for Unicode string?
646 is("@{[unpack('U*', pack('U*', 100, 200, 300))]}", "100 200 300");
648 # is unpack U the reverse of pack U for byte string?
649 is("@{[unpack('U*', pack('U*', 100, 200))]}", "100 200");
653 skip "Not for EBCDIC", 4 if $Is_EBCDIC;
655 # does unpack C unravel pack U?
656 is("@{[unpack('C*', pack('U*', 100, 200))]}", "100 195 136");
658 # does pack U0C create Unicode?
659 is("@{[pack('U0C*', 100, 195, 136)]}", v100.v200);
661 # does pack C0U create characters?
662 is("@{[pack('C0U*', 100, 200)]}", pack("C*", 100, 195, 136));
664 # does unpack U0U on byte data warn?
666 local $SIG{__WARN__} = sub { $@ = "@_" };
667 my @null = unpack('U0U', chr(255));
668 like($@, /^Malformed UTF-8 character /);
673 my $p = pack 'i*', -2147483648, ~0, 0, 1, 2147483647;
675 # bug - % had to be at the start of the pattern, no leading whitespace or
676 # comments. %i! didn't work at all.
677 foreach my $pat ('%32i*', ' %32i*', "# Muhahahaha\n%32i*", '%32i* ',
678 '%32i!*', ' %32i!*', "\n#\n#\n\r \t\f%32i!*", '%32i!*#') {
679 @a = unpack $pat, $p;
680 is($a[0], 0xFFFFFFFF) || print "# $pat\n";
681 @a = scalar unpack $pat, $p;
682 is($a[0], 0xFFFFFFFF) || print "# $pat\n";
686 $p = pack 'I*', 42, 12;
687 # Multiline patterns in scalar context failed.
688 foreach my $pat ('I', <<EOPOEMSNIPPET, 'I#I', 'I # I', 'I # !!!') {
689 # On the Ning Nang Nong
690 # Where the Cows go Bong!
691 # And the Monkeys all say Boo!
694 @a = unpack $pat, $p;
697 @a = scalar unpack $pat, $p;
702 # shorts (of all flavours) didn't calculate checksums > 32 bits with floating
703 # point, so a pathologically long pattern would wrap at 32 bits.
704 my $pat = "\xff\xff"x65538; # Start with it long, to save any copying.
705 foreach (4,3,2,1,0) {
706 my $len = 65534 + $_;
707 is(unpack ("%33n$len", $pat), 65535 * $len);
717 ['xXa*', "Nick", "Nick"],
718 ['a5Xa5', "cameL", "llama", "camellama"],
720 ['a*@8a*', 'Camel', 'Dromedary', "Camel\0\0\0Dromedary"],
721 ['a*@4a', 'Perl rules', '!', 'Perl!'],
724 my ($template, @in) = @$_;
726 my $got = eval {pack $template, @in};
729 printf "# pack ('$template', %s) gave %s expected %s\n",
730 encode_list (@in), encode_list ($got), encode_list ($out);
737 ['xXa*', "Nick", "Nick"],
738 ['a5Xa5', "camellama", "camel", "llama"],
740 ['@2a2', "water", "te"],
741 ['a*@1a3', "steam", "steam", "tea"],
744 my ($template, $in, @out) = @$_;
745 my @got = eval {unpack $template, $in};
747 ok (list_eq (\@got, \@out)) ||
748 printf "# list unpack ('$template', %s) gave %s expected %s\n",
749 _qq($in), encode_list (@got), encode_list (@out);
751 my $got = eval {unpack $template, $in};
753 @out ? is( $got, $out[0] ) # 1 or more items; should get first
754 : ok( !defined $got ) # 0 items; should get undef
755 or printf "# scalar unpack ('$template', %s) gave %s expected %s\n",
756 _qq($in), encode_list ($got), encode_list ($out[0]);
761 my ($u, $v) = qw(foo xyzzy);
762 my $p = pack($t, $u, $v);
763 my @u = unpack($t, $p);
770 is((unpack("w/a*", "\x02abc"))[0], "ab");
772 # "w/a*" should be seen as one unit
774 is(scalar unpack("w/a*", "\x02abc"), "ab");
778 # from Wolfgang Laun: fix in change #13163
783 my $buf = pack( 'Z*/A* C', $s, $x );
787 $h =~ s/[^[:print:]]/./g;
788 ( $s, $y ) = unpack( "Z*/A* C", $buf );
789 is($h, "30.ABCABCABCABCABCABCABCABCABCABC$t");
791 is($s, "ABCABCABCABCABCABCABCABCABCABC");
796 # from Wolfgang Laun: fix in change #13288
798 eval { my $t=unpack("P*", "abc") };
799 like($@, qr/'P' must have an explicit size/);
802 { # Grouping constructs
804 @a = unpack '(SL)', pack 'SLSLSL', 67..90;
806 @a = unpack '(SL)3', pack 'SLSLSL', 67..90;
809 @a = unpack '(SL)3', pack 'SLSLSLSL', 67..90;
811 @a = unpack '(SL)[3]', pack 'SLSLSLSL', 67..90;
813 @a = unpack '(SL)[2] SL', pack 'SLSLSLSL', 67..90;
815 @a = unpack 'A/(SL)', pack 'ASLSLSLSL', 3, 67..90;
817 @a = unpack 'A/(SL)SL', pack 'ASLSLSLSL', 2, 67..90;
819 @a = unpack '(SL)*', pack 'SLSLSLSL', 67..90;
822 @a = unpack '(SL)*SL', pack 'SLSLSLSL', 67..90;
824 eval { @a = unpack '(*SL)', '' };
825 like($@, qr/\(\)-group starts with a count/);
826 eval { @a = unpack '(3SL)', '' };
827 like($@, qr/\(\)-group starts with a count/);
828 eval { @a = unpack '([3]SL)', '' };
829 like($@, qr/\(\)-group starts with a count/);
830 eval { @a = pack '(*SL)' };
831 like($@, qr/\(\)-group starts with a count/);
832 @a = unpack '(SL)3 SL', pack '(SL)4', 67..74;
834 @a = unpack '(SL)3 SL', pack '(SL)[4]', 67..74;
836 @a = unpack '(SL)3 SL', pack '(SL)*', 67..74;
840 { # more on grouping (W.Laun)
843 local $SIG{__WARN__} = sub {
846 # @ absolute within ()-group
847 my $badc = pack( '(a)*', unpack( '(@1a @0a @2)*', 'abcd' ) );
850 my $buf = pack( '(@1c)((@2C)@3c)', @b );
851 is( $buf, "\0\1\0\0\2\3" );
852 my @a = unpack( '(@1c)((@2c)@3c)', $buf );
855 # various unpack count/code scenarios
856 my @Env = ( a => 'AAA', b => 'BBB' );
857 my $env = pack( 'S(S/A*S/A*)*', @Env/2, @Env );
859 # unpack full length - ok
860 my @pup = unpack( 'S/(S/A* S/A*)', $env );
861 is( "@pup", "@Env" );
863 # warn when count/code goes beyond end of string
864 # \0002 \0001 a \0003 AAA \0001 b \0003 BBB
866 eval { @pup = unpack( 'S/(S/A* S/A*)', substr( $env, 0, 13 ) ) };
867 like( $@, qr{length/code after end of string} );
869 # postfix repeat count
870 $env = pack( '(S/A* S/A*)' . @Env/2, @Env );
872 # warn when count/code goes beyond end of string
873 # \0001 a \0003 AAA \0001 b \0003 BBB
874 # 2 3c 5 8 10 11 13 16
875 eval { @pup = unpack( '(S/A* S/A*)' . @Env/2, substr( $env, 0, 11 ) ) };
876 like( $@, qr{length/code after end of string} );
878 # catch stack overflow/segfault
879 eval { $_ = pack( ('(' x 105) . 'A' . (')' x 105) ); };
880 like( $@, qr{Too deeply nested \(\)-groups} );
883 { # syntax checks (W.Laun)
886 local $SIG{__WARN__} = sub {
887 push( @warning, $_[0] );
889 eval { my $s = pack( 'Ax![4c]A', 1..5 ); };
890 like( $@, qr{Malformed integer in \[\]} );
892 eval { my $buf = pack( '(c/*a*)', 'AAA', 'BB' ); };
893 like( $@, qr{'/' does not take a repeat count} );
895 eval { my @inf = unpack( 'c/1a', "\x03AAA\x02BB" ); };
896 like( $@, qr{'/' does not take a repeat count} );
898 eval { my @inf = unpack( 'c/*a', "\x03AAA\x02BB" ); };
899 like( $@, qr{'/' does not take a repeat count} );
901 # white space where possible
902 my @Env = ( a => 'AAA', b => 'BBB' );
903 my $env = pack( ' S ( S / A* S / A* )* ', @Env/2, @Env );
904 my @pup = unpack( ' S / ( S / A* S / A* ) ', $env );
905 is( "@pup", "@Env" );
907 # white space in 4 wrong places
908 for my $temp ( 'A ![4]', 'A [4]', 'A *', 'A 4' ){
909 eval { my $s = pack( $temp, 'B' ); };
910 like( $@, qr{Invalid type } );
915 my $x = pack( 'I,A', 4, 'X' );
916 like( $warning[0], qr{Invalid type ','} );
918 # comma warning only once
920 $x = pack( 'C(C,C)C,C', 65..71 );
921 like( scalar @warning, 1 );
923 # forbidden code in []
924 eval { my $x = pack( 'A[@4]', 'XXXX' ); };
925 like( $@, qr{Within \[\]-length '\@' not allowed} );
928 my $s = pack( 'AA@A', 'A', 'B', 'C' );
929 my @c = unpack( 'AA@A', $s );
933 # no unpack code after /
934 eval { my @a = unpack( "C/", "\3" ); };
935 like( $@, qr{Code missing after '/'} );
939 { # Repeat count [SUBEXPR]
940 my @codes = qw( x A Z a c C B b H h s v n S i I l V N L p P f F d
941 s! S! i! I! l! L! j J);
943 if (eval { pack 'q', 1 } ) {
944 push @codes, qw(q Q);
946 push @codes, qw(c C); # Keep the count the same
948 if (eval { pack 'D', 1 } ) {
951 push @codes, 'd'; # Keep the count the same
955 @val{@codes} = map { / [Xx] (?{ undef })
956 | [AZa] (?{ 'something' })
961 | [svnSiIlVNLqQjJ] (?{ 10111 })
962 | [FfDd] (?{ 1.36514538e67 })
963 | [pP] (?{ "try this buffer" })
965 my @end = (0x12345678, 0x23456781, 0x35465768, 0x15263748);
968 for my $type (@codes) {
969 my @list = $val{$type};
970 @list = () unless defined $list[0];
971 for my $count ('', '3', '[11]') {
973 $c = $1 if $count =~ /(\d+)/;
975 @list1 = (@list1) x $c unless $type =~ /[XxAaZBbHhP]/;
976 for my $groupend ('', ')2', ')[8]') {
977 my $groupbegin = ($groupend ? '(' : '');
979 $c = $1 if $groupend =~ /(\d+)/;
980 my @list2 = (@list1) x $c;
982 my $junk1 = "$groupbegin $type$count $groupend";
983 # print "# junk1=$junk1\n";
984 my $p = pack $junk1, @list2;
985 my $half = int( (length $p)/2 );
986 for my $move ('', "X$half", "X!$half", 'x1', 'x!8', "x$half") {
987 my $junk = "$junk1 $move";
988 # print "# junk='$junk', list=(@list2)\n";
989 $p = pack "$junk $end", @list2, @end;
990 my @l = unpack "x[$junk] $end", $p;
991 is(scalar @l, scalar @end);
992 is("@l", "@end", "skipping x[$junk]");
999 # / is recognized after spaces in scalar context
1000 # XXXX no spaces are allowed in pack... In pack only before the slash...
1001 is(scalar unpack('A /A Z20', pack 'A/A* Z20', 'bcde', 'xxxxx'), 'bcde');
1002 is(scalar unpack('A /A /A Z20', '3004bcde'), 'bcde');
1005 my $t = 'C[3] x!8 C[2]';
1006 my @a = (0x73..0x77);
1007 my $p = pack($t, @a);
1008 is($p, "\x73\x74\x75\0\0\0\0\0\x76\x77");
1009 my @b = unpack $t, $p;
1010 is(scalar @b, scalar @a);
1011 is("@b", "@a", 'x!8');
1012 $t = 'x[5] C[6] X!8 C[2]';
1015 is($p, "\0\0\0\0\0\x73\x74\x75\x79\x7a");
1017 @a = (0x73..0x75, 0x79, 0x7a, 0x79, 0x7a);
1018 is(scalar @b, scalar @a);
1022 { # struct {char c1; double d; char cc[2];}
1023 my $t = 'C x![d] d C[2]';
1024 my @a = (173, 1.283476517e-45, 42, 215);
1025 my $p = pack $t, @a;
1027 my @b = unpack "$t X[$t] $t", $p; # Extract, step back, extract again
1028 is(scalar @b, 2 * scalar @a);
1030 $b =~ s/(?:17000+|16999+)\d+(e-45) /17$1 /gi; # stringification is gamble
1034 local $SIG{__WARN__} = sub {
1037 @b = unpack "x[C] x[$t] X[$t] X[C] $t", "$p\0";
1039 is($warning, undef);
1040 is(scalar @b, scalar @a);
1042 $b =~ s/(?:17000+|16999+)\d+(e-45) /17$1 /gi; # stringification is gamble
1046 is(length(pack("j", 0)), $Config{ivsize});
1047 is(length(pack("J", 0)), $Config{uvsize});
1048 is(length(pack("F", 0)), $Config{nvsize});
1050 numbers ('j', -2147483648, -1, 0, 1, 2147483647);
1051 numbers ('J', 0, 1, 2147483647, 2147483648, 4294967295);
1052 numbers ('F', -(2**34), -1, 0, 1, 2**34);
1054 my $t = eval { unpack("D*", pack("D", 12.34)) };
1056 skip "Long doubles not in use", 56 if $@ =~ /Invalid type/;
1058 is(length(pack("D", 0)), $Config{longdblsize});
1059 numbers ('D', -(2**34), -1, 0, 1, 2**34);
1062 # Maybe this knowledge needs to be "global" for all of pack.t
1063 # Or a "can checksum" which would effectively be all the number types"
1064 my %cant_checksum = map {$_=> 1} qw(A Z u w);
1066 foreach my $template (qw(A Z c C s S i I l L n N v V q Q j J f d F D u U w)) {
1068 my $packed = eval {pack "${template}4", 1, 4, 9, 16};
1070 die unless $@ =~ /Invalid type '$template'/;
1071 skip ("$template not supported on this perl",
1072 $cant_checksum{$template} ? 4 : 8);
1074 my @unpack4 = unpack "${template}4", $packed;
1075 my @unpack = unpack "${template}*", $packed;
1076 my @unpack1 = unpack "${template}", $packed;
1077 my @unpack1s = scalar unpack "${template}", $packed;
1078 my @unpack4s = scalar unpack "${template}4", $packed;
1079 my @unpacks = scalar unpack "${template}*", $packed;
1081 my @tests = ( ["${template}4 vs ${template}*", \@unpack4, \@unpack],
1082 ["scalar ${template} ${template}", \@unpack1s, \@unpack1],
1083 ["scalar ${template}4 vs ${template}", \@unpack4s, \@unpack1],
1084 ["scalar ${template}* vs ${template}", \@unpacks, \@unpack1],
1087 unless ($cant_checksum{$template}) {
1088 my @unpack4_c = unpack "\%${template}4", $packed;
1089 my @unpack_c = unpack "\%${template}*", $packed;
1090 my @unpack1_c = unpack "\%${template}", $packed;
1091 my @unpack1s_c = scalar unpack "\%${template}", $packed;
1092 my @unpack4s_c = scalar unpack "\%${template}4", $packed;
1093 my @unpacks_c = scalar unpack "\%${template}*", $packed;
1096 ( ["% ${template}4 vs ${template}*", \@unpack4_c, \@unpack_c],
1097 ["% scalar ${template} ${template}", \@unpack1s_c, \@unpack1_c],
1098 ["% scalar ${template}4 vs ${template}*", \@unpack4s_c, \@unpack_c],
1099 ["% scalar ${template}* vs ${template}*", \@unpacks_c, \@unpack_c],
1102 foreach my $test (@tests) {
1103 ok (list_eq ($test->[1], $test->[2]), $test->[0]) ||
1104 printf "# unpack gave %s expected %s\n",
1105 encode_list (@{$test->[1]}), encode_list (@{$test->[2]});
1110 ok(pack('u2', 'AA'), "[perl #8026]"); # used to hang and eat RAM in perl 5.7.2
1112 $_ = pack('c', 65); # 'A' would not be EBCDIC-friendly
1113 is(unpack('c'), 65, "one-arg unpack (change #18751)"); # defaulting to $_
1116 my $a = "X\t01234567\n" x 100;
1117 my @a = unpack("(a1 c/a)*", $a);
1118 is(scalar @a, 200, "[perl #15288]");
1119 is($a[-1], "01234567\n", "[perl #15288]");
1120 is($a[-2], "X", "[perl #15288]");