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
f37592fd
Kaydet (Commit)
f37592fd
authored
Nis 02, 2010
tarafından
Florent Xicluna
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Backport some robotparser test and skip the test if the external resource is not available.
üst
d54e699c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
5 deletions
+18
-5
test_robotparser.py
Lib/test/test_robotparser.py
+18
-5
No files found.
Lib/test/test_robotparser.py
Dosyayı görüntüle @
f37592fd
...
...
@@ -203,19 +203,32 @@ RobotTest(13, doc, good, bad, agent="googlebot")
class
TestCase
(
unittest
.
TestCase
):
def
runTest
(
self
):
class
NetworkTestCase
(
unittest
.
TestCase
):
def
testPasswordProtectedSite
(
self
):
test_support
.
requires
(
'network'
)
#
whole site is password-protected.
#
XXX it depends on an external resource which could be unavailable
url
=
'http://mueblesmoraleda.com'
parser
=
robotparser
.
RobotFileParser
()
parser
.
set_url
(
url
)
parser
.
read
()
try
:
parser
.
read
()
except
IOError
:
self
.
skipTest
(
'
%
s is unavailable'
%
url
)
self
.
assertEqual
(
parser
.
can_fetch
(
"*"
,
url
+
"/robots.txt"
),
False
)
def
testPythonOrg
(
self
):
test_support
.
requires
(
'network'
)
parser
=
robotparser
.
RobotFileParser
(
"http://www.python.org/robots.txt"
)
parser
.
read
()
self
.
assertTrue
(
parser
.
can_fetch
(
"*"
,
"http://www.python.org/robots.txt"
))
def
test_main
():
test_support
.
run_unittest
(
tests
)
TestCase
()
.
run
(
)
test_support
.
run_unittest
(
NetworkTestCase
)
if
__name__
==
'__main__'
:
test_support
.
verbose
=
1
...
...
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