File: mirror.t

package info (click to toggle)
libwww-perl 5.36-1.1
  • links: PTS
  • area: main
  • in suites: slink
  • size: 848 kB
  • ctags: 400
  • sloc: perl: 6,366; makefile: 51; sh: 6
file content (34 lines) | stat: -rw-r--r-- 710 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#
# Test mirroring a file
#

require "net/config.pl";
require LWP::Protocol::http;
require LWP::UserAgent;
require HTTP::Status;

print "1..2\n";

my $ua = new LWP::UserAgent;    # create a useragent to test

my $url = "http://$net::httpserver/";
my $copy = "lwp-test-$$"; # downloaded copy

my $response = $ua->mirror($url, $copy);

if ($response->code == &HTTP::Status::RC_OK) {
    print "ok 1\n";
} else {
    print "not ok 1\n";
}

# OK, so now do it again, should get Not-Modified
$response = $ua->mirror($url, $copy);
if ($response->code == &HTTP::Status::RC_NOT_MODIFIED) {
    print "ok 2\n";
} else {
    print "nok ok 2\n";
}
unlink($copy);

$net::httpserver = $net::httpserver;  # avoid -w warning