]> sjero.net Git - wget/blob - tests/Test-N-HTTP-Content-Disposition.px
Updated config.guess, config.sub, install.sh.
[wget] / tests / Test-N-HTTP-Content-Disposition.px
1 #!/usr/bin/perl
2
3 use strict;
4 use warnings;
5
6 use HTTPTest;
7
8
9 ###############################################################################
10
11 my $dummyfile = <<EOF;
12 Don't care.
13 EOF
14
15 # code, msg, headers, content
16 my %urls = (
17     '/dummy.txt' => {
18         code => "200",
19         msg => "Dontcare",
20         headers => {
21             "Content-type" => "text/plain",
22             "Last-Modified" => "Sat, 09 Oct 2004 08:30:00 GMT",
23             "Content-Disposition" => "attachment; filename=\"filename.txt\"",
24         },
25         content => $dummyfile
26     },
27 );
28
29 my $cmdline = $WgetTest::WGETPATH . " -N --content-disposition "
30               . "http://localhost:{{port}}/dummy.txt";
31
32 my $expected_error_code = 0;
33
34 my %expected_downloaded_files = (
35     'filename.txt' => {
36         content => $dummyfile,
37         timestamp => 1097310600, # "Sat, 09 Oct 2004 08:30:00 GMT"
38     }
39 );
40
41 ###############################################################################
42
43 my $the_test = HTTPTest->new (name => "Test-N-HTTP-Content-Disposition",
44                               input => \%urls, 
45                               cmdline => $cmdline, 
46                               errcode => $expected_error_code, 
47                               output => \%expected_downloaded_files);
48 exit $the_test->run();
49
50 # vim: et ts=4 sw=4
51