Re-instate all the warnings checks that don't work on Win32, but with
[p5sagit/p5-mst-13.2.git] / lib / CGI / t / uploadInfo.t
1 #!/usr/local/bin/perl -w
2
3 #################################################################
4 #  Emanuele Zeppieri, Mark Stosberg                             #
5 #  Shamelessly stolen from Data::FormValidator and CGI::Upload  #
6 #################################################################
7
8 # Due to a bug in older versions of MakeMaker & Test::Harness, we must
9 # ensure the blib's are in @INC, else we might use the core CGI.pm
10
11 my $test_file;
12 if($ENV{PERL_CORE}) {
13    chdir 't';
14    @INC = '../lib';
15    use File::Spec ();
16    $test_file = File::Spec->catfile(qw(.. lib CGI t), "upload_post_text.txt");
17 } else {
18    use lib qw(. ./blib/lib ./blib/arch);
19    $test_file = "t/upload_post_text.txt";
20 }
21
22 use strict;
23
24 use Test::More 'no_plan';
25
26 use CGI;
27
28 #-----------------------------------------------------------------------------
29 # %ENV setup.
30 #-----------------------------------------------------------------------------
31
32 %ENV = (
33     %ENV,
34     'SCRIPT_NAME'       => '/test.cgi',
35     'SERVER_NAME'       => 'perl.org',
36     'HTTP_CONNECTION'   => 'TE, close',
37     'REQUEST_METHOD'    => 'POST',
38     'SCRIPT_URI'        => 'http://www.perl.org/test.cgi',
39     'CONTENT_LENGTH'    => 3285,
40     'SCRIPT_FILENAME'   => '/home/usr/test.cgi',
41     'SERVER_SOFTWARE'   => 'Apache/1.3.27 (Unix) ',
42     'HTTP_TE'           => 'deflate,gzip;q=0.3',
43     'QUERY_STRING'      => '',
44     'REMOTE_PORT'       => '1855',
45     'HTTP_USER_AGENT'   => 'Mozilla/5.0 (compatible; Konqueror/2.1.1; X11)',
46     'SERVER_PORT'       => '80',
47     'REMOTE_ADDR'       => '127.0.0.1',
48     'CONTENT_TYPE'      => 'multipart/form-data; boundary=xYzZY',
49     'SERVER_PROTOCOL'   => 'HTTP/1.1',
50     'PATH'              => '/usr/local/bin:/usr/bin:/bin',
51     'REQUEST_URI'       => '/test.cgi',
52     'GATEWAY_INTERFACE' => 'CGI/1.1',
53     'SCRIPT_URL'        => '/test.cgi',
54     'SERVER_ADDR'       => '127.0.0.1',
55     'DOCUMENT_ROOT'     => '/home/develop',
56     'HTTP_HOST'         => 'www.perl.org'
57 );
58
59 #-----------------------------------------------------------------------------
60 # Simulate the upload (really, multiple uploads contained in a single stream).
61 #-----------------------------------------------------------------------------
62
63 my $q;
64
65 {
66     local *STDIN;
67     open STDIN, "< $test_file"
68         or die 'missing test file t/upload_post_text.txt';
69     binmode STDIN;
70     $q = CGI->new;
71 }
72
73 {
74     my $test = "uploadInfo: basic test";
75     my $fh = $q->upload('300x300_gif');
76     is( $q->uploadInfo($fh)->{'Content-Type'}, "image/gif", $test);
77 }
78
79 my $q2 = CGI->new;
80
81 {
82     my $test = "uploadInfo: works with second object instance";
83     my $fh = $q2->upload('300x300_gif');
84     is( $q2->uploadInfo($fh)->{'Content-Type'}, "image/gif", $test);
85 }
86