test-np.px
来自「一个从网络上自动下载文件的自由工具」· PX 代码 · 共 149 行
PX
149 行
#!/usr/bin/perl -wuse strict;use HTTPTest;###############################################################################my $mainpage = <<EOF;<html><head> <title>Main Page</title></head><body> <p> Some text and a link to a <a href="http://localhost:8080/firstlevel/secondpage.html">second page</a>. </p></body></html>EOFmy $secondpage = <<EOF;<html><head> <title>Second Page</title></head><body> <p> Some text and a link to a <a href="http://localhost:8080/firstlevel/lowerlevel/thirdpage.html">third page</a>. </p></body></html>EOFmy $thirdpage = <<EOF;<html><head> <title>Third Page</title></head><body> <p> Some text and a link to a <a href="http://localhost:8080/higherlevelpage.html">higher level page</a>. </p></body></html>EOFmy $fourthpage = <<EOF;<html><head> <title>Fourth Page</title></head><body> <p> This page is only linked by the higher level page. Therefore, it should not be downloaded. </p></body></html>EOFmy $higherlevelpage = <<EOF;<html><head> <title>Higher Level Page</title></head><body> <p> This page is on a higher level in the URL path hierarchy. Therefore, it should not be downloaded. Wget should not visit the following link to a <a href="http://localhost:8080/firstlevel/fourthpage.html">fourth page</a>. </p></body></html>EOF# code, msg, headers, contentmy %urls = ( '/firstlevel/index.html' => { code => "200", msg => "Dontcare", headers => { "Content-type" => "text/html", }, content => $mainpage, }, '/firstlevel/secondpage.html' => { code => "200", msg => "Dontcare", headers => { "Content-type" => "text/html", }, content => $secondpage, }, '/firstlevel/lowerlevel/thirdpage.html' => { code => "200", msg => "Dontcare", headers => { "Content-type" => "text/html", }, content => $thirdpage, }, '/firstlevel/fourthpage.html' => { code => "200", msg => "Dontcare", headers => { "Content-type" => "text/plain", }, content => $fourthpage, }, '/higherlevelpage.html' => { code => "200", msg => "Dontcare", headers => { "Content-type" => "text/plain", }, content => $higherlevelpage, },);my $cmdline = $WgetTest::WGETPATH . " -np -nH -r http://localhost:8080/firstlevel/";my $expected_error_code = 0;my %expected_downloaded_files = ( 'firstlevel/index.html' => { content => $mainpage, }, 'firstlevel/secondpage.html' => { content => $secondpage, }, 'firstlevel/lowerlevel/thirdpage.html' => { content => $thirdpage, },);###############################################################################my $the_test = HTTPTest->new (name => "Test-np", input => \%urls, cmdline => $cmdline, errcode => $expected_error_code, output => \%expected_downloaded_files);exit $the_test->run();# vim: et ts=4 sw=4
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?