X-Git-Url: http://sjero.net/git/?p=wget;a=blobdiff_plain;f=tests%2FTest--start-pos.px;fp=tests%2FTest--start-pos.px;h=4962c820160902c50c268bf303ffbe715f0c6fac;hp=0000000000000000000000000000000000000000;hb=c9bc854938346430749285c95ba42d552d68d048;hpb=ed54c64ad20847b79bbbedc9bd53309464cde361 diff --git a/tests/Test--start-pos.px b/tests/Test--start-pos.px new file mode 100755 index 00000000..4962c820 --- /dev/null +++ b/tests/Test--start-pos.px @@ -0,0 +1,46 @@ +#!/usr/bin/env perl + +use strict; +use warnings; + +use HTTPTest; + + +############################################################################### + +my $dummyfile = "1234"; + +# code, msg, headers, content +my %urls = ( + '/dummy.txt' => { + code => "206", + msg => "Dontcare", + headers => { + "Content-Type" => "text/plain", + }, + content => $dummyfile + }, +); + +my $cmdline = $WgetTest::WGETPATH . " --start-pos=1 http://localhost:{{port}}/dummy.txt"; + +my $expected_error_code = 0; + +my %expected_downloaded_files = ( + 'dummy.txt' => { + content => substr($dummyfile, 1), + } +); + +############################################################################### + +my $the_test = HTTPTest->new (name => "Test--start-pos", + input => \%urls, + cmdline => $cmdline, + errcode => $expected_error_code, + output => \%expected_downloaded_files); +exit $the_test->run(); + +# vim: et ts=4 sw=4 + +