Commit 08e7613c authored by Guido van Rossum's avatar Guido van Rossum

Update the test output, incorporating the ('mode', 'html') opcodes

that are now generated.
parent c7326263
...@@ -30,6 +30,7 @@ class HTMLTALParserTestCases(unittest.TestCase): ...@@ -30,6 +30,7 @@ class HTMLTALParserTestCases(unittest.TestCase):
def check_code_simple_identity(self): def check_code_simple_identity(self):
self._run_check("""<html a='b' b="c" c=d><title>My Title</html>""", [ self._run_check("""<html a='b' b="c" c=d><title>My Title</html>""", [
('version', TAL_VERSION), ('version', TAL_VERSION),
('mode', 'html'),
('rawtext', '<html a="b" b="c" c="d">' ('rawtext', '<html a="b" b="c" c="d">'
'<title>My Title</title></html>'), '<title>My Title</title></html>'),
]) ])
...@@ -37,10 +38,12 @@ class HTMLTALParserTestCases(unittest.TestCase): ...@@ -37,10 +38,12 @@ class HTMLTALParserTestCases(unittest.TestCase):
def check_code_implied_list_closings(self): def check_code_implied_list_closings(self):
self._run_check("""<ul><li><p><p><li></ul>""", [ self._run_check("""<ul><li><p><p><li></ul>""", [
('version', TAL_VERSION), ('version', TAL_VERSION),
('mode', 'html'),
('rawtext', '<ul><li><p></p><p></p></li><li></li></ul>'), ('rawtext', '<ul><li><p></p><p></p></li><li></li></ul>'),
]) ])
self._run_check("""<dl><dt><dt><dd><dd><ol><li><li></ol></dl>""", [ self._run_check("""<dl><dt><dt><dd><dd><ol><li><li></ol></dl>""", [
('version', TAL_VERSION), ('version', TAL_VERSION),
('mode', 'html'),
('rawtext', '<dl><dt></dt><dt></dt><dd></dd>' ('rawtext', '<dl><dt></dt><dt></dt><dd></dd>'
'<dd><ol><li></li><li></li></ol></dd></dl>'), '<dd><ol><li></li><li></li></ol></dd></dl>'),
]) ])
...@@ -49,6 +52,7 @@ class HTMLTALParserTestCases(unittest.TestCase): ...@@ -49,6 +52,7 @@ class HTMLTALParserTestCases(unittest.TestCase):
self._run_check("""<p>text <table><tr><th>head\t<tr><td>cell\t""" self._run_check("""<p>text <table><tr><th>head\t<tr><td>cell\t"""
"""<table><tr><td>cell \n \t \n<tr>""", [ """<table><tr><td>cell \n \t \n<tr>""", [
('version', TAL_VERSION), ('version', TAL_VERSION),
('mode', 'html'),
('rawtext', '<p>text</p> <table><tr><th>head</th>' ('rawtext', '<p>text</p> <table><tr><th>head</th>'
'</tr>\t<tr><td>cell\t<table><tr><td>cell</td>' '</tr>\t<tr><td>cell\t<table><tr><td>cell</td>'
'</tr> \n \t \n<tr></tr></table></td></tr></table>'), '</tr> \n \t \n<tr></tr></table></td></tr></table>'),
...@@ -56,6 +60,7 @@ class HTMLTALParserTestCases(unittest.TestCase): ...@@ -56,6 +60,7 @@ class HTMLTALParserTestCases(unittest.TestCase):
self._run_check("""<table><tr><td>cell """ self._run_check("""<table><tr><td>cell """
"""<table><tr><td>cell </table></table>""", [ """<table><tr><td>cell </table></table>""", [
('version', TAL_VERSION), ('version', TAL_VERSION),
('mode', 'html'),
('rawtext', '<table><tr><td>cell <table><tr><td>cell</td></tr>' ('rawtext', '<table><tr><td>cell <table><tr><td>cell</td></tr>'
' </table></td></tr></table>'), ' </table></td></tr></table>'),
]) ])
...@@ -68,6 +73,7 @@ class HTMLTALParserTestCases(unittest.TestCase): ...@@ -68,6 +73,7 @@ class HTMLTALParserTestCases(unittest.TestCase):
def check_code_attr_syntax(self): def check_code_attr_syntax(self):
output = [ output = [
('version', TAL_VERSION), ('version', TAL_VERSION),
('mode', 'html'),
('rawtext', '<a b="v" c="v" d="v" e></a>'), ('rawtext', '<a b="v" c="v" d="v" e></a>'),
] ]
self._run_check("""<a b='v' c="v" d=v e>""", output) self._run_check("""<a b='v' c="v" d=v e>""", output)
...@@ -79,10 +85,12 @@ class HTMLTALParserTestCases(unittest.TestCase): ...@@ -79,10 +85,12 @@ class HTMLTALParserTestCases(unittest.TestCase):
self._run_check( self._run_check(
"""<a b='xxx\n\txxx' c="yyy\t\nyyy" d='\txyz\n'>""", [ """<a b='xxx\n\txxx' c="yyy\t\nyyy" d='\txyz\n'>""", [
('version', TAL_VERSION), ('version', TAL_VERSION),
('mode', 'html'),
('rawtext', ('rawtext',
'<a b="xxx\n\txxx" c="yyy\t\nyyy" d="\txyz\n"></a>')]) '<a b="xxx\n\txxx" c="yyy\t\nyyy" d="\txyz\n"></a>')])
self._run_check("""<a b='' c="" d=>""", [ self._run_check("""<a b='' c="" d=>""", [
('version', TAL_VERSION), ('version', TAL_VERSION),
('mode', 'html'),
('rawtext', '<a b="" c="" d=""></a>'), ('rawtext', '<a b="" c="" d=""></a>'),
]) ])
...@@ -90,36 +98,43 @@ class HTMLTALParserTestCases(unittest.TestCase): ...@@ -90,36 +98,43 @@ class HTMLTALParserTestCases(unittest.TestCase):
# we expect entities *not* to be replaced by HTLMParser! # we expect entities *not* to be replaced by HTLMParser!
self._run_check("""<a b='&amp;&gt;&lt;&quot;&apos;'>""", [ self._run_check("""<a b='&amp;&gt;&lt;&quot;&apos;'>""", [
('version', TAL_VERSION), ('version', TAL_VERSION),
('mode', 'html'),
('rawtext', '<a b="&amp;&gt;&lt;&quot;\'"></a>'), ('rawtext', '<a b="&amp;&gt;&lt;&quot;\'"></a>'),
]) ])
self._run_check("""<a b='\"'>""", [ self._run_check("""<a b='\"'>""", [
('version', TAL_VERSION), ('version', TAL_VERSION),
('mode', 'html'),
('rawtext', "<a b='\"'></a>"), ('rawtext', "<a b='\"'></a>"),
]) ])
self._run_check("""<a b='&'>""", [ self._run_check("""<a b='&'>""", [
('version', TAL_VERSION), ('version', TAL_VERSION),
('mode', 'html'),
('rawtext', '<a b="&amp;"></a>'), ('rawtext', '<a b="&amp;"></a>'),
]) ])
self._run_check("""<a b='<'>""", [ self._run_check("""<a b='<'>""", [
('version', TAL_VERSION), ('version', TAL_VERSION),
('mode', 'html'),
('rawtext', '<a b="&lt;"></a>'), ('rawtext', '<a b="&lt;"></a>'),
]) ])
def check_code_attr_funky_names(self): def check_code_attr_funky_names(self):
self._run_check("""<a a.b='v' c:d=v e-f=v>""", [ self._run_check("""<a a.b='v' c:d=v e-f=v>""", [
('version', TAL_VERSION), ('version', TAL_VERSION),
('mode', 'html'),
('rawtext', '<a a.b="v" c:d="v" e-f="v"></a>'), ('rawtext', '<a a.b="v" c:d="v" e-f="v"></a>'),
]) ])
def check_code_pcdata_entityref(self): def check_code_pcdata_entityref(self):
self._run_check("""&nbsp;""", [ self._run_check("""&nbsp;""", [
('version', TAL_VERSION), ('version', TAL_VERSION),
('mode', 'html'),
('rawtext', '&nbsp;'), ('rawtext', '&nbsp;'),
]) ])
def check_code_short_endtags(self): def check_code_short_endtags(self):
self._run_check("""<html><img/></html>""", [ self._run_check("""<html><img/></html>""", [
('version', TAL_VERSION), ('version', TAL_VERSION),
('mode', 'html'),
('rawtext', '<html><img/></html>'), ('rawtext', '<html><img/></html>'),
]) ])
......
...@@ -30,6 +30,7 @@ class HTMLTALParserTestCases(unittest.TestCase): ...@@ -30,6 +30,7 @@ class HTMLTALParserTestCases(unittest.TestCase):
def check_code_simple_identity(self): def check_code_simple_identity(self):
self._run_check("""<html a='b' b="c" c=d><title>My Title</html>""", [ self._run_check("""<html a='b' b="c" c=d><title>My Title</html>""", [
('version', TAL_VERSION), ('version', TAL_VERSION),
('mode', 'html'),
('rawtext', '<html a="b" b="c" c="d">' ('rawtext', '<html a="b" b="c" c="d">'
'<title>My Title</title></html>'), '<title>My Title</title></html>'),
]) ])
...@@ -37,10 +38,12 @@ class HTMLTALParserTestCases(unittest.TestCase): ...@@ -37,10 +38,12 @@ class HTMLTALParserTestCases(unittest.TestCase):
def check_code_implied_list_closings(self): def check_code_implied_list_closings(self):
self._run_check("""<ul><li><p><p><li></ul>""", [ self._run_check("""<ul><li><p><p><li></ul>""", [
('version', TAL_VERSION), ('version', TAL_VERSION),
('mode', 'html'),
('rawtext', '<ul><li><p></p><p></p></li><li></li></ul>'), ('rawtext', '<ul><li><p></p><p></p></li><li></li></ul>'),
]) ])
self._run_check("""<dl><dt><dt><dd><dd><ol><li><li></ol></dl>""", [ self._run_check("""<dl><dt><dt><dd><dd><ol><li><li></ol></dl>""", [
('version', TAL_VERSION), ('version', TAL_VERSION),
('mode', 'html'),
('rawtext', '<dl><dt></dt><dt></dt><dd></dd>' ('rawtext', '<dl><dt></dt><dt></dt><dd></dd>'
'<dd><ol><li></li><li></li></ol></dd></dl>'), '<dd><ol><li></li><li></li></ol></dd></dl>'),
]) ])
...@@ -49,6 +52,7 @@ class HTMLTALParserTestCases(unittest.TestCase): ...@@ -49,6 +52,7 @@ class HTMLTALParserTestCases(unittest.TestCase):
self._run_check("""<p>text <table><tr><th>head\t<tr><td>cell\t""" self._run_check("""<p>text <table><tr><th>head\t<tr><td>cell\t"""
"""<table><tr><td>cell \n \t \n<tr>""", [ """<table><tr><td>cell \n \t \n<tr>""", [
('version', TAL_VERSION), ('version', TAL_VERSION),
('mode', 'html'),
('rawtext', '<p>text</p> <table><tr><th>head</th>' ('rawtext', '<p>text</p> <table><tr><th>head</th>'
'</tr>\t<tr><td>cell\t<table><tr><td>cell</td>' '</tr>\t<tr><td>cell\t<table><tr><td>cell</td>'
'</tr> \n \t \n<tr></tr></table></td></tr></table>'), '</tr> \n \t \n<tr></tr></table></td></tr></table>'),
...@@ -56,6 +60,7 @@ class HTMLTALParserTestCases(unittest.TestCase): ...@@ -56,6 +60,7 @@ class HTMLTALParserTestCases(unittest.TestCase):
self._run_check("""<table><tr><td>cell """ self._run_check("""<table><tr><td>cell """
"""<table><tr><td>cell </table></table>""", [ """<table><tr><td>cell </table></table>""", [
('version', TAL_VERSION), ('version', TAL_VERSION),
('mode', 'html'),
('rawtext', '<table><tr><td>cell <table><tr><td>cell</td></tr>' ('rawtext', '<table><tr><td>cell <table><tr><td>cell</td></tr>'
' </table></td></tr></table>'), ' </table></td></tr></table>'),
]) ])
...@@ -68,6 +73,7 @@ class HTMLTALParserTestCases(unittest.TestCase): ...@@ -68,6 +73,7 @@ class HTMLTALParserTestCases(unittest.TestCase):
def check_code_attr_syntax(self): def check_code_attr_syntax(self):
output = [ output = [
('version', TAL_VERSION), ('version', TAL_VERSION),
('mode', 'html'),
('rawtext', '<a b="v" c="v" d="v" e></a>'), ('rawtext', '<a b="v" c="v" d="v" e></a>'),
] ]
self._run_check("""<a b='v' c="v" d=v e>""", output) self._run_check("""<a b='v' c="v" d=v e>""", output)
...@@ -79,10 +85,12 @@ class HTMLTALParserTestCases(unittest.TestCase): ...@@ -79,10 +85,12 @@ class HTMLTALParserTestCases(unittest.TestCase):
self._run_check( self._run_check(
"""<a b='xxx\n\txxx' c="yyy\t\nyyy" d='\txyz\n'>""", [ """<a b='xxx\n\txxx' c="yyy\t\nyyy" d='\txyz\n'>""", [
('version', TAL_VERSION), ('version', TAL_VERSION),
('mode', 'html'),
('rawtext', ('rawtext',
'<a b="xxx\n\txxx" c="yyy\t\nyyy" d="\txyz\n"></a>')]) '<a b="xxx\n\txxx" c="yyy\t\nyyy" d="\txyz\n"></a>')])
self._run_check("""<a b='' c="" d=>""", [ self._run_check("""<a b='' c="" d=>""", [
('version', TAL_VERSION), ('version', TAL_VERSION),
('mode', 'html'),
('rawtext', '<a b="" c="" d=""></a>'), ('rawtext', '<a b="" c="" d=""></a>'),
]) ])
...@@ -90,36 +98,43 @@ class HTMLTALParserTestCases(unittest.TestCase): ...@@ -90,36 +98,43 @@ class HTMLTALParserTestCases(unittest.TestCase):
# we expect entities *not* to be replaced by HTLMParser! # we expect entities *not* to be replaced by HTLMParser!
self._run_check("""<a b='&amp;&gt;&lt;&quot;&apos;'>""", [ self._run_check("""<a b='&amp;&gt;&lt;&quot;&apos;'>""", [
('version', TAL_VERSION), ('version', TAL_VERSION),
('mode', 'html'),
('rawtext', '<a b="&amp;&gt;&lt;&quot;\'"></a>'), ('rawtext', '<a b="&amp;&gt;&lt;&quot;\'"></a>'),
]) ])
self._run_check("""<a b='\"'>""", [ self._run_check("""<a b='\"'>""", [
('version', TAL_VERSION), ('version', TAL_VERSION),
('mode', 'html'),
('rawtext', "<a b='\"'></a>"), ('rawtext', "<a b='\"'></a>"),
]) ])
self._run_check("""<a b='&'>""", [ self._run_check("""<a b='&'>""", [
('version', TAL_VERSION), ('version', TAL_VERSION),
('mode', 'html'),
('rawtext', '<a b="&amp;"></a>'), ('rawtext', '<a b="&amp;"></a>'),
]) ])
self._run_check("""<a b='<'>""", [ self._run_check("""<a b='<'>""", [
('version', TAL_VERSION), ('version', TAL_VERSION),
('mode', 'html'),
('rawtext', '<a b="&lt;"></a>'), ('rawtext', '<a b="&lt;"></a>'),
]) ])
def check_code_attr_funky_names(self): def check_code_attr_funky_names(self):
self._run_check("""<a a.b='v' c:d=v e-f=v>""", [ self._run_check("""<a a.b='v' c:d=v e-f=v>""", [
('version', TAL_VERSION), ('version', TAL_VERSION),
('mode', 'html'),
('rawtext', '<a a.b="v" c:d="v" e-f="v"></a>'), ('rawtext', '<a a.b="v" c:d="v" e-f="v"></a>'),
]) ])
def check_code_pcdata_entityref(self): def check_code_pcdata_entityref(self):
self._run_check("""&nbsp;""", [ self._run_check("""&nbsp;""", [
('version', TAL_VERSION), ('version', TAL_VERSION),
('mode', 'html'),
('rawtext', '&nbsp;'), ('rawtext', '&nbsp;'),
]) ])
def check_code_short_endtags(self): def check_code_short_endtags(self):
self._run_check("""<html><img/></html>""", [ self._run_check("""<html><img/></html>""", [
('version', TAL_VERSION), ('version', TAL_VERSION),
('mode', 'html'),
('rawtext', '<html><img/></html>'), ('rawtext', '<html><img/></html>'),
]) ])
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment