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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
#!/usr/bin/env perl
use strict;
use warnings;
use HTTPTest;
###############################################################################
my $page1 = "Hello, world!\n";
my $page2 = "Goodbye, Sam.\n";
my $page3 = "Page three.\n";
my $page4 = "Page four.\n";
my $page5 = "Page five.\n";
my $page6 = "Page six.\n";
# code, msg, headers, content
my %urls = (
'/one.txt' => {
code => "200",
msg => "Ok",
headers => {
"Content-type" => "text/plain",
"Set-Cookie" => "foo=bar",
},
content => $page1,
},
'/two.txt' => {
code => "200",
msg => "Ok",
content => $page2,
request_headers => {
"Cookie" => qr|foo=bar|,
},
},
# remove the cookie 'foo'
'/three.txt' => {
code => "200",
msg => "Ok",
headers => {
"Content-type" => "text/plain",
"Set-Cookie" => "foo=; Expires=Sun, 06 Nov 1994 08:49:37 GMT",
},
content => $page3,
},
'/four.txt' => {
code => "200",
msg => "Ok",
content => $page4,
request_headers => {
"!Cookie" => qr|foo=|,
},
},
# try to set a cookie 'foo' with mismatching domain
# see RFC 6265 5.3.6: ignore the cookie if it doesn't domain-match
'/five.txt' => {
code => "200",
msg => "Ok",
headers => {
"Content-type" => "text/plain",
"Set-Cookie" => "foo=bar; domain=.example.com",
},
content => $page5,
},
'/six.txt' => {
code => "200",
msg => "Ok",
content => $page6,
request_headers => {
"!Cookie" => qr|foo=bar|,
},
},
);
my $cmdline = $WgetTest::WGETPATH . " http://localhost:{{port}}/one.txt"
. " http://localhost:{{port}}/two.txt" . " http://localhost:{{port}}/three.txt"
. " http://localhost:{{port}}/four.txt" . " http://localhost:{{port}}/five.txt"
. " http://localhost:{{port}}/six.txt";
my $expected_error_code = 0;
my %expected_downloaded_files = (
'one.txt' => {
content => $page1,
},
'two.txt' => {
content => $page2,
},
'three.txt' => {
content => $page3,
},
'four.txt' => {
content => $page4,
},
'five.txt' => {
content => $page5,
},
'six.txt' => {
content => $page6,
},
);
###############################################################################
my $the_test = HTTPTest->new (input => \%urls,
cmdline => $cmdline,
errcode => $expected_error_code,
output => \%expected_downloaded_files);
exit $the_test->run();
# vim: et ts=4 sw=4
|