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
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
|
BEGIN {
if( $ENV{PERL_CORE} ) {
chdir '../lib/Archive/Tar' if -d '../lib/Archive/Tar';
}
use lib '../../..';
}
BEGIN { chdir 't' if -d 't' }
use Test::More 'no_plan';
use strict;
use lib '../lib';
use Cwd;
use Config;
use IO::File;
use File::Copy;
use File::Path;
use File::Spec ();
use File::Spec::Unix ();
use File::Basename ();
use Data::Dumper;
use Archive::Tar;
use Archive::Tar::Constant;
### XXX TODO:
### * change to fullname
### * add tests for global variables
### set up the environment ###
my @EXPECT_NORMAL = (
### dirs filename contents
[ [], 'c', qr/^iiiiiiiiiiii\s*$/ ],
[ [], 'd', qr/^uuuuuuuu\s*$/ ],
);
### includes binary data
my $ALL_CHARS = join '', "\r\n", map( chr, 1..255 ), "zzz\n\r";
### @EXPECTBIN is used to ensure that $tarbin is written in the right
### order and that the contents and order match exactly when extracted
my @EXPECTBIN = (
### dirs filename contents ###
[ [], 'bIn11', $ALL_CHARS x 11 ],
[ [], 'bIn3', $ALL_CHARS x 3 ],
[ [], 'bIn4', $ALL_CHARS x 4 ],
[ [], 'bIn1', $ALL_CHARS ],
[ [], 'bIn2', $ALL_CHARS x 2 ],
);
### @EXPECTX is used to ensure that $tarx is written in the right
### order and that the contents and order match exactly when extracted
### the 'x/x' extraction used to fail before A::T 1.08
my @EXPECTX = (
### dirs filename contents
[ [ 'x' ], 'k', '', ],
[ [ 'x' ], 'x', 'j', ], # failed before A::T 1.08
);
my $LONG_FILE = qq[directory/really-really-really-really-really-really-really-really-really-really-really-really-really-really-really-really-really-really-really-really-really-really-really-really-really-really-really-really-long-directory-name/myfile];
### wintendo can't deal with too long paths, so we might have to skip tests ###
my $TOO_LONG = ($^O eq 'MSWin32' or $^O eq 'cygwin' or $^O eq 'VMS')
&& length( cwd(). $LONG_FILE ) > 247;
### warn if we are going to skip long file names
$TOO_LONG ? diag("No long filename support - long filename extraction disabled")
: ( push @EXPECT_NORMAL, [ [], $LONG_FILE, qr/^hello\s*$/] ) ;
my @ROOT = grep { length } 'src', $TOO_LONG ? 'short' : 'long';
my $ZLIB = eval { require IO::Zlib; 1 } ? 1 : 0;
my $NO_UNLINK = $ARGV[0] ? 1 : 0;
### enable debugging?
$Archive::Tar::DEBUG = 1 if $ARGV[1];
### tests for binary and x/x files
my $TARBIN = Archive::Tar->new;
my $TARX = Archive::Tar->new;
### paths to a .tar and .tgz file to use for tests
my $TAR_FILE = File::Spec->catfile( @ROOT, 'bar.tar' );
my $TGZ_FILE = File::Spec->catfile( @ROOT, 'foo.tgz' );
my $OUT_TAR_FILE = File::Spec->catfile( @ROOT, 'out.tar' );
my $OUT_TGZ_FILE = File::Spec->catfile( @ROOT, 'out.tgz' );
my $COMPRESS_FILE = 'copy';
$^O eq 'VMS' and $COMPRESS_FILE .= '.';
copy( File::Basename::basename($0), $COMPRESS_FILE );
chmod 0644, $COMPRESS_FILE;
### done setting up environment ###
### did we probe IO::Zlib support ok? ###
{ is( Archive::Tar->can_handle_compressed_files, $ZLIB,
"Proper IO::Zlib support detected" );
}
### tar error tests
{ my $tar = Archive::Tar->new;
ok( $tar, "Object created" );
isa_ok( $tar, 'Archive::Tar');
local $Archive::Tar::WARN = 0;
### should be empty to begin with
is( $tar->error, '', "The error string is empty" );
### try a read on nothing
my @list = $tar->read();
ok(!(scalar @list), "Function read returns 0 files on error" );
ok( $tar->error, " error string is non empty" );
like( $tar->error, qr/No file to read from/,
" error string from create()" );
unlike( $tar->error, qr/add/, " error string does not contain add" );
### now, add empty data
my $obj = $tar->add_data( '' );
ok( !$obj, "'add_data' returns undef on error" );
ok( $tar->error, " error string is non empty" );
like( $tar->error, qr/add/, " error string contains add" );
unlike( $tar->error, qr/create/," error string does not contain create" );
### check if ->error eq $error
is( $tar->error, $Archive::Tar::error,
'$error matches error() method' );
}
### read tests ###
{ ### normal tar + gz compressed file
my $archive = $TAR_FILE;
my $compressed = $TGZ_FILE;
my $tar = Archive::Tar->new;
my $gzip = 0;
### check we got the object
ok( $tar, "Object created" );
isa_ok( $tar, 'Archive::Tar');
for my $type( $archive, $compressed ) {
my $state = $gzip ? 'compressed' : 'uncompressed';
SKIP: {
### skip gz compressed archives wihtout IO::Zlib
skip( "No IO::Zlib - cannot read compressed archives",
4 + 2 * (scalar @EXPECT_NORMAL)
) if( $gzip and !$ZLIB);
### ->read test
{ my @list = $tar->read( $type );
my $cnt = scalar @list;
my $expect = scalar __PACKAGE__->get_expect();
ok( $cnt, "Reading $state file using 'read()'" );
is( $cnt, $expect, " All files accounted for" );
for my $file ( @list ) {
ok( $file, "Got File object" );
isa_ok( $file, "Archive::Tar::File" );
### whitebox test -- make sure find_entry gets the
### right files
for my $test ( $file->full_path, $file ) {
is( $tar->_find_entry( $test ), $file,
" Found proper object" );
}
next unless $file->is_file;
my $name = $file->full_path;
my($expect_name, $expect_content) =
get_expect_name_and_contents( $name, \@EXPECT_NORMAL );
### ->fullname!
ok($expect_name," Found expected file '$name'" );
like($tar->get_content($name), $expect_content,
" Content OK" );
}
}
### list_archive test
{ my @list = Archive::Tar->list_archive( $archive );
my $cnt = scalar @list;
my $expect = scalar __PACKAGE__->get_expect();
ok( $cnt, "Reading $state file using 'list_archive'");
is( $cnt, $expect, " All files accounted for" );
for my $file ( @list ) {
next if __PACKAGE__->is_dir( $file ); # directories
my($expect_name, $expect_content) =
get_expect_name_and_contents( $file, \@EXPECT_NORMAL );
ok( $expect_name,
" Found expected file '$file'" );
}
}
}
### now we try gz compressed archives
$gzip++;
}
}
### add files tests ###
{ my @add = map { File::Spec->catfile( @ROOT, @$_ ) } ['b'];
my @addunix = map { File::Spec::Unix->catfile( @ROOT, @$_ ) } ['b'];
my $tar = Archive::Tar->new;
### check we got the object
ok( $tar, "Object created" );
isa_ok( $tar, 'Archive::Tar');
### add the files
{ my @files = $tar->add_files( @add );
is( scalar @files, scalar @add,
"Adding files");
is( $files[0]->name, 'b', " Proper name" );
SKIP: {
skip( "You are building perl using symlinks", 1)
if ($ENV{PERL_CORE} and $Config{config_args} =~/Dmksymlinks/);
is( $files[0]->is_file, 1,
" Proper type" );
}
like( $files[0]->get_content, qr/^bbbbbbbbbbb\s*$/,
" Content OK" );
### check if we have then in our tar object
for my $file ( @addunix ) {
ok( $tar->contains_file($file),
" File found in archive" );
}
}
### check adding files doesn't conflict with a secondary archive
### old A::T bug, we should keep testing for it
{ my $tar2 = Archive::Tar->new;
my @added = $tar2->add_files( $COMPRESS_FILE );
my @count = $tar2->list_files;
is( scalar @added, 1, "Added files to secondary archive" );
is( scalar @added, scalar @count,
" Does not conflict with first archive" );
### check the adding of directories
my @add_dirs = File::Spec->catfile( @ROOT );
my @dirs = $tar2->add_files( @add_dirs );
is( scalar @dirs, scalar @add_dirs,
"Adding dirs");
ok( $dirs[0]->is_dir, " Proper type" );
}
}
### add data tests ###
{
{ ### standard data ###
my @to_add = ( 'a', 'aaaaa' );
my $tar = Archive::Tar->new;
### check we got the object
ok( $tar, "Object created" );
isa_ok( $tar, 'Archive::Tar');
### add a new file item as data
my $obj = $tar->add_data( @to_add );
ok( $obj, "Adding data" );
is( $obj->name, $to_add[0], " Proper name" );
is( $obj->is_file, 1, " Proper type" );
like( $obj->get_content, qr/^$to_add[1]\s*$/,
" Content OK" );
}
{ ### binary data +
### dir/file structure -- x/y always went ok, x/x used to extract
### in the wrong way -- this test catches that
for my $list ( [$TARBIN, \@EXPECTBIN],
[$TARX, \@EXPECTX],
) {
### XXX GLOBAL! changes may affect other tests!
my($tar,$struct) = @$list;
for my $aref ( @$struct ) {
my ($dirs,$file,$data) = @$aref;
my $path = File::Spec::Unix->catfile(
grep { length } @$dirs, $file );
my $obj = $tar->add_data( $path, $data );
ok( $obj, "Adding data '$file'" );
is( $obj->full_path, $path,
" Proper name" );
ok( $obj->is_file, " Proper type" );
is( $obj->get_content, $data,
" Content OK" );
}
}
}
}
### rename/replace_content tests ###
{ my $tar = Archive::Tar->new;
my $from = 'c';
my $to = 'e';
### read in the file, check the proper files are there
ok( $tar->read( $TAR_FILE ), "Read in '$TAR_FILE'" );
ok( $tar->get_files($from), " Found file '$from'" );
{ local $Archive::Tar::WARN = 0;
ok(!$tar->get_files($to), " File '$to' not yet found" );
}
### rename an entry, check the rename has happened
ok( $tar->rename( $from, $to ), " Renamed '$from' to '$to'" );
ok( $tar->get_files($to), " File '$to' now found" );
{ local $Archive::Tar::WARN = 0;
ok(!$tar->get_files($from), " File '$from' no longer found'");
}
### now, replace the content
my($expect_name, $expect_content) =
get_expect_name_and_contents( $from, \@EXPECT_NORMAL );
like( $tar->get_content($to), $expect_content,
"Original content of '$from' in '$to'" );
ok( $tar->replace_content( $to, $from ),
" Set content for '$to' to '$from'" );
is( $tar->get_content($to), $from,
" Content for '$to' is indeed '$from'" );
}
### remove tests ###
{ my $remove = 'c';
my $tar = Archive::Tar->new;
ok( $tar->read( $TAR_FILE ), "Read in '$TAR_FILE'" );
### remove returns the files left, which should be equal to list_files
is( scalar($tar->remove($remove)), scalar($tar->list_files),
"Removing file '$remove'" );
### so what's left should be all expected files minus 1
is( scalar($tar->list_files), scalar(__PACKAGE__->get_expect) - 1,
" Proper files remaining" );
}
### write + read + extract tests ###
SKIP: {
skip('no IO::String', 326) if !$Archive::Tar::HAS_PERLIO &&
!$Archive::Tar::HAS_IO_STRING;
my $tar = Archive::Tar->new;
my $new = Archive::Tar->new;
ok( $tar->read( $TAR_FILE ), "Read in '$TAR_FILE'" );
for my $aref ( [$tar, \@EXPECT_NORMAL],
[$TARBIN, \@EXPECTBIN],
[$TARX, \@EXPECTX]
) {
my($obj,$struct) = @$aref;
### check if we stringify it ok
{ my $string = $obj->write;
ok( $string, "Stringified tar file has size" );
cmp_ok( length($string) % BLOCK, '==', 0,
"Tar archive stringified" );
}
### write tar tests
{ my $out = $OUT_TAR_FILE;
{ ### write()
ok( $obj->write($out),
"Wrote tarfile using 'write'" );
check_tar_file( $out );
check_tar_object( $obj, $struct );
### now read it in again
ok( $new->read( $out ),
"Read '$out' in again" );
check_tar_object( $new, $struct );
### now extract it again
ok( $new->extract, "Extracted '$out' with 'extract'" );
check_tar_extract( $new, $struct );
rm( $out ) unless $NO_UNLINK;
}
{ ### create_archive()
ok( Archive::Tar->create_archive( $out, 0, $COMPRESS_FILE ),
"Wrote tarfile using 'create_archive'" );
check_tar_file( $out );
### now extract it again
ok( Archive::Tar->extract_archive( $out ),
"Extracted file using 'extract_archive'");
rm( $out ) unless $NO_UNLINK;
}
}
## write tgz tests
{ my $out = $OUT_TGZ_FILE;
SKIP: {
### weird errors from scalar(@x,@y,@z), dot it this way...
my $file_cnt;
map { $file_cnt += scalar @$_ } \@EXPECT_NORMAL, \@EXPECTBIN,
\@EXPECTX;
my $cnt = 5 + # the tests below
(5*3*2) + # check_tgz_file
# check_tar_object fixed tests
(3 * 2 * (2 + $file_cnt)) +
((4*$file_cnt) + 1);# check_tar_extract tests
skip( "No IO::Zlib - cannot write compressed archives", $cnt )
unless $ZLIB;
{ ### write()
ok($obj->write($out, 1),
"Writing compressed file using 'write'" );
check_tgz_file( $out );
check_tar_object( $obj, $struct );
### now read it in again
ok( $new->read( $out ),
"Read '$out' in again" );
check_tar_object( $new, $struct );
### now extract it again
ok( $new->extract,
"Extracted '$out' again" );
check_tar_extract( $new, $struct );
rm( $out ) unless $NO_UNLINK;
}
{ ### create_archive()
ok( Archive::Tar->create_archive( $out, 1, $COMPRESS_FILE ),
"Wrote gzip file using 'create_archive'" );
check_tgz_file( $out );
### now extract it again
ok( Archive::Tar->extract_archive( $out, 1 ),
"Extracted file using 'extract_archive'");
rm( $out ) unless $NO_UNLINK;
}
}
}
}
}
### limited read + extract tests ###
{ my $tar = Archive::Tar->new;
my @files = $tar->read( $TAR_FILE, 0, { limit => 1 } );
my $obj = $files[0];
is( scalar @files, 1, "Limited read" );
my ($name,$content) = get_expect_name_and_contents(
$obj->full_path, \@EXPECT_NORMAL );
is( $obj->name, $name, " Expected file found" );
### extract this single file to cwd()
for my $meth (qw[extract extract_file]) {
### extract it by full path and object
for my $arg ( $obj, $obj->full_path ) {
ok( $tar->$meth( $arg ),
"Extracted '$name' to cwd() with $meth" );
ok( -e $obj->full_path, " Extracted file exists" );
rm( $obj->full_path ) unless $NO_UNLINK;
}
}
### extract this file to @ROOT
### can only do that with 'extract_file', not with 'extract'
for my $meth (qw[extract_file]) {
my $outpath = File::Spec->catdir( @ROOT );
my $outfile = File::Spec->catfile( $outpath, $$ ); #$obj->full_path );
ok( $tar->$meth( $obj->full_path, $outfile ),
"Extracted file '$name' to $outpath with $meth" );
ok( -e $outfile, " Extracted file '$outfile' exists" );
rm( $outfile ) unless $NO_UNLINK;
}
}
### clear tests ###
{ my $tar = Archive::Tar->new;
my @files = $tar->read( $TAR_FILE );
my $cnt = $tar->list_files();
ok( $cnt, "Found old data" );
ok( $tar->clear, " Clearing old data" );
my $new_cnt = $tar->list_files;
ok( !$new_cnt, " Old data cleared" );
}
### $DO_NOT_USE_PREFIX tests
{ my $tar = Archive::Tar->new;
### first write a tar file without prefix
{ my ($obj) = $tar->add_files( $COMPRESS_FILE );
my $dir = ''; # dir is empty!
my $file = File::Basename::basename( $COMPRESS_FILE );
ok( $obj, "File added" );
isa_ok( $obj, "Archive::Tar::File" );
### internal storage ###
is( $obj->name, $file, " Name set to '$file'" );
is( $obj->prefix, $dir, " Prefix set to '$dir'" );
### write the tar file without a prefix in it
local $Archive::Tar::DO_NOT_USE_PREFIX = 1;
ok( $tar->write( $OUT_TAR_FILE ),
" Tar file written" );
### and forget all about it...
$tar->clear;
}
### now read it back in, there should be no prefix
{ ok( $tar->read( $OUT_TAR_FILE ),
"Tar file read in again" );
my ($obj) = $tar->get_files;
ok( $obj, " File retrieved" );
isa_ok( $obj, "Archive::Tar::File" );
is( $obj->name, $COMPRESS_FILE,
" Name now set to '$COMPRESS_FILE'" );
is( $obj->prefix, '', " Prefix now empty" );
my $re = quotemeta $COMPRESS_FILE;
like( $obj->raw, qr/^$re/, " Prefix + name in name slot of header" );
}
rm( $OUT_TAR_FILE ) unless $NO_UNLINK;
}
### clean up stuff
END {
for my $struct ( \@EXPECT_NORMAL, \@EXPECTBIN, \@EXPECTX ) {
for my $aref (@$struct) {
my $dir = $aref->[0]->[0];
rmtree $dir if $dir && -d $dir && not $NO_UNLINK;
}
}
my ($dir) = File::Spec::Unix->splitdir( $LONG_FILE );
rmtree $dir if $dir && -d $dir && not $NO_UNLINK;
1 while unlink $COMPRESS_FILE;
}
###########################
### helper subs ###
###########################
sub get_expect {
return map {
split '/', $_
} map {
File::Spec::Unix->catfile(
grep { defined } @{$_->[0]}, $_->[1]
)
} @EXPECT_NORMAL;
}
sub is_dir {
my $file = pop();
return $file =~ m|/$| ? 1 : 0;
}
sub rm {
my $x = shift;
if ( is_dir($x) ) {
rmtree($x);
} else {
1 while unlink $x;
}
}
sub check_tar_file {
my $file = shift;
my $filesize = -s $file;
my $contents = slurp_binfile( $file );
ok( defined( $contents ), " File read" );
ok( $filesize, " File written size=$filesize" );
cmp_ok( $filesize % BLOCK, '==', 0,
" File size is a multiple of 512" );
cmp_ok( length($contents), '==', $filesize,
" File contents match size" );
is( TAR_END x 2, substr( $contents, -(BLOCK*2) ),
" Ends with 1024 null bytes" );
return $contents;
}
sub check_tgz_file {
my $file = shift;
my $filesize = -s $file;
my $contents = slurp_gzfile( $file );
my $uncompressedsize = length $contents;
ok( defined( $contents ), " File read and uncompressed" );
ok( $filesize, " File written size=$filesize uncompressed size=$uncompressedsize" );
cmp_ok( $uncompressedsize % BLOCK, '==', 0,
" Uncompressed size is a multiple of 512" );
is( TAR_END x 2, substr($contents, -(BLOCK*2)),
" Ends with 1024 null bytes" );
cmp_ok( $filesize, '<', $uncompressedsize,
" Compressed size < uncompressed size" );
return $contents;
}
sub check_tar_object {
my $obj = shift;
my $struct = shift or return;
### amount of files (not dirs!) there should be in the object
my $expect = scalar @$struct;
my @files = grep { $_->is_file } $obj->get_files;
### count how many files there are in the object
ok( scalar @files, " Found some files in the archive" );
is( scalar @files, $expect, " Found expected number of files" );
for my $file (@files) {
### XXX ->fullname
#my $path = File::Spec::Unix->catfile(
# grep { length } $file->prefix, $file->name );
my($ename,$econtent) =
get_expect_name_and_contents( $file->full_path, $struct );
ok( $file->is_file, " It is a file" );
is( $file->full_path, $ename,
" Name matches expected name" );
like( $file->get_content, $econtent,
" Content as expected" );
}
}
sub check_tar_extract {
my $tar = shift;
my $struct = shift;
my @dirs;
for my $file ($tar->get_files) {
push @dirs, $file && next if $file->is_dir;
my $path = $file->full_path;
my($ename,$econtent) =
get_expect_name_and_contents( $path, $struct );
is( $ename, $path, " Expected file found" );
ok( -e $path, " File '$path' exists" );
my $fh;
open $fh, "$path" or warn "Error opening file '$path': $!\n";
binmode $fh;
ok( $fh, " Opening file" );
my $content = do{local $/;<$fh>}; chomp $content;
like( $content, qr/$econtent/,
" Contents OK" );
close $fh;
$NO_UNLINK or 1 while unlink $path;
### alternate extract path tests
### to abs and rel paths
{ for my $outpath ( File::Spec->catdir( @ROOT ),
File::Spec->rel2abs(
File::Spec->catdir( @ROOT )
)
) {
my $outfile = File::Spec->catfile( $outpath, $$ );
ok( $tar->extract_file( $file->full_path, $outfile ),
" Extracted file '$path' to $outfile" );
ok( -e $outfile," Extracted file '$outfile' exists" );
rm( $outfile ) unless $NO_UNLINK;
}
}
}
### now check if list_files is returning the same info as get_files
is_deeply( [$tar->list_files], [ map { $_->full_path } $tar->get_files],
" Verified via list_files as well" );
#do { rmtree $_->full_path if -d $_->full_path && not $NO_UNLINK }
# for @dirs;
}
sub slurp_binfile {
my $file = shift;
my $fh = IO::File->new;
$fh->open( $file ) or warn( "Error opening '$file': $!" ), return undef;
binmode $fh;
local $/;
return <$fh>;
}
sub slurp_gzfile {
my $file = shift;
my $str;
my $buff;
require IO::Zlib;
my $fh = new IO::Zlib;
$fh->open( $file, READ_ONLY->(1) )
or warn( "Error opening '$file' with IO::Zlib" ), return undef;
$str .= $buff while $fh->read( $buff, 4096 ) > 0;
$fh->close();
return $str;
}
sub get_expect_name_and_contents {
my $find = shift;
my $struct = shift or return;
### find the proper name + contents for this file from
### the expect structure
my ($name, $content) =
map {
@$_;
} grep {
$_->[0] eq $find
} map {
[ ### full path ###
File::Spec::Unix->catfile(
grep { length } @{$_->[0]}, $_->[1]
),
### regex
$_->[2],
]
} @$struct;
### not a qr// yet?
unless( ref $content ) {
my $x = quotemeta ($content || '');
$content = qr/$x/;
}
unless( $name ) {
warn "Could not find '$find' in " . Dumper $struct;
}
return ($name, $content);
}
__END__
|