Added cleanup flag to auto-delete temp files
[catagits/HTTP-Body.git] / t / 04multipart.t
CommitLineData
a9df1200 1#!perl
2
3use strict;
4use warnings;
5
b1da105b 6use Test::More tests => 140;
7use Test::Deep;
a9df1200 8
9use Cwd;
10use HTTP::Body;
11use File::Spec::Functions;
12use IO::File;
13use YAML;
3debb7c0 14use File::Temp qw/ tempdir /;
a9df1200 15
16my $path = catdir( getcwd(), 't', 'data', 'multipart' );
17
4f8ae3af 18for ( my $i = 1; $i <= 13; $i++ ) {
a9df1200 19
20 my $test = sprintf( "%.3d", $i );
21 my $headers = YAML::LoadFile( catfile( $path, "$test-headers.yml" ) );
22 my $results = YAML::LoadFile( catfile( $path, "$test-results.yml" ) );
23 my $content = IO::File->new( catfile( $path, "$test-content.dat" ) );
24 my $body = HTTP::Body->new( $headers->{'Content-Type'}, $headers->{'Content-Length'} );
3debb7c0 25 my $tempdir = tempdir( 'XXXXXXX', CLEANUP => 1, DIR => File::Spec->tmpdir() );
26 $body->tmpdir($tempdir);
27
28 my $regex_tempdir = quotemeta($tempdir);
a9df1200 29
30 binmode $content, ':raw';
31
32 while ( $content->read( my $buffer, 1024 ) ) {
33 $body->add($buffer);
34 }
35
b1da105b 36 # Tests >= 10 use auto-cleanup
37 if ( $i >= 10 ) {
38 $body->cleanup(1);
39 }
40
1ced50e0 41 # Save tempnames for later deletion
42 my @temps;
43
a9df1200 44 for my $field ( keys %{ $body->upload } ) {
45
46 my $value = $body->upload->{$field};
47
48 for ( ( ref($value) eq 'ARRAY' ) ? @{$value} : $value ) {
3debb7c0 49 like($_->{tempname}, qr{$regex_tempdir}, "has tmpdir $tempdir");
b1da105b 50 push @temps, $_->{tempname};
51 }
52
53 # Tell Test::Deep to ignore tempname values
54 if ( ref $value eq 'ARRAY' ) {
55 for ( @{ $results->{upload}->{$field} } ) {
56 $_->{tempname} = ignore();
57 }
58 }
59 else {
60 $results->{upload}->{$field}->{tempname} = ignore();
a9df1200 61 }
62 }
63
b1da105b 64 cmp_deeply( $body->body, $results->{body}, "$test MultiPart body" );
65 cmp_deeply( $body->param, $results->{param}, "$test MultiPart param" );
66 cmp_deeply( $body->upload, $results->{upload}, "$test MultiPart upload" )
4f8ae3af 67 if $results->{upload};
a9df1200 68 cmp_ok( $body->state, 'eq', 'done', "$test MultiPart state" );
0a66fd23 69 cmp_ok( $body->length, '==', $body->content_length, "$test MultiPart length" );
1ced50e0 70
b1da105b 71 if ( $i < 10 ) {
72 # Clean up temp files created
73 unlink map { $_ } grep { -e $_ } @temps;
74 }
75
76 undef $body;
77
78 # Ensure temp files were deleted
79 for my $temp ( @temps ) {
80 ok( !-e $temp, "Temp file $temp was deleted" );
81 }
82}