Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
1ef19f0d
Kaydet (Commit)
1ef19f0d
authored
Tem 27, 2008
tarafından
Skip Montanaro
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Close issue 3437 - missing state change when Allow lines are processed.
Adds test cases which use Allow: as well.
üst
4b99e9b4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
74 additions
and
0 deletions
+74
-0
robotparser.py
Lib/robotparser.py
+5
-0
test_robotparser.py
Lib/test/test_robotparser.py
+69
-0
No files found.
Lib/robotparser.py
Dosyayı görüntüle @
1ef19f0d
...
@@ -76,6 +76,10 @@ class RobotFileParser:
...
@@ -76,6 +76,10 @@ class RobotFileParser:
"""parse the input lines from a robots.txt file.
"""parse the input lines from a robots.txt file.
We allow that a user-agent: line is not preceded by
We allow that a user-agent: line is not preceded by
one or more blank lines."""
one or more blank lines."""
# states:
# 0: start state
# 1: saw user-agent line
# 2: saw an allow or disallow line
state
=
0
state
=
0
linenumber
=
0
linenumber
=
0
entry
=
Entry
()
entry
=
Entry
()
...
@@ -114,6 +118,7 @@ class RobotFileParser:
...
@@ -114,6 +118,7 @@ class RobotFileParser:
elif
line
[
0
]
==
"allow"
:
elif
line
[
0
]
==
"allow"
:
if
state
!=
0
:
if
state
!=
0
:
entry
.
rulelines
.
append
(
RuleLine
(
line
[
1
],
True
))
entry
.
rulelines
.
append
(
RuleLine
(
line
[
1
],
True
))
state
=
2
if
state
==
2
:
if
state
==
2
:
self
.
entries
.
append
(
entry
)
self
.
entries
.
append
(
entry
)
...
...
Lib/test/test_robotparser.py
Dosyayı görüntüle @
1ef19f0d
...
@@ -134,6 +134,75 @@ bad = [] # Bug report says "/" should be denied, but that is not in the RFC
...
@@ -134,6 +134,75 @@ bad = [] # Bug report says "/" should be denied, but that is not in the RFC
RobotTest
(
7
,
doc
,
good
,
bad
)
RobotTest
(
7
,
doc
,
good
,
bad
)
# From Google: http://www.google.com/support/webmasters/bin/answer.py?hl=en&answer=40364
# 8.
doc
=
"""
User-agent: Googlebot
Allow: /folder1/myfile.html
Disallow: /folder1/
"""
good
=
[
'/folder1/myfile.html'
]
bad
=
[
'/folder1/anotherfile.html'
]
RobotTest
(
8
,
doc
,
good
,
bad
,
agent
=
"Googlebot"
)
# 9. This file is incorrect because "Googlebot" is a substring of
# "Googlebot-Mobile", so test 10 works just like test 9.
doc
=
"""
User-agent: Googlebot
Disallow: /
User-agent: Googlebot-Mobile
Allow: /
"""
good
=
[]
bad
=
[
'/something.jpg'
]
RobotTest
(
9
,
doc
,
good
,
bad
,
agent
=
"Googlebot"
)
good
=
[]
bad
=
[
'/something.jpg'
]
RobotTest
(
10
,
doc
,
good
,
bad
,
agent
=
"Googlebot-Mobile"
)
# 11. Get the order correct.
doc
=
"""
User-agent: Googlebot-Mobile
Allow: /
User-agent: Googlebot
Disallow: /
"""
good
=
[]
bad
=
[
'/something.jpg'
]
RobotTest
(
11
,
doc
,
good
,
bad
,
agent
=
"Googlebot"
)
good
=
[
'/something.jpg'
]
bad
=
[]
RobotTest
(
12
,
doc
,
good
,
bad
,
agent
=
"Googlebot-Mobile"
)
# 13. Google also got the order wrong in #8. You need to specify the
# URLs from more specific to more general.
doc
=
"""
User-agent: Googlebot
Allow: /folder1/myfile.html
Disallow: /folder1/
"""
good
=
[
'/folder1/myfile.html'
]
bad
=
[
'/folder1/anotherfile.html'
]
RobotTest
(
13
,
doc
,
good
,
bad
,
agent
=
"googlebot"
)
class
TestCase
(
unittest
.
TestCase
):
class
TestCase
(
unittest
.
TestCase
):
def
runTest
(
self
):
def
runTest
(
self
):
test_support
.
requires
(
'network'
)
test_support
.
requires
(
'network'
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment