Re-instate all the warnings checks that don't work on Win32, but with
[p5sagit/p5-mst-13.2.git] / lib / CGI / t / upload.t
CommitLineData
0078014a 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
11my $test_file;
12if($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
22use strict;
23
24use Test::More 'no_plan';
25
26use 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
63my $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# Check that the file names retrieved by CGI are correct.
75#-----------------------------------------------------------------------------
76
77is( $q->param('does_not_exist_gif'), 'does_not_exist.gif', 'filename_2' );
78is( $q->param('100;100_gif') , '100;100.gif' , 'filename_3' );
79is( $q->param('300x300_gif') , '300x300.gif' , 'filename_4' );
80
81{
82 my $test = "multiple file names are handled right with same-named upload fields";
83 my @hello_names = $q->param('hello_world');
ebb7c588 84 is ($hello_names[0],'goodbye_world.txt',$test. "...first file");
85 is ($hello_names[1],'hello_world.txt',$test. "...second file");
0078014a 86}
87
88#-----------------------------------------------------------------------------
89# Now check that the upload method works.
90#-----------------------------------------------------------------------------
91
92ok( defined $q->upload('does_not_exist_gif'), 'upload_basic_2' );
93ok( defined $q->upload('100;100_gif') , 'upload_basic_3' );
94ok( defined $q->upload('300x300_gif') , 'upload_basic_4' );
95
96{
97 my $test = "file handles have expected length for multi-valued field. ";
98 my ($goodbye_fh,$hello_fh) = $q->upload('hello_world');
99
100 # Go to end of file;
101 seek($goodbye_fh,0,2);
102 # How long is the file?
103 is(tell($goodbye_fh), 15, "$test..first file");
104
105 # Go to end of file;
106 seek($hello_fh,0,2);
107 # How long is the file?
108 is(tell($hello_fh), 13, "$test..second file");
109
110}
111
112
113
114{
115 my $test = "300x300_gif has expected length";
116 my $fh1 = $q->upload('300x300_gif');
117 is(tell($fh1), 0, "First object: filehandle starts with position set at zero");
118
119 # Go to end of file;
120 seek($fh1,0,2);
121 # How long is the file?
122 is(tell($fh1), 1656, $test);
123}
124
125my $q2 = CGI->new;
126
127{
128 my $test = "Upload filehandles still work after calling CGI->new a second time";
129 $q->param('new','zoo');
130
131 is($q2->param('new'),undef,
132 "Reality Check: params set in one object instance don't appear in another instance");
133
134 my $fh2 = $q2->upload('300x300_gif');
135 is(tell($fh2), 0, "...so the state of a file handle shouldn't be carried to a new object instance, either.");
136 # Go to end of file;
137 seek($fh2,0,2);
138 # How long is the file?
139 is(tell($fh2), 1656, $test);
140}
141
142{
143 my $test = "multi-valued uploads are reset properly";
144 my ($dont_care, $hello_fh2) = $q2->upload('hello_world');
145 is(tell($hello_fh2), 0, $test);
146}
147
148# vim: nospell