#!/usr/bin/perl use strict; use warnings; use HTTPTest; ############################################################################### my $mainpage = < Main Page

Some text and a link to a second page.

EOF my $secondpage = < Second Page

Some text and a link to a third page.

EOF my $thirdpage = < Third Page

Some text and a link to a higher level page.

EOF my $fourthpage = < Fourth Page

This page is only linked by the higher level page. Therefore, it should not be downloaded.

EOF my $higherlevelpage = < Higher Level Page

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 fourth page.

EOF # code, msg, headers, content my %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:{{port}}/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