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 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230
|
#!/local/bin/perl
=head1 NAME
robot-rules.t
=head1 DESCRIPTION
Test a number of different A</robots.txt> files against a number
of different User-agents.
=cut
require WWW::RobotRules;
use Carp;
use strict;
print "1..50\n"; # for Test::Harness
# We test a number of different /robots.txt files,
#
my $content1 = <<EOM;
# http://foo/robots.txt
User-agent: *
Disallow: /private
Disallow: http://foo/also_private
User-agent: MOMspider
Disallow:
EOM
my $content2 = <<EOM;
# http://foo/robots.txt
User-agent: MOMspider
# comment which should be ignored
Disallow: /private
EOM
my $content3 = <<EOM;
# http://foo/robots.txt
EOM
my $content4 = <<EOM;
# http://foo/robots.txt
User-agent: *
Disallow: /private
Disallow: mailto:foo
User-agent: MOMspider
Disallow: /this
User-agent: Another
Disallow: /that
User-agent: SvartEnke1
Disallow: http://fOO
Disallow: http://bar
User-Agent: SvartEnke2
Disallow: ftp://foo
Disallow: http://foo:8080/
Disallow: http://bar/
Sitemap: http://www.adobe.com/sitemap.xml
EOM
my $content5 = <<EOM;
# I've locked myself away
User-agent: *
Disallow: /
# The castle is your home now, so you can go anywhere you like.
User-agent: Belle
Disallow: /west-wing/ # except the west wing!
# It's good to be the Prince...
User-agent: Beast
Disallow:
EOM
# same thing backwards
my $content6 = <<EOM;
# It's good to be the Prince...
User-agent: Beast
Disallow:
# The castle is your home now, so you can go anywhere you like.
User-agent: Belle
Disallow: /west-wing/ # except the west wing!
# I've locked myself away
User-agent: *
Disallow: /
EOM
# and a number of different robots:
my @tests1 = (
[$content1, 'MOMspider' =>
1 => 'http://foo/private' => 1,
2 => 'http://foo/also_private' => 1,
],
[$content1, 'Wubble' =>
3 => 'http://foo/private' => 0,
4 => 'http://foo/also_private' => 0,
5 => 'http://foo/other' => 1,
],
[$content2, 'MOMspider' =>
6 => 'http://foo/private' => 0,
7 => 'http://foo/other' => 1,
],
[$content2, 'Wubble' =>
8 => 'http://foo/private' => 1,
9 => 'http://foo/also_private' => 1,
10 => 'http://foo/other' => 1,
],
[$content3, 'MOMspider' =>
11 => 'http://foo/private' => 1,
12 => 'http://foo/other' => 1,
],
[$content3, 'Wubble' =>
13 => 'http://foo/private' => 1,
14 => 'http://foo/other' => 1,
],
[$content4, 'MOMspider' =>
15 => 'http://foo/private' => 1,
16 => 'http://foo/this' => 0,
17 => 'http://foo/that' => 1,
],
[$content4, 'Another' =>
18 => 'http://foo/private' => 1,
19 => 'http://foo/this' => 1,
20 => 'http://foo/that' => 0,
],
[$content4, 'Wubble' =>
21 => 'http://foo/private' => 0,
22 => 'http://foo/this' => 1,
23 => 'http://foo/that' => 1,
],
[$content4, 'Another/1.0' =>
24 => 'http://foo/private' => 1,
25 => 'http://foo/this' => 1,
26 => 'http://foo/that' => 0,
],
[$content4, "SvartEnke1" =>
27 => "http://foo/" => 0,
28 => "http://foo/this" => 0,
29 => "http://bar/" => 1,
],
[$content4, "SvartEnke2" =>
30 => "http://foo/" => 1,
31 => "http://foo/this" => 1,
32 => "http://bar/" => 1,
],
[$content4, "MomSpiderJr" => # should match "MomSpider"
33 => 'http://foo/private' => 1,
34 => 'http://foo/also_private' => 1,
35 => 'http://foo/this/' => 0,
],
[$content4, "SvartEnk" => # should match "*"
36 => "http://foo/" => 1,
37 => "http://foo/private/" => 0,
38 => "http://bar/" => 1,
],
[$content5, 'Villager/1.0' =>
39 => 'http://foo/west-wing/' => 0,
40 => 'http://foo/' => 0,
],
[$content5, 'Belle/2.0' =>
41 => 'http://foo/west-wing/' => 0,
42 => 'http://foo/' => 1,
],
[$content5, 'Beast/3.0' =>
43 => 'http://foo/west-wing/' => 1,
44 => 'http://foo/' => 1,
],
[$content6, 'Villager/1.0' =>
45 => 'http://foo/west-wing/' => 0,
46 => 'http://foo/' => 0,
],
[$content6, 'Belle/2.0' =>
47 => 'http://foo/west-wing/' => 0,
48 => 'http://foo/' => 1,
],
[$content6, 'Beast/3.0' =>
49 => 'http://foo/west-wing/' => 1,
50 => 'http://foo/' => 1,
],
# when adding tests, remember to increase
# the maximum at the top
);
my $t;
for $t (@tests1) {
my ($content, $ua) = splice(@$t, 0, 2);
my $robotsrules = new WWW::RobotRules($ua);
$robotsrules->parse('http://foo/robots.txt', $content);
my ($num, $path, $expected);
while(($num, $path, $expected) = splice(@$t, 0, 3)) {
my $allowed = $robotsrules->allowed($path);
$allowed = 1 if $allowed;
if($allowed != $expected) {
$robotsrules->dump;
confess "Test Failed: $ua => $path ($allowed != $expected)";
}
print "ok $num\n";
}
}
|