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 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631
|
use strict;
use warnings;
use Test::More 'no_plan';
use Encode;
use Time::Local qw(timegm);
use Parse::Win32Registry 0.60 qw(
hexdump
format_octets
convert_filetime_to_epoch_time
iso8601
unpack_windows_time
unpack_string
unpack_unicode_string
unpack_guid
);
# hexdump and format_octets tests
my $small_text = 'Perl';
my $medium_text = 'This library is free software.';
my $large_text = <<EOT;
THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS
OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION,
THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS
FOR A PARTICULAR PURPOSE.
EOT
my $full_text = pack("C*", 0..255);
# hexdump tests
is(hexdump(undef), '', 'hexdump undef');
is(hexdump(''), '', 'hexdump empty string');
is(hexdump($small_text), <<EOT, 'hexdump small');
0 50 65 72 6c Perl
EOT
is(hexdump($small_text, 0x2300), <<EOT, 'hexdump small, 0x2300');
2300 50 65 72 6c Perl
EOT
is(hexdump($small_text, 0x2301), <<EOT, 'hexdump small, 0x2301');
2300 50 65 72 6c Perl
EOT
is(hexdump($small_text, 0x2302), <<EOT, 'hexdump small, 0x2302');
2300 50 65 72 6c Perl
EOT
is(hexdump($small_text, 0x2303), <<EOT, 'hexdump small, 0x2303');
2300 50 65 72 6c Perl
EOT
is(hexdump($small_text, 0x2304), <<EOT, 'hexdump small, 0x2304');
2300 50 65 72 6c Perl
EOT
is(hexdump($small_text, 0x2305), <<EOT, 'hexdump small, 0x2305');
2300 50 65 72 6c Perl
EOT
is(hexdump($small_text, 0x2306), <<EOT, 'hexdump small, 0x2306');
2300 50 65 72 6c Perl
EOT
is(hexdump($small_text, 0x2307), <<EOT, 'hexdump small, 0x2307');
2300 50 65 72 6c Perl
EOT
is(hexdump($small_text, 0x2308), <<EOT, 'hexdump small, 0x2308');
2300 50 65 72 6c Perl
EOT
is(hexdump($small_text, 0x2309), <<EOT, 'hexdump small, 0x2309');
2300 50 65 72 6c Perl
EOT
is(hexdump($small_text, 0x230a), <<EOT, 'hexdump small, 0x230a');
2300 50 65 72 6c Perl
EOT
is(hexdump($small_text, 0x230b), <<EOT, 'hexdump small, 0x230b');
2300 50 65 72 6c Perl
EOT
is(hexdump($small_text, 0x230c), <<EOT, 'hexdump small, 0x230c');
2300 50 65 72 6c Perl
EOT
is(hexdump($small_text, 0x230d), <<EOT, 'hexdump small, 0x230d');
2300 50 65 72 Per
2310 6c l
EOT
is(hexdump($small_text, 0x230e), <<EOT, 'hexdump small, 0x230e');
2300 50 65 Pe
2310 72 6c rl
EOT
is(hexdump($small_text, 0x230f), <<EOT, 'hexdump small, 0x230f');
2300 50 P
2310 65 72 6c erl
EOT
is(hexdump($small_text, 0x2310), <<EOT, 'hexdump small, 0x2310');
2310 50 65 72 6c Perl
EOT
is(hexdump($medium_text), <<EOT, 'hexdump medium');
0 54 68 69 73 20 6c 69 62 72 61 72 79 20 69 73 20 This library is
10 66 72 65 65 20 73 6f 66 74 77 61 72 65 2e free software.
EOT
is(hexdump($medium_text, 0x2300), <<EOT, 'hexdump medium, 0x2300');
2300 54 68 69 73 20 6c 69 62 72 61 72 79 20 69 73 20 This library is
2310 66 72 65 65 20 73 6f 66 74 77 61 72 65 2e free software.
EOT
is(hexdump($medium_text, 0x2301), <<EOT, 'hexdump medium, 0x2301');
2300 54 68 69 73 20 6c 69 62 72 61 72 79 20 69 73 This library is
2310 20 66 72 65 65 20 73 6f 66 74 77 61 72 65 2e free software.
EOT
is(hexdump($medium_text, 0x2302), <<EOT, 'hexdump medium, 0x2302');
2300 54 68 69 73 20 6c 69 62 72 61 72 79 20 69 This library i
2310 73 20 66 72 65 65 20 73 6f 66 74 77 61 72 65 2e s free software.
EOT
is(hexdump($medium_text, 0x2303), <<EOT, 'hexdump medium, 0x2303');
2300 54 68 69 73 20 6c 69 62 72 61 72 79 20 This library
2310 69 73 20 66 72 65 65 20 73 6f 66 74 77 61 72 65 is free software
2320 2e .
EOT
is(hexdump($medium_text, 0x2304), <<EOT, 'hexdump medium, 0x2304');
2300 54 68 69 73 20 6c 69 62 72 61 72 79 This library
2310 20 69 73 20 66 72 65 65 20 73 6f 66 74 77 61 72 is free softwar
2320 65 2e e.
EOT
is(hexdump($medium_text, 0x2305), <<EOT, 'hexdump medium, 0x2305');
2300 54 68 69 73 20 6c 69 62 72 61 72 This librar
2310 79 20 69 73 20 66 72 65 65 20 73 6f 66 74 77 61 y is free softwa
2320 72 65 2e re.
EOT
is(hexdump($medium_text, 0x2306), <<EOT, 'hexdump medium, 0x2306');
2300 54 68 69 73 20 6c 69 62 72 61 This libra
2310 72 79 20 69 73 20 66 72 65 65 20 73 6f 66 74 77 ry is free softw
2320 61 72 65 2e are.
EOT
is(hexdump($medium_text, 0x2307), <<EOT, 'hexdump medium, 0x2307');
2300 54 68 69 73 20 6c 69 62 72 This libr
2310 61 72 79 20 69 73 20 66 72 65 65 20 73 6f 66 74 ary is free soft
2320 77 61 72 65 2e ware.
EOT
is(hexdump($medium_text, 0x2308), <<EOT, 'hexdump medium, 0x2308');
2300 54 68 69 73 20 6c 69 62 This lib
2310 72 61 72 79 20 69 73 20 66 72 65 65 20 73 6f 66 rary is free sof
2320 74 77 61 72 65 2e tware.
EOT
is(hexdump($medium_text, 0x2309), <<EOT, 'hexdump medium, 0x2309');
2300 54 68 69 73 20 6c 69 This li
2310 62 72 61 72 79 20 69 73 20 66 72 65 65 20 73 6f brary is free so
2320 66 74 77 61 72 65 2e ftware.
EOT
is(hexdump($medium_text, 0x230a), <<EOT, 'hexdump medium, 0x230a');
2300 54 68 69 73 20 6c This l
2310 69 62 72 61 72 79 20 69 73 20 66 72 65 65 20 73 ibrary is free s
2320 6f 66 74 77 61 72 65 2e oftware.
EOT
is(hexdump($medium_text, 0x230b), <<EOT, 'hexdump medium, 0x230b');
2300 54 68 69 73 20 This
2310 6c 69 62 72 61 72 79 20 69 73 20 66 72 65 65 20 library is free
2320 73 6f 66 74 77 61 72 65 2e software.
EOT
is(hexdump($medium_text, 0x230c), <<EOT, 'hexdump medium, 0x230c');
2300 54 68 69 73 This
2310 20 6c 69 62 72 61 72 79 20 69 73 20 66 72 65 65 library is free
2320 20 73 6f 66 74 77 61 72 65 2e software.
EOT
is(hexdump($medium_text, 0x230d), <<EOT, 'hexdump medium, 0x230d');
2300 54 68 69 Thi
2310 73 20 6c 69 62 72 61 72 79 20 69 73 20 66 72 65 s library is fre
2320 65 20 73 6f 66 74 77 61 72 65 2e e software.
EOT
is(hexdump($medium_text, 0x230e), <<EOT, 'hexdump medium, 0x230e');
2300 54 68 Th
2310 69 73 20 6c 69 62 72 61 72 79 20 69 73 20 66 72 is library is fr
2320 65 65 20 73 6f 66 74 77 61 72 65 2e ee software.
EOT
is(hexdump($medium_text, 0x230f), <<EOT, 'hexdump medium, 0x230f');
2300 54 T
2310 68 69 73 20 6c 69 62 72 61 72 79 20 69 73 20 66 his library is f
2320 72 65 65 20 73 6f 66 74 77 61 72 65 2e ree software.
EOT
is(hexdump($medium_text, 0x2310), <<EOT, 'hexdump medium, 0x2310');
2310 54 68 69 73 20 6c 69 62 72 61 72 79 20 69 73 20 This library is
2320 66 72 65 65 20 73 6f 66 74 77 61 72 65 2e free software.
EOT
is(hexdump($large_text), <<EOT, 'hexdump large');
0 54 48 49 53 20 50 41 43 4b 41 47 45 20 49 53 20 THIS PACKAGE IS
10 50 52 4f 56 49 44 45 44 20 22 41 53 20 49 53 22 PROVIDED "AS IS"
20 20 41 4e 44 20 57 49 54 48 4f 55 54 20 41 4e 59 AND WITHOUT ANY
30 20 45 58 50 52 45 53 53 0a 4f 52 20 49 4d 50 4c EXPRESS.OR IMPL
40 49 45 44 20 57 41 52 52 41 4e 54 49 45 53 2c 20 IED WARRANTIES,
50 49 4e 43 4c 55 44 49 4e 47 2c 20 57 49 54 48 4f INCLUDING, WITHO
60 55 54 20 4c 49 4d 49 54 41 54 49 4f 4e 2c 0a 54 UT LIMITATION,.T
70 48 45 20 49 4d 50 4c 49 45 44 20 57 41 52 52 41 HE IMPLIED WARRA
80 4e 54 49 45 53 20 4f 46 20 4d 45 52 43 48 41 4e NTIES OF MERCHAN
90 54 49 42 49 4c 49 54 59 20 41 4e 44 20 46 49 54 TIBILITY AND FIT
a0 4e 45 53 53 0a 46 4f 52 20 41 20 50 41 52 54 49 NESS.FOR A PARTI
b0 43 55 4c 41 52 20 50 55 52 50 4f 53 45 2e 0a CULAR PURPOSE..
EOT
is(hexdump($full_text), <<EOT, 'hexdump 0..255');
0 00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f ................
10 10 11 12 13 14 15 16 17 18 19 1a 1b 1c 1d 1e 1f ................
20 20 21 22 23 24 25 26 27 28 29 2a 2b 2c 2d 2e 2f !"#\$\%&'()*+,-./
30 30 31 32 33 34 35 36 37 38 39 3a 3b 3c 3d 3e 3f 0123456789:;<=>?
40 40 41 42 43 44 45 46 47 48 49 4a 4b 4c 4d 4e 4f \@ABCDEFGHIJKLMNO
50 50 51 52 53 54 55 56 57 58 59 5a 5b 5c 5d 5e 5f PQRSTUVWXYZ[\\]^_
60 60 61 62 63 64 65 66 67 68 69 6a 6b 6c 6d 6e 6f `abcdefghijklmno
70 70 71 72 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f pqrstuvwxyz{|}~.
80 80 81 82 83 84 85 86 87 88 89 8a 8b 8c 8d 8e 8f ................
90 90 91 92 93 94 95 96 97 98 99 9a 9b 9c 9d 9e 9f ................
a0 a0 a1 a2 a3 a4 a5 a6 a7 a8 a9 aa ab ac ad ae af ................
b0 b0 b1 b2 b3 b4 b5 b6 b7 b8 b9 ba bb bc bd be bf ................
c0 c0 c1 c2 c3 c4 c5 c6 c7 c8 c9 ca cb cc cd ce cf ................
d0 d0 d1 d2 d3 d4 d5 d6 d7 d8 d9 da db dc dd de df ................
e0 e0 e1 e2 e3 e4 e5 e6 e7 e8 e9 ea eb ec ed ee ef ................
f0 f0 f1 f2 f3 f4 f5 f6 f7 f8 f9 fa fb fc fd fe ff ................
EOT
# format_octets tests
is(format_octets(undef), "\n", 'format_octets undef');
is(format_octets(''), "\n", 'format_octets empty string');
is(format_octets($small_text), <<EOT, 'format_octets small');
50,65,72,6c
EOT
is(format_octets($medium_text), <<EOT, 'format_octets medium');
54,68,69,73,20,6c,69,62,72,61,72,79,20,69,73,20,66,72,65,65,20,73,6f,66,74,77,\\
61,72,65,2e
EOT
is(format_octets($medium_text, 70), <<EOT, 'format_octets medium, 70');
54,68,69,\\
73,20,6c,69,62,72,61,72,79,20,69,73,20,66,72,65,65,20,73,6f,66,74,77,61,72,\\
65,2e
EOT
is(format_octets($medium_text, 71), <<EOT, 'format_octets medium, 71');
54,68,\\
69,73,20,6c,69,62,72,61,72,79,20,69,73,20,66,72,65,65,20,73,6f,66,74,77,61,\\
72,65,2e
EOT
is(format_octets($medium_text, 72), <<EOT, 'format_octets medium, 72');
54,68,\\
69,73,20,6c,69,62,72,61,72,79,20,69,73,20,66,72,65,65,20,73,6f,66,74,77,61,\\
72,65,2e
EOT
is(format_octets($medium_text, 73), <<EOT, 'format_octets medium, 73');
54,68,\\
69,73,20,6c,69,62,72,61,72,79,20,69,73,20,66,72,65,65,20,73,6f,66,74,77,61,\\
72,65,2e
EOT
is(format_octets($medium_text, 74), <<EOT, 'format_octets medium, 74');
54,\\
68,69,73,20,6c,69,62,72,61,72,79,20,69,73,20,66,72,65,65,20,73,6f,66,74,77,\\
61,72,65,2e
EOT
is(format_octets($medium_text, 75), <<EOT, 'format_octets medium, 75');
54,\\
68,69,73,20,6c,69,62,72,61,72,79,20,69,73,20,66,72,65,65,20,73,6f,66,74,77,\\
61,72,65,2e
EOT
is(format_octets($medium_text, 76), <<EOT, 'format_octets medium, 76');
54,\\
68,69,73,20,6c,69,62,72,61,72,79,20,69,73,20,66,72,65,65,20,73,6f,66,74,77,\\
61,72,65,2e
EOT
is(format_octets($medium_text, 77), <<EOT, 'format_octets medium, 77');
54,\\
68,69,73,20,6c,69,62,72,61,72,79,20,69,73,20,66,72,65,65,20,73,6f,66,74,77,\\
61,72,65,2e
EOT
is(format_octets($medium_text, 78), <<EOT, 'format_octets medium, 78');
54,\\
68,69,73,20,6c,69,62,72,61,72,79,20,69,73,20,66,72,65,65,20,73,6f,66,74,77,\\
61,72,65,2e
EOT
is(format_octets($medium_text, 79), <<EOT, 'format_octets medium, 79');
54,\\
68,69,73,20,6c,69,62,72,61,72,79,20,69,73,20,66,72,65,65,20,73,6f,66,74,77,\\
61,72,65,2e
EOT
is(format_octets($medium_text, 80), <<EOT, 'format_octets medium, 80');
54,\\
68,69,73,20,6c,69,62,72,61,72,79,20,69,73,20,66,72,65,65,20,73,6f,66,74,77,\\
61,72,65,2e
EOT
is(format_octets($medium_text, 81), <<EOT, 'format_octets medium, 81');
54,\\
68,69,73,20,6c,69,62,72,61,72,79,20,69,73,20,66,72,65,65,20,73,6f,66,74,77,\\
61,72,65,2e
EOT
is(format_octets($medium_text, 82), <<EOT, 'format_octets medium, 82');
54,\\
68,69,73,20,6c,69,62,72,61,72,79,20,69,73,20,66,72,65,65,20,73,6f,66,74,77,\\
61,72,65,2e
EOT
is(format_octets($large_text), <<EOT, 'format_octets large');
54,48,49,53,20,50,41,43,4b,41,47,45,20,49,53,20,50,52,4f,56,49,44,45,44,20,22,\\
41,53,20,49,53,22,20,41,4e,44,20,57,49,54,48,4f,55,54,20,41,4e,59,20,45,58,\\
50,52,45,53,53,0a,4f,52,20,49,4d,50,4c,49,45,44,20,57,41,52,52,41,4e,54,49,\\
45,53,2c,20,49,4e,43,4c,55,44,49,4e,47,2c,20,57,49,54,48,4f,55,54,20,4c,49,\\
4d,49,54,41,54,49,4f,4e,2c,0a,54,48,45,20,49,4d,50,4c,49,45,44,20,57,41,52,\\
52,41,4e,54,49,45,53,20,4f,46,20,4d,45,52,43,48,41,4e,54,49,42,49,4c,49,54,\\
59,20,41,4e,44,20,46,49,54,4e,45,53,53,0a,46,4f,52,20,41,20,50,41,52,54,49,\\
43,55,4c,41,52,20,50,55,52,50,4f,53,45,2e,0a
EOT
# time tests
my @time_tests = (
[
"TIME1",
"\x00\x00\x00\x00\x00\x00\x00\x00",
undef,
'(undefined)',
],
[
"TIME2",
"\x80\xe9\xa5\xd4\xde\xb1\x9d\x01",
undef, # -1
'(undefined)', # '1969-12-31T23:59:59Z'
],
[
"TIME3",
"\x00\x80\x3e\xd5\xde\xb1\x9d\x01",
0,
'1970-01-01T00:00:00Z',
],
[
"TIME4",
"\x80\x16\xd7\xd5\xde\xb1\x9d\x01",
1,
'1970-01-01T00:00:01Z',
],
[
"TIME5",
"\x00\x00\x00\x00\x00\x00\xc1\x01",
993752854,
'2001-06-28T18:27:34Z',
],
[
"TIME6",
"\x00\x00\x00\x00\x00\x00\xc2\x01",
1021900351,
'2002-05-20T13:12:31Z',
],
[
"TIME7",
"\x00\x00\x00\x00\x00\x00\xc3\x01",
1050047849,
'2003-04-11T07:57:29Z',
],
[
"TIME8",
"\x00\x00\x00\x00\x00\x00\xc4\x01",
1078195347,
'2004-03-02T02:42:27Z',
],
[
"TIME9",
"\x00\x00\x00\x00\x00\x00\xc5\x01",
1106342844,
'2005-01-21T21:27:24Z',
],
[
"TIME10",
"\x00\x00\x00\x00\x00\x00\xc6\x01",
1134490342,
'2005-12-13T16:12:22Z',
],
[
"TIME11",
"\x00\x00\x00\x00\x00\x00\xc7\x01",
1162637840,
'2006-11-04T10:57:20Z',
],
[
"TIME12",
"\x00\x00\x00\x00\x00\x00\xc8\x01",
1190785338,
'2007-09-26T05:42:18Z',
],
[
"TIME13",
"\x00\x00\x00\x00\x00\x00\xc9\x01",
1218932835,
'2008-08-17T00:27:15Z',
],
[
"TIME14",
"\x00\x00\x00\x00\x00\x00\xca\x01",
1247080333,
'2009-07-08T19:12:13Z',
],
[
"TIME15",
"\x00\x00\x00\x00\x00\x00\xcb\x01",
1275227831,
'2010-05-30T13:57:11Z',
],
[
"TIME16",
"\x00\x00\x00\x00\x00\x00\xcc\x01",
1303375328,
'2011-04-21T08:42:08Z',
],
[
"TIME17",
"\x00\x00\x00\x00\x00\x00\xcd\x01",
1331522826,
'2012-03-12T03:27:06Z',
],
[
"TIME18",
"\x00\x00\x00\x00\x00\x00\xce\x01",
1359670324,
'2013-01-31T22:12:04Z',
],
[
"TIME19",
"\x00\x00\x00\x00\x00\x00\xcf\x01",
1387817821,
'2013-12-23T16:57:01Z',
],
[
"TIME20",
"\x00\x53\x0d\xd4\x1e\xfd\xe9\x01",
2147483646,
'2038-01-19T03:14:06Z',
],
[
"TIME21",
"\x80\xe9\xa5\xd4\x1e\xfd\xe9\x01",
2147483647,
'2038-01-19T03:14:07Z',
],
[
"TIME22",
"\x00\x80\x3e\xd5\x1e\xfd\xe9\x01",
undef, # 2147483648
'(undefined)', # '2038-01-19T03:14:08Z'
],
[
"TIME23",
"\x00\x00\x00\x00\x00\x00\x00\x02",
undef, # 2767045207
'(undefined)', # '2057-09-06T23:40:07Z'
],
[
"TIME24",
"\x00\x00\x00\x00", # too short
undef,
'(undefined)',
],
);
foreach my $time_test (@time_tests) {
my ($desc, $filetime, $time, $time_as_string) = @$time_test;
my $unpacked_time1 = convert_filetime_to_epoch_time($filetime);
my ($unpacked_time2, $len2) = unpack_windows_time($filetime);
if (defined($time)) {
# The test data time is a Unix epoch time
# so is adjusted to the local OS's epoch time
my $epoch_offset = timegm(0, 0, 0, 1, 0, 1970);
$time += $epoch_offset;
cmp_ok($unpacked_time1, '==', $time,
"$desc (scalar) unpack_windows_time");
cmp_ok($unpacked_time2, '==', $time,
"$desc (list) unpack_windows_time");
is($len2, 8, "$desc (list) unpack_windows_time length");
}
else {
ok(!defined($unpacked_time1),
"$desc (scalar) unpack_windows_time undefined");
ok(!defined($unpacked_time2),
"$desc (list) unpack_windows_time undefined");
}
is(iso8601($unpacked_time1), $time_as_string,
"$desc (scalar) unpack_windows_time iso8601");
}
# unpack_string tests
my @string_tests = (
["STR1", "", '', 0], # no data
["STR2", "\0", '', 1],
["STR3", "\0\0", '', 1], # extra byte
["STR4", "abcde", 'abcde', 5], # no final null
["STR5", "abcde\0", 'abcde', 6],
["STR6", "abcde\0\0", 'abcde', 6], # extra byte
);
foreach my $string_test (@string_tests) {
my ($desc, $data, $str, $len) = @$string_test;
my $unpacked_str1 = unpack_string($data);
my ($unpacked_str2, $len2) = unpack_string($data);
if (defined($str)) {
is($unpacked_str1, $str, "$desc (scalar) unpack_string");
is($unpacked_str2, $str, "$desc (list) unpack_string");
is($len2, $len, "$desc (list) unpack_string length");
}
else {
ok(!defined($unpacked_str1),
"$desc (scalar) unpack_string undefined (invalid string)");
ok(!defined($unpacked_str2),
"$desc (list) unpack_string undefined (invalid string)");
}
}
# unpack_unicode_string tests
my @unicode_tests = (
["UNI1", "", '', 0], # no data
["UNI2", "\0", '', 0], # missing byte
["UNI3", "\0\0", '', 2],
["UNI4", "\0\0\0", '', 2], # extra byte
["UNI5", "\0\0\0\0", '', 2], # two extra bytes
["UNI6", "a\0b\0c\0d\0e", 'abcd', 8], # missing byte
["UNI7", "a\0b\0c\0d\0e\0", 'abcde', 10], # no final null
["UNI8", "a\0b\0c\0d\0e\0\0", 'abcde', 10], # missing byte
["UNI9", "a\0b\0c\0d\0e\0\0\0", 'abcde', 12],
["UNI10", "a\0b\0c\0d\0e\0\0\0\0", 'abcde', 12], # extra byte
["UNI11", "a\0b\0c\0d\0e\0\0\0\0\0", 'abcde', 12], # two extra bytes
);
foreach my $unicode_test (@unicode_tests) {
my ($desc, $data, $str, $len) = @$unicode_test;
my $unpacked_str1 = unpack_unicode_string($data);
my ($unpacked_str2, $len2) = unpack_unicode_string($data);
if (defined($str)) {
is($unpacked_str1, $str,
"$desc (scalar) unpack_unicode_string");
is($unpacked_str2, $str,
"$desc (list) unpack_unicode_string");
is($len2, $len,
"$desc (list) unpack_unicode_string length");
}
else {
ok(!defined($unpacked_str1),
"$desc (scalar) unpack_unicode_string undefined (invalid string)");
ok(!defined($unpacked_str2),
"$desc (list) unpack_unicode_string undefined (invalid string)");
}
}
# unpack_guid tests
my @guid_tests = (
[
"GUID1",
"\x00\x11\x22\x33\x44\x55\x66\x77\x88\x99\xAA\xBB\xCC\xDD\xEE\xFF",
"{33221100-5544-7766-8899-AABBCCDDEEFF}",
],
[
"GUID2",
"\xE0\x4F\xD0\x20\xEA\x3A\x69\x10\xA2\xD8\x08\x00\x2B\x30\x30\x9D",
"{20D04FE0-3AEA-1069-A2D8-08002B30309D}",
],
[
"GUID3", # too short
"\x00\x11\x22\x33\x44\x55\x66\x77\x88\x99\xAA\xBB\xCC\xDD\xEE",
undef,
],
[
"GUID4", # extra data
"\x00\x11\x22\x33\x44\x55\x66\x77\x88\x99\xAA\xBB\xCC\xDD\xEE\xFF\x00",
"{33221100-5544-7766-8899-AABBCCDDEEFF}",
],
);
sub check_guid {
my ($actual_guid, $expected_guid, $desc) = @_;
ok(defined($actual_guid), "$desc defined") or return;
is($actual_guid->as_string, $expected_guid, "$desc as_string");
}
foreach my $guid_test (@guid_tests) {
my ($desc, $data, $guid, $len) = @$guid_test;
my $unpacked_guid1 = unpack_guid($data);
my ($unpacked_guid2, $len2) = unpack_guid($data);
if (defined($guid)) {
check_guid($unpacked_guid1, $guid, "$desc (scalar) unpack_guid");
check_guid($unpacked_guid2, $guid, "$desc (list) unpack_guid");
is($len2, 16, "$desc (list) unpack_guid length");
}
else {
ok(!defined($unpacked_guid1),
"$desc (scalar) unpack_guid undefined (invalid guid)");
ok(!defined($unpacked_guid2),
"$desc (list) unpack_guid undefined (invalid guid)");
}
}
|