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
c1e73c30
Kaydet (Commit)
c1e73c30
authored
13 years ago
tarafından
Ezio Melotti
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Make sure that the tolerant parser still parses valid HTML correctly.
üst
b9a48f71
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
17 deletions
+19
-17
test_htmlparser.py
Lib/test/test_htmlparser.py
+19
-17
No files found.
Lib/test/test_htmlparser.py
Dosyayı görüntüle @
c1e73c30
...
...
@@ -72,9 +72,12 @@ class EventCollectorExtra(EventCollector):
class
TestCaseBase
(
unittest
.
TestCase
):
def
get_collector
(
self
):
raise
NotImplementedError
def
_run_check
(
self
,
source
,
expected_events
,
collector
=
None
):
if
collector
is
None
:
collector
=
EventC
ollector
()
collector
=
self
.
get_c
ollector
()
parser
=
collector
for
s
in
source
:
parser
.
feed
(
s
)
...
...
@@ -96,7 +99,10 @@ class TestCaseBase(unittest.TestCase):
self
.
assertRaises
(
html
.
parser
.
HTMLParseError
,
parse
)
class
HTMLParserTestCase
(
TestCaseBase
):
class
HTMLParserStrictTestCase
(
TestCaseBase
):
def
get_collector
(
self
):
return
EventCollector
(
strict
=
True
)
def
test_processing_instruction_only
(
self
):
self
.
_run_check
(
"<?processing instruction>"
,
[
...
...
@@ -353,12 +359,11 @@ DOCTYPE html [
def
test_entityrefs_in_attributes
(
self
):
self
.
_run_check
(
"<html foo='€&aa&unsupported;'>"
,
[
(
"starttag"
,
"html"
,
[(
"foo"
,
"
\u20AC
&aa&unsupported;"
)])
])
self
.
_run_check
(
"<html foo='€&aa&unsupported;'>"
,
[(
"starttag"
,
"html"
,
[(
"foo"
,
"
\u20AC
&aa&unsupported;"
)])])
class
HTMLParserTolerantTestCase
(
TestCaseB
ase
):
class
HTMLParserTolerantTestCase
(
HTMLParserStrictTestC
ase
):
def
get_collector
(
self
):
return
EventCollector
(
strict
=
False
)
...
...
@@ -374,8 +379,7 @@ class HTMLParserTolerantTestCase(TestCaseBase):
(
'endtag'
,
'a'
),
(
'endtag'
,
'html'
),
(
'data'
,
'
\n
<img src="URL><//img></html'
),
(
'endtag'
,
'html'
)],
collector
=
self
.
get_collector
())
(
'endtag'
,
'html'
)])
def
test_with_unquoted_attributes
(
self
):
# see #12008
...
...
@@ -399,22 +403,19 @@ class HTMLParserTolerantTestCase(TestCaseBase):
(
'starttag'
,
'span'
,
[(
'class'
,
'en'
)]),
(
'data'
,
' library'
),
(
'endtag'
,
'span'
),
(
'endtag'
,
'a'
),
(
'endtag'
,
'table'
)
]
self
.
_run_check
(
html
,
expected
,
collector
=
self
.
get_collector
())
self
.
_run_check
(
html
,
expected
)
def
test_comma_between_attributes
(
self
):
self
.
_run_check
(
'<form action="/xxx.php?a=1&b=2&", '
'method="post">'
,
[
(
'starttag'
,
'form'
,
[(
'action'
,
'/xxx.php?a=1&b=2&'
),
(
'method'
,
'post'
)])],
collector
=
self
.
get_collector
())
(
'method'
,
'post'
)])])
def
test_weird_chars_in_unquoted_attribute_values
(
self
):
self
.
_run_check
(
'<form action=bogus|&#()value>'
,
[
(
'starttag'
,
'form'
,
[(
'action'
,
'bogus|&#()value'
)])],
collector
=
self
.
get_collector
())
[(
'action'
,
'bogus|&#()value'
)])])
def
test_correct_detection_of_start_tags
(
self
):
# see #13273
...
...
@@ -436,7 +437,7 @@ class HTMLParserTolerantTestCase(TestCaseBase):
(
'endtag'
,
'b'
),
(
'endtag'
,
'div'
)
]
self
.
_run_check
(
html
,
expected
,
collector
=
self
.
get_collector
()
)
self
.
_run_check
(
html
,
expected
)
html
=
'<div style="", foo = "bar" ><b>The <a href="some_url">rain</a>'
expected
=
[
...
...
@@ -447,7 +448,7 @@ class HTMLParserTolerantTestCase(TestCaseBase):
(
'data'
,
'rain'
),
(
'endtag'
,
'a'
),
]
self
.
_run_check
(
html
,
expected
,
collector
=
self
.
get_collector
()
)
self
.
_run_check
(
html
,
expected
)
def
test_unescape_function
(
self
):
p
=
html
.
parser
.
HTMLParser
()
...
...
@@ -456,8 +457,9 @@ class HTMLParserTolerantTestCase(TestCaseBase):
# see #12888
self
.
assertEqual
(
p
.
unescape
(
'{ '
*
1050
),
'{ '
*
1050
)
def
test_main
():
support
.
run_unittest
(
HTMLParserTestCase
,
HTMLParserTolerantTestCase
)
support
.
run_unittest
(
HTMLParser
Strict
TestCase
,
HTMLParserTolerantTestCase
)
if
__name__
==
"__main__"
:
...
...
This diff is collapsed.
Click to expand it.
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