Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
1fa56ad1
Commit
1fa56ad1
authored
Mar 19, 2001
by
Fred Drake
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
parent
8680ca94
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
280 additions
and
0 deletions
+280
-0
lib/python/TAL/test/test_htmlparser.py
lib/python/TAL/test/test_htmlparser.py
+140
-0
lib/python/TAL/tests/test_htmlparser.py
lib/python/TAL/tests/test_htmlparser.py
+140
-0
No files found.
lib/python/TAL/test/test_htmlparser.py
0 → 100755
View file @
1fa56ad1
"""Test suite for nsgmllib.py."""
import
sys
import
utils
import
unittest
from
TAL
import
HTMLParser
class
EventCollector
(
HTMLParser
.
HTMLParser
):
def
__init__
(
self
):
self
.
events
=
[]
self
.
append
=
self
.
events
.
append
HTMLParser
.
HTMLParser
.
__init__
(
self
)
def
get_events
(
self
):
# Normalize the list of events so that buffer artefacts don't
# separate runs of contiguous characters.
L
=
[]
prevtype
=
None
for
event
in
self
.
events
:
type
=
event
[
0
]
if
type
==
prevtype
==
"data"
:
L
[
-
1
]
=
(
"data"
,
L
[
-
1
][
1
]
+
event
[
1
])
else
:
L
.
append
(
event
)
prevtype
=
type
self
.
events
=
L
return
L
# structure markup
def
finish_starttag
(
self
,
tag
,
attrs
):
self
.
append
((
"starttag"
,
tag
,
attrs
))
def
finish_endtag
(
self
,
tag
):
self
.
append
((
"endtag"
,
tag
))
# all other markup
def
handle_charref
(
self
,
data
):
self
.
append
((
"charref"
,
data
))
def
handle_data
(
self
,
data
):
self
.
append
((
"data"
,
data
))
def
handle_decl
(
self
,
data
):
self
.
append
((
"decl"
,
data
))
def
handle_entityref
(
self
,
data
):
self
.
append
((
"entityref"
,
data
))
def
handle_pi
(
self
,
data
):
self
.
append
((
"pi"
,
data
))
class
HTMLParserTestCase
(
unittest
.
TestCase
):
def
_run_check
(
self
,
source
,
events
):
parser
=
EventCollector
()
parser
.
feed
(
source
)
parser
.
close
()
assert
parser
.
get_events
()
==
events
,
parser
.
get_events
()
def
check_processing_instruction_only
(
self
):
self
.
_run_check
(
"<?processing instruction>"
,
[
(
"pi"
,
"processing instruction"
),
])
def
check_simple_html
(
self
):
self
.
_run_check
(
"""
<!DOCTYPE html PUBLIC 'foo'>
<html>&entity; 
<img src='bar' ismap>sample
text
</html>
"""
,
[
(
"data"
,
"
\
n
"
),
(
"decl"
,
"DOCTYPE html PUBLIC 'foo'"
),
(
"data"
,
"
\
n
"
),
(
"starttag"
,
"html"
,
[]),
(
"entityref"
,
"entity"
),
(
"charref"
,
"32"
),
(
"data"
,
"
\
n
"
),
(
"starttag"
,
"img"
,
[(
"src"
,
"bar"
),
(
"ismap"
,
"ismap"
)]),
(
"data"
,
"sample
\
n
text
\
n
"
),
(
"endtag"
,
"html"
),
(
"data"
,
"
\
n
"
),
])
def
check_bad_nesting
(
self
):
self
.
_run_check
(
"<a><b></a></b>"
,
[
(
"starttag"
,
"a"
,
[]),
(
"starttag"
,
"b"
,
[]),
(
"endtag"
,
"a"
),
(
"endtag"
,
"b"
),
])
def
check_attr_syntax
(
self
):
output
=
[
(
"starttag"
,
"a"
,
[(
"b"
,
"v"
),
(
"c"
,
"v"
),
(
"d"
,
"v"
),
(
"e"
,
"e"
)])
]
self
.
_run_check
(
"""<a b='v' c="v" d=v e>"""
,
output
)
self
.
_run_check
(
"""<a b = 'v' c = "v" d = v e>"""
,
output
)
self
.
_run_check
(
"""<a
\
n
b
\
n
=
\
n
'v'
\
n
c
\
n
=
\
n
"v"
\
n
d
\
n
=
\
n
v
\
n
e>"""
,
output
)
self
.
_run_check
(
"""<a
\
t
b
\
t
=
\
t
'v'
\
t
c
\
t
=
\
t
"v"
\
t
d
\
t
=
\
t
v
\
t
e>"""
,
output
)
def
check_attr_values
(
self
):
self
.
_run_check
(
"""<a b='xxx
\
n
\
t
xxx' c="yyy
\
t
\
n
yyy" d='
\
t
xyz
\
n
'>"""
,
[(
"starttag"
,
"a"
,
[(
"b"
,
"xxx
\
n
\
t
xxx"
),
(
"c"
,
"yyy
\
t
\
n
yyy"
),
(
"d"
,
"
\
t
xyz
\
n
"
)])
])
self
.
_run_check
(
"""<a b='' c="" d=>"""
,
[
(
"starttag"
,
"a"
,
[(
"b"
,
""
),
(
"c"
,
""
),
(
"d"
,
""
)]),
])
def
check_attr_entity_replacement
(
self
):
# we expect entities *not* to be replaced by HTLMParser!
self
.
_run_check
(
"""<a b='&><"''>"""
,
[
(
"starttag"
,
"a"
,
[(
"b"
,
"&><
\
"
'"
)]),
])
def
check_attr_funky_names
(
self
):
self
.
_run_check
(
"""<a a.b='v' c:d=v e-f=v>"""
,
[
(
"starttag"
,
"a"
,
[(
"a.b"
,
"v"
),
(
"c:d"
,
"v"
),
(
"e-f"
,
"v"
)]),
])
# Support for the Zope regression test framework:
def
test_suite
():
suite
=
unittest
.
TestSuite
()
suite
.
addTest
(
unittest
.
makeSuite
(
HTMLParserTestCase
,
"check_"
))
return
suite
if
__name__
==
"__main__"
:
errs
=
utils
.
run_suite
(
test_suite
())
sys
.
exit
(
errs
and
1
or
0
)
lib/python/TAL/tests/test_htmlparser.py
0 → 100755
View file @
1fa56ad1
"""Test suite for nsgmllib.py."""
import
sys
import
utils
import
unittest
from
TAL
import
HTMLParser
class
EventCollector
(
HTMLParser
.
HTMLParser
):
def
__init__
(
self
):
self
.
events
=
[]
self
.
append
=
self
.
events
.
append
HTMLParser
.
HTMLParser
.
__init__
(
self
)
def
get_events
(
self
):
# Normalize the list of events so that buffer artefacts don't
# separate runs of contiguous characters.
L
=
[]
prevtype
=
None
for
event
in
self
.
events
:
type
=
event
[
0
]
if
type
==
prevtype
==
"data"
:
L
[
-
1
]
=
(
"data"
,
L
[
-
1
][
1
]
+
event
[
1
])
else
:
L
.
append
(
event
)
prevtype
=
type
self
.
events
=
L
return
L
# structure markup
def
finish_starttag
(
self
,
tag
,
attrs
):
self
.
append
((
"starttag"
,
tag
,
attrs
))
def
finish_endtag
(
self
,
tag
):
self
.
append
((
"endtag"
,
tag
))
# all other markup
def
handle_charref
(
self
,
data
):
self
.
append
((
"charref"
,
data
))
def
handle_data
(
self
,
data
):
self
.
append
((
"data"
,
data
))
def
handle_decl
(
self
,
data
):
self
.
append
((
"decl"
,
data
))
def
handle_entityref
(
self
,
data
):
self
.
append
((
"entityref"
,
data
))
def
handle_pi
(
self
,
data
):
self
.
append
((
"pi"
,
data
))
class
HTMLParserTestCase
(
unittest
.
TestCase
):
def
_run_check
(
self
,
source
,
events
):
parser
=
EventCollector
()
parser
.
feed
(
source
)
parser
.
close
()
assert
parser
.
get_events
()
==
events
,
parser
.
get_events
()
def
check_processing_instruction_only
(
self
):
self
.
_run_check
(
"<?processing instruction>"
,
[
(
"pi"
,
"processing instruction"
),
])
def
check_simple_html
(
self
):
self
.
_run_check
(
"""
<!DOCTYPE html PUBLIC 'foo'>
<html>&entity; 
<img src='bar' ismap>sample
text
</html>
"""
,
[
(
"data"
,
"
\
n
"
),
(
"decl"
,
"DOCTYPE html PUBLIC 'foo'"
),
(
"data"
,
"
\
n
"
),
(
"starttag"
,
"html"
,
[]),
(
"entityref"
,
"entity"
),
(
"charref"
,
"32"
),
(
"data"
,
"
\
n
"
),
(
"starttag"
,
"img"
,
[(
"src"
,
"bar"
),
(
"ismap"
,
"ismap"
)]),
(
"data"
,
"sample
\
n
text
\
n
"
),
(
"endtag"
,
"html"
),
(
"data"
,
"
\
n
"
),
])
def
check_bad_nesting
(
self
):
self
.
_run_check
(
"<a><b></a></b>"
,
[
(
"starttag"
,
"a"
,
[]),
(
"starttag"
,
"b"
,
[]),
(
"endtag"
,
"a"
),
(
"endtag"
,
"b"
),
])
def
check_attr_syntax
(
self
):
output
=
[
(
"starttag"
,
"a"
,
[(
"b"
,
"v"
),
(
"c"
,
"v"
),
(
"d"
,
"v"
),
(
"e"
,
"e"
)])
]
self
.
_run_check
(
"""<a b='v' c="v" d=v e>"""
,
output
)
self
.
_run_check
(
"""<a b = 'v' c = "v" d = v e>"""
,
output
)
self
.
_run_check
(
"""<a
\
n
b
\
n
=
\
n
'v'
\
n
c
\
n
=
\
n
"v"
\
n
d
\
n
=
\
n
v
\
n
e>"""
,
output
)
self
.
_run_check
(
"""<a
\
t
b
\
t
=
\
t
'v'
\
t
c
\
t
=
\
t
"v"
\
t
d
\
t
=
\
t
v
\
t
e>"""
,
output
)
def
check_attr_values
(
self
):
self
.
_run_check
(
"""<a b='xxx
\
n
\
t
xxx' c="yyy
\
t
\
n
yyy" d='
\
t
xyz
\
n
'>"""
,
[(
"starttag"
,
"a"
,
[(
"b"
,
"xxx
\
n
\
t
xxx"
),
(
"c"
,
"yyy
\
t
\
n
yyy"
),
(
"d"
,
"
\
t
xyz
\
n
"
)])
])
self
.
_run_check
(
"""<a b='' c="" d=>"""
,
[
(
"starttag"
,
"a"
,
[(
"b"
,
""
),
(
"c"
,
""
),
(
"d"
,
""
)]),
])
def
check_attr_entity_replacement
(
self
):
# we expect entities *not* to be replaced by HTLMParser!
self
.
_run_check
(
"""<a b='&><"''>"""
,
[
(
"starttag"
,
"a"
,
[(
"b"
,
"&><
\
"
'"
)]),
])
def
check_attr_funky_names
(
self
):
self
.
_run_check
(
"""<a a.b='v' c:d=v e-f=v>"""
,
[
(
"starttag"
,
"a"
,
[(
"a.b"
,
"v"
),
(
"c:d"
,
"v"
),
(
"e-f"
,
"v"
)]),
])
# Support for the Zope regression test framework:
def
test_suite
():
suite
=
unittest
.
TestSuite
()
suite
.
addTest
(
unittest
.
makeSuite
(
HTMLParserTestCase
,
"check_"
))
return
suite
if
__name__
==
"__main__"
:
errs
=
utils
.
run_suite
(
test_suite
())
sys
.
exit
(
errs
and
1
or
0
)
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