?? test-n-http-content-disposition.px
字號(hào):
#!/usr/bin/perl -wuse strict;use HTTPTest;###############################################################################my $dummyfile = <<EOF;Don't care.EOF# code, msg, headers, contentmy %urls = ( '/dummy.txt' => { code => "200", msg => "Dontcare", headers => { "Content-type" => "text/plain", "Last-Modified" => "Sat, 09 Oct 2004 08:30:00 GMT", "Content-Disposition" => "attachment; filename=\"filename.txt\"", }, content => $dummyfile },);my $cmdline = $WgetTest::WGETPATH . " -N http://localhost:8080/dummy.txt";my $expected_error_code = 0;my %expected_downloaded_files = ( 'filename.txt' => { content => $dummyfile, timestamp => 1097310600, # "Sat, 09 Oct 2004 08:30:00 GMT" });###############################################################################my $the_test = HTTPTest->new (name => "Test-N-HTTP-Content-Disposition", input => \%urls, cmdline => $cmdline, errcode => $expected_error_code, output => \%expected_downloaded_files);exit $the_test->run();# vim: et ts=4 sw=4
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -