diff options
author | Anas Nashif <anas.nashif@intel.com> | 2012-12-20 20:15:32 -0800 |
---|---|---|
committer | Anas Nashif <anas.nashif@intel.com> | 2012-12-20 20:15:32 -0800 |
commit | 81f1c64e30d2ea59604a628bca9f1d04b1f82afb (patch) | |
tree | 24fef6ba91ee63db41bbf6940dd2e8bdc348ac89 /tests/Test-O--no-content-disposition-trivial.px | |
download | wget-81f1c64e30d2ea59604a628bca9f1d04b1f82afb.tar.gz wget-81f1c64e30d2ea59604a628bca9f1d04b1f82afb.tar.bz2 wget-81f1c64e30d2ea59604a628bca9f1d04b1f82afb.zip |
Imported Upstream version 1.13.4upstream/1.13.4
Diffstat (limited to 'tests/Test-O--no-content-disposition-trivial.px')
-rwxr-xr-x | tests/Test-O--no-content-disposition-trivial.px | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/tests/Test-O--no-content-disposition-trivial.px b/tests/Test-O--no-content-disposition-trivial.px new file mode 100755 index 0000000..a5b264b --- /dev/null +++ b/tests/Test-O--no-content-disposition-trivial.px @@ -0,0 +1,47 @@ +#!/usr/bin/env perl + +use strict; +use warnings; + +use HTTPTest; + + +############################################################################### + +my $dummyfile = <<EOF; +Don't care. +EOF + +# code, msg, headers, content +my %urls = ( + '/dummy.txt' => { + code => "200", + msg => "Dontcare", + headers => { + "Content-type" => "text/plain", + }, + content => $dummyfile + }, +); + +my $cmdline = $WgetTest::WGETPATH . " -O out --no-content-disposition http://localhost:{{port}}/dummy.txt"; + +my $expected_error_code = 0; + +my %expected_downloaded_files = ( + 'out' => { + content => $dummyfile, + } +); + +############################################################################### + +my $the_test = HTTPTest->new (name => "Test-O--no-content-disposition-trivial", + input => \%urls, + cmdline => $cmdline, + errcode => $expected_error_code, + output => \%expected_downloaded_files); +exit $the_test->run(); + +# vim: et ts=4 sw=4 + |