| 
									
										
										
										
											2001-07-16 18:52:40 +00:00
										 |  |  | import pprint | 
					
						
							| 
									
										
										
										
											2006-06-23 06:03:45 +00:00
										 |  |  | import re | 
					
						
							| 
									
										
										
										
											2001-07-16 18:52:40 +00:00
										 |  |  | import sgmllib | 
					
						
							|  |  |  | import unittest | 
					
						
							| 
									
										
										
										
											2002-07-23 19:04:11 +00:00
										 |  |  | from test import test_support | 
					
						
							| 
									
										
										
										
											2001-07-16 18:52:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class EventCollector(sgmllib.SGMLParser): | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def __init__(self): | 
					
						
							|  |  |  |         self.events = [] | 
					
						
							|  |  |  |         self.append = self.events.append | 
					
						
							|  |  |  |         sgmllib.SGMLParser.__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 unknown_starttag(self, tag, attrs): | 
					
						
							|  |  |  |         self.append(("starttag", tag, attrs)) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def unknown_endtag(self, tag): | 
					
						
							|  |  |  |         self.append(("endtag", tag)) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # all other markup | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def handle_comment(self, data): | 
					
						
							|  |  |  |         self.append(("comment", data)) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def handle_charref(self, data): | 
					
						
							|  |  |  |         self.append(("charref", data)) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def handle_data(self, data): | 
					
						
							|  |  |  |         self.append(("data", data)) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def handle_decl(self, decl): | 
					
						
							|  |  |  |         self.append(("decl", decl)) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def handle_entityref(self, data): | 
					
						
							|  |  |  |         self.append(("entityref", data)) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def handle_pi(self, data): | 
					
						
							|  |  |  |         self.append(("pi", data)) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-09-24 20:22:09 +00:00
										 |  |  |     def unknown_decl(self, decl): | 
					
						
							|  |  |  |         self.append(("unknown decl", decl)) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-16 18:52:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | class CDATAEventCollector(EventCollector): | 
					
						
							|  |  |  |     def start_cdata(self, attrs): | 
					
						
							|  |  |  |         self.append(("starttag", "cdata", attrs)) | 
					
						
							|  |  |  |         self.setliteral() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-06-16 23:45:06 +00:00
										 |  |  | class HTMLEntityCollector(EventCollector): | 
					
						
							| 
									
										
										
										
											2006-06-23 06:03:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-06-16 23:45:06 +00:00
										 |  |  |     entity_or_charref = re.compile('(?:&([a-zA-Z][-.a-zA-Z0-9]*)' | 
					
						
							|  |  |  |         '|&#(x[0-9a-zA-Z]+|[0-9]+))(;?)') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def convert_charref(self, name): | 
					
						
							|  |  |  |         self.append(("charref", "convert", name)) | 
					
						
							| 
									
										
										
										
											2006-06-23 06:03:45 +00:00
										 |  |  |         if name[0] != "x": | 
					
						
							|  |  |  |             return EventCollector.convert_charref(self, name) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def convert_codepoint(self, codepoint): | 
					
						
							|  |  |  |         self.append(("codepoint", "convert", codepoint)) | 
					
						
							|  |  |  |         EventCollector.convert_codepoint(self, codepoint) | 
					
						
							| 
									
										
										
										
											2006-06-16 23:45:06 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def convert_entityref(self, name): | 
					
						
							|  |  |  |         self.append(("entityref", "convert", name)) | 
					
						
							| 
									
										
										
										
											2006-06-23 06:03:45 +00:00
										 |  |  |         return EventCollector.convert_entityref(self, name) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # These to record that they were called, then pass the call along | 
					
						
							|  |  |  |     # to the default implementation so that it's actions can be | 
					
						
							|  |  |  |     # recorded. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def handle_charref(self, data): | 
					
						
							|  |  |  |         self.append(("charref", data)) | 
					
						
							|  |  |  |         sgmllib.SGMLParser.handle_charref(self, data) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def handle_entityref(self, data): | 
					
						
							|  |  |  |         self.append(("entityref", data)) | 
					
						
							|  |  |  |         sgmllib.SGMLParser.handle_entityref(self, data) | 
					
						
							| 
									
										
										
										
											2006-06-16 23:45:06 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-16 18:52:40 +00:00
										 |  |  | class SGMLParserTestCase(unittest.TestCase): | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     collector = EventCollector | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-09-24 20:22:09 +00:00
										 |  |  |     def get_events(self, source): | 
					
						
							| 
									
										
										
										
											2001-07-16 18:52:40 +00:00
										 |  |  |         parser = self.collector() | 
					
						
							| 
									
										
										
										
											2001-09-24 20:22:09 +00:00
										 |  |  |         try: | 
					
						
							|  |  |  |             for s in source: | 
					
						
							|  |  |  |                 parser.feed(s) | 
					
						
							|  |  |  |             parser.close() | 
					
						
							|  |  |  |         except: | 
					
						
							|  |  |  |             #self.events = parser.events | 
					
						
							|  |  |  |             raise | 
					
						
							|  |  |  |         return parser.get_events() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def check_events(self, source, expected_events): | 
					
						
							|  |  |  |         try: | 
					
						
							|  |  |  |             events = self.get_events(source) | 
					
						
							|  |  |  |         except: | 
					
						
							| 
									
										
										
										
											2008-02-23 17:40:11 +00:00
										 |  |  |             #import sys | 
					
						
							| 
									
										
										
										
											2001-09-24 20:22:09 +00:00
										 |  |  |             #print >>sys.stderr, pprint.pformat(self.events) | 
					
						
							|  |  |  |             raise | 
					
						
							| 
									
										
										
										
											2001-07-16 18:52:40 +00:00
										 |  |  |         if events != expected_events: | 
					
						
							|  |  |  |             self.fail("received events did not match expected events\n" | 
					
						
							|  |  |  |                       "Expected:\n" + pprint.pformat(expected_events) + | 
					
						
							|  |  |  |                       "\nReceived:\n" + pprint.pformat(events)) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def check_parse_error(self, source): | 
					
						
							|  |  |  |         parser = EventCollector() | 
					
						
							|  |  |  |         try: | 
					
						
							|  |  |  |             parser.feed(source) | 
					
						
							|  |  |  |             parser.close() | 
					
						
							|  |  |  |         except sgmllib.SGMLParseError: | 
					
						
							|  |  |  |             pass | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             self.fail("expected SGMLParseError for %r\nReceived:\n%s" | 
					
						
							|  |  |  |                       % (source, pprint.pformat(parser.get_events()))) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-09-24 20:22:09 +00:00
										 |  |  |     def test_doctype_decl_internal(self): | 
					
						
							|  |  |  |         inside = """\
 | 
					
						
							|  |  |  | DOCTYPE html PUBLIC '-//W3C//DTD HTML 4.01//EN' | 
					
						
							|  |  |  |              SYSTEM 'http://www.w3.org/TR/html401/strict.dtd' [ | 
					
						
							|  |  |  |   <!ELEMENT html - O EMPTY> | 
					
						
							|  |  |  |   <!ATTLIST html | 
					
						
							|  |  |  |       version CDATA #IMPLIED | 
					
						
							|  |  |  |       profile CDATA 'DublinCore'> | 
					
						
							|  |  |  |   <!NOTATION datatype SYSTEM 'http://xml.python.org/notations/python-module'> | 
					
						
							|  |  |  |   <!ENTITY myEntity 'internal parsed entity'> | 
					
						
							|  |  |  |   <!ENTITY anEntity SYSTEM 'http://xml.python.org/entities/something.xml'> | 
					
						
							|  |  |  |   <!ENTITY % paramEntity 'name|name|name'> | 
					
						
							|  |  |  |   %paramEntity; | 
					
						
							|  |  |  |   <!-- comment --> | 
					
						
							|  |  |  | ]"""
 | 
					
						
							|  |  |  |         self.check_events(["<!%s>" % inside], [ | 
					
						
							|  |  |  |             ("decl", inside), | 
					
						
							|  |  |  |             ]) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_doctype_decl_external(self): | 
					
						
							|  |  |  |         inside = "DOCTYPE html PUBLIC '-//W3C//DTD HTML 4.01//EN'" | 
					
						
							|  |  |  |         self.check_events("<!%s>" % inside, [ | 
					
						
							|  |  |  |             ("decl", inside), | 
					
						
							|  |  |  |             ]) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-16 18:52:40 +00:00
										 |  |  |     def test_underscore_in_attrname(self): | 
					
						
							|  |  |  |         # SF bug #436621 | 
					
						
							|  |  |  |         """Make sure attribute names with underscores are accepted""" | 
					
						
							|  |  |  |         self.check_events("<a has_under _under>", [ | 
					
						
							|  |  |  |             ("starttag", "a", [("has_under", "has_under"), | 
					
						
							|  |  |  |                                ("_under", "_under")]), | 
					
						
							|  |  |  |             ]) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_underscore_in_tagname(self): | 
					
						
							|  |  |  |         # SF bug #436621 | 
					
						
							|  |  |  |         """Make sure tag names with underscores are accepted""" | 
					
						
							|  |  |  |         self.check_events("<has_under></has_under>", [ | 
					
						
							|  |  |  |             ("starttag", "has_under", []), | 
					
						
							|  |  |  |             ("endtag", "has_under"), | 
					
						
							|  |  |  |             ]) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_quotes_in_unquoted_attrs(self): | 
					
						
							|  |  |  |         # SF bug #436621 | 
					
						
							|  |  |  |         """Be sure quotes in unquoted attributes are made part of the value""" | 
					
						
							|  |  |  |         self.check_events("<a href=foo'bar\"baz>", [ | 
					
						
							|  |  |  |             ("starttag", "a", [("href", "foo'bar\"baz")]), | 
					
						
							|  |  |  |             ]) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_xhtml_empty_tag(self): | 
					
						
							|  |  |  |         """Handling of XHTML-style empty start tags""" | 
					
						
							|  |  |  |         self.check_events("<br />text<i></i>", [ | 
					
						
							|  |  |  |             ("starttag", "br", []), | 
					
						
							|  |  |  |             ("data", "text"), | 
					
						
							|  |  |  |             ("starttag", "i", []), | 
					
						
							|  |  |  |             ("endtag", "i"), | 
					
						
							|  |  |  |             ]) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_processing_instruction_only(self): | 
					
						
							|  |  |  |         self.check_events("<?processing instruction>", [ | 
					
						
							|  |  |  |             ("pi", "processing instruction"), | 
					
						
							|  |  |  |             ]) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_bad_nesting(self): | 
					
						
							|  |  |  |         self.check_events("<a><b></a></b>", [ | 
					
						
							|  |  |  |             ("starttag", "a", []), | 
					
						
							|  |  |  |             ("starttag", "b", []), | 
					
						
							|  |  |  |             ("endtag", "a"), | 
					
						
							|  |  |  |             ("endtag", "b"), | 
					
						
							|  |  |  |             ]) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-09-24 20:22:09 +00:00
										 |  |  |     def test_bare_ampersands(self): | 
					
						
							|  |  |  |         self.check_events("this text & contains & ampersands &", [ | 
					
						
							|  |  |  |             ("data", "this text & contains & ampersands &"), | 
					
						
							|  |  |  |             ]) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_bare_pointy_brackets(self): | 
					
						
							|  |  |  |         self.check_events("this < text > contains < bare>pointy< brackets", [ | 
					
						
							|  |  |  |             ("data", "this < text > contains < bare>pointy< brackets"), | 
					
						
							|  |  |  |             ]) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-16 18:52:40 +00:00
										 |  |  |     def test_attr_syntax(self): | 
					
						
							|  |  |  |         output = [ | 
					
						
							|  |  |  |           ("starttag", "a", [("b", "v"), ("c", "v"), ("d", "v"), ("e", "e")]) | 
					
						
							|  |  |  |           ] | 
					
						
							|  |  |  |         self.check_events("""<a b='v' c="v" d=v e>""", output) | 
					
						
							|  |  |  |         self.check_events("""<a  b = 'v' c = "v" d = v e>""", output) | 
					
						
							|  |  |  |         self.check_events("""<a\nb\n=\n'v'\nc\n=\n"v"\nd\n=\nv\ne>""", output) | 
					
						
							|  |  |  |         self.check_events("""<a\tb\t=\t'v'\tc\t=\t"v"\td\t=\tv\te>""", output) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_attr_values(self): | 
					
						
							|  |  |  |         self.check_events("""<a b='xxx\n\txxx' c="yyy\t\nyyy" d='\txyz\n'>""", | 
					
						
							|  |  |  |                         [("starttag", "a", [("b", "xxx\n\txxx"), | 
					
						
							|  |  |  |                                             ("c", "yyy\t\nyyy"), | 
					
						
							|  |  |  |                                             ("d", "\txyz\n")]) | 
					
						
							|  |  |  |                          ]) | 
					
						
							|  |  |  |         self.check_events("""<a b='' c="">""", [ | 
					
						
							|  |  |  |             ("starttag", "a", [("b", ""), ("c", "")]), | 
					
						
							|  |  |  |             ]) | 
					
						
							| 
									
										
										
										
											2003-04-29 22:12:55 +00:00
										 |  |  |         # URL construction stuff from RFC 1808: | 
					
						
							|  |  |  |         safe = "$-_.+" | 
					
						
							|  |  |  |         extra = "!*'()," | 
					
						
							|  |  |  |         reserved = ";/?:@&=" | 
					
						
							|  |  |  |         url = "http://example.com:8080/path/to/file?%s%s%s" % ( | 
					
						
							|  |  |  |             safe, extra, reserved) | 
					
						
							|  |  |  |         self.check_events("""<e a=%s>""" % url, [ | 
					
						
							|  |  |  |             ("starttag", "e", [("a", url)]), | 
					
						
							|  |  |  |             ]) | 
					
						
							| 
									
										
										
										
											2003-03-14 16:21:57 +00:00
										 |  |  |         # Regression test for SF patch #669683. | 
					
						
							|  |  |  |         self.check_events("<e a=rgb(1,2,3)>", [ | 
					
						
							|  |  |  |             ("starttag", "e", [("a", "rgb(1,2,3)")]), | 
					
						
							|  |  |  |             ]) | 
					
						
							| 
									
										
										
										
											2001-07-16 18:52:40 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-04-01 08:35:18 +00:00
										 |  |  |     def test_attr_values_entities(self): | 
					
						
							|  |  |  |         """Substitution of entities and charrefs in attribute values""" | 
					
						
							|  |  |  |         # SF bug #1452246 | 
					
						
							|  |  |  |         self.check_events("""<a b=< c=<> d=<-> e='< '
 | 
					
						
							| 
									
										
										
										
											2006-06-14 05:04:47 +00:00
										 |  |  |                                 f="&xxx;" g=' !' h='Ǵ' | 
					
						
							|  |  |  |                                 i='x?a=b&c=d;' | 
					
						
							|  |  |  |                                 j='&#42;' k='&#42;'>""",
 | 
					
						
							| 
									
										
										
										
											2006-04-01 08:35:18 +00:00
										 |  |  |             [("starttag", "a", [("b", "<"), | 
					
						
							|  |  |  |                                 ("c", "<>"), | 
					
						
							|  |  |  |                                 ("d", "<->"), | 
					
						
							|  |  |  |                                 ("e", "< "), | 
					
						
							|  |  |  |                                 ("f", "&xxx;"), | 
					
						
							|  |  |  |                                 ("g", " !"), | 
					
						
							|  |  |  |                                 ("h", "Ǵ"), | 
					
						
							| 
									
										
										
										
											2006-06-14 05:04:47 +00:00
										 |  |  |                                 ("i", "x?a=b&c=d;"), | 
					
						
							|  |  |  |                                 ("j", "*"), | 
					
						
							|  |  |  |                                 ("k", "*"), | 
					
						
							|  |  |  |                                 ])]) | 
					
						
							| 
									
										
										
										
											2006-04-01 08:35:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-06-16 23:45:06 +00:00
										 |  |  |     def test_convert_overrides(self): | 
					
						
							| 
									
										
										
										
											2006-06-23 06:03:45 +00:00
										 |  |  |         # This checks that the character and entity reference | 
					
						
							|  |  |  |         # conversion helpers are called at the documented times.  No | 
					
						
							|  |  |  |         # attempt is made to really change what the parser accepts. | 
					
						
							|  |  |  |         # | 
					
						
							| 
									
										
										
										
											2006-06-16 23:45:06 +00:00
										 |  |  |         self.collector = HTMLEntityCollector | 
					
						
							| 
									
										
										
										
											2006-06-23 06:03:45 +00:00
										 |  |  |         self.check_events(('<a title="“test”">foo</a>' | 
					
						
							|  |  |  |                            '&foobar;*'), [ | 
					
						
							| 
									
										
										
										
											2006-06-16 23:45:06 +00:00
										 |  |  |             ('entityref', 'convert', 'ldquo'), | 
					
						
							|  |  |  |             ('charref', 'convert', 'x201d'), | 
					
						
							| 
									
										
										
										
											2006-06-23 06:03:45 +00:00
										 |  |  |             ('starttag', 'a', [('title', '“test”')]), | 
					
						
							| 
									
										
										
										
											2006-06-16 23:45:06 +00:00
										 |  |  |             ('data', 'foo'), | 
					
						
							|  |  |  |             ('endtag', 'a'), | 
					
						
							| 
									
										
										
										
											2006-06-23 06:03:45 +00:00
										 |  |  |             ('entityref', 'foobar'), | 
					
						
							|  |  |  |             ('entityref', 'convert', 'foobar'), | 
					
						
							|  |  |  |             ('charref', '42'), | 
					
						
							|  |  |  |             ('charref', 'convert', '42'), | 
					
						
							|  |  |  |             ('codepoint', 'convert', 42), | 
					
						
							| 
									
										
										
										
											2006-06-16 23:45:06 +00:00
										 |  |  |             ]) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-16 18:52:40 +00:00
										 |  |  |     def test_attr_funky_names(self): | 
					
						
							|  |  |  |         self.check_events("""<a a.b='v' c:d=v e-f=v>""", [ | 
					
						
							|  |  |  |             ("starttag", "a", [("a.b", "v"), ("c:d", "v"), ("e-f", "v")]), | 
					
						
							|  |  |  |             ]) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-06-23 06:03:45 +00:00
										 |  |  |     def test_attr_value_ip6_url(self): | 
					
						
							|  |  |  |         # http://www.python.org/sf/853506 | 
					
						
							|  |  |  |         self.check_events(("<a href='http://[1080::8:800:200C:417A]/'>" | 
					
						
							|  |  |  |                            "<a href=http://[1080::8:800:200C:417A]/>"), [ | 
					
						
							|  |  |  |             ("starttag", "a", [("href", "http://[1080::8:800:200C:417A]/")]), | 
					
						
							|  |  |  |             ("starttag", "a", [("href", "http://[1080::8:800:200C:417A]/")]), | 
					
						
							|  |  |  |             ]) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-09-24 20:22:09 +00:00
										 |  |  |     def test_illegal_declarations(self): | 
					
						
							|  |  |  |         s = 'abc<!spacer type="block" height="25">def' | 
					
						
							|  |  |  |         self.check_events(s, [ | 
					
						
							|  |  |  |             ("data", "abc"), | 
					
						
							|  |  |  |             ("unknown decl", 'spacer type="block" height="25"'), | 
					
						
							|  |  |  |             ("data", "def"), | 
					
						
							|  |  |  |             ]) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-16 18:52:40 +00:00
										 |  |  |     def test_weird_starttags(self): | 
					
						
							|  |  |  |         self.check_events("<a<a>", [ | 
					
						
							|  |  |  |             ("starttag", "a", []), | 
					
						
							|  |  |  |             ("starttag", "a", []), | 
					
						
							|  |  |  |             ]) | 
					
						
							|  |  |  |         self.check_events("</a<a>", [ | 
					
						
							|  |  |  |             ("endtag", "a"), | 
					
						
							|  |  |  |             ("starttag", "a", []), | 
					
						
							|  |  |  |             ]) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_declaration_junk_chars(self): | 
					
						
							|  |  |  |         self.check_parse_error("<!DOCTYPE foo $ >") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_get_starttag_text(self): | 
					
						
							|  |  |  |         s = """<foobar   \n   one="1"\ttwo=2   >""" | 
					
						
							|  |  |  |         self.check_events(s, [ | 
					
						
							|  |  |  |             ("starttag", "foobar", [("one", "1"), ("two", "2")]), | 
					
						
							|  |  |  |             ]) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_cdata_content(self): | 
					
						
							|  |  |  |         s = ("<cdata> <!-- not a comment --> ¬-an-entity-ref; </cdata>" | 
					
						
							|  |  |  |              "<notcdata> <!-- comment --> </notcdata>") | 
					
						
							|  |  |  |         self.collector = CDATAEventCollector | 
					
						
							|  |  |  |         self.check_events(s, [ | 
					
						
							|  |  |  |             ("starttag", "cdata", []), | 
					
						
							|  |  |  |             ("data", " <!-- not a comment --> ¬-an-entity-ref; "), | 
					
						
							|  |  |  |             ("endtag", "cdata"), | 
					
						
							|  |  |  |             ("starttag", "notcdata", []), | 
					
						
							|  |  |  |             ("data", " "), | 
					
						
							|  |  |  |             ("comment", " comment "), | 
					
						
							|  |  |  |             ("data", " "), | 
					
						
							|  |  |  |             ("endtag", "notcdata"), | 
					
						
							|  |  |  |             ]) | 
					
						
							|  |  |  |         s = """<cdata> <not a='start tag'> </cdata>""" | 
					
						
							|  |  |  |         self.check_events(s, [ | 
					
						
							|  |  |  |             ("starttag", "cdata", []), | 
					
						
							|  |  |  |             ("data", " <not a='start tag'> "), | 
					
						
							|  |  |  |             ("endtag", "cdata"), | 
					
						
							|  |  |  |             ]) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-09-24 20:22:09 +00:00
										 |  |  |     def test_illegal_declarations(self): | 
					
						
							|  |  |  |         s = 'abc<!spacer type="block" height="25">def' | 
					
						
							|  |  |  |         self.check_events(s, [ | 
					
						
							|  |  |  |             ("data", "abc"), | 
					
						
							|  |  |  |             ("unknown decl", 'spacer type="block" height="25"'), | 
					
						
							|  |  |  |             ("data", "def"), | 
					
						
							|  |  |  |             ]) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-09-25 16:29:17 +00:00
										 |  |  |     def test_enumerated_attr_type(self): | 
					
						
							|  |  |  |         s = "<!DOCTYPE doc [<!ATTLIST doc attr (a | b) >]>" | 
					
						
							|  |  |  |         self.check_events(s, [ | 
					
						
							|  |  |  |             ('decl', 'DOCTYPE doc [<!ATTLIST doc attr (a | b) >]'), | 
					
						
							|  |  |  |             ]) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-09-11 04:24:09 +00:00
										 |  |  |     def test_read_chunks(self): | 
					
						
							|  |  |  |         # SF bug #1541697, this caused sgml parser to hang | 
					
						
							|  |  |  |         # Just verify this code doesn't cause a hang. | 
					
						
							|  |  |  |         CHUNK = 1024  # increasing this to 8212 makes the problem go away | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         f = open(test_support.findfile('sgml_input.html')) | 
					
						
							|  |  |  |         fp = sgmllib.SGMLParser() | 
					
						
							|  |  |  |         while 1: | 
					
						
							|  |  |  |             data = f.read(CHUNK) | 
					
						
							|  |  |  |             fp.feed(data) | 
					
						
							|  |  |  |             if len(data) != CHUNK: | 
					
						
							|  |  |  |                 break | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-16 18:52:40 +00:00
										 |  |  |     # XXX These tests have been disabled by prefixing their names with | 
					
						
							|  |  |  |     # an underscore.  The first two exercise outstanding bugs in the | 
					
						
							|  |  |  |     # sgmllib module, and the third exhibits questionable behavior | 
					
						
							|  |  |  |     # that needs to be carefully considered before changing it. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def _test_starttag_end_boundary(self): | 
					
						
							| 
									
										
										
										
											2006-06-14 04:25:02 +00:00
										 |  |  |         self.check_events("<a b='<'>", [("starttag", "a", [("b", "<")])]) | 
					
						
							|  |  |  |         self.check_events("<a b='>'>", [("starttag", "a", [("b", ">")])]) | 
					
						
							| 
									
										
										
										
											2001-07-16 18:52:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def _test_buffer_artefacts(self): | 
					
						
							|  |  |  |         output = [("starttag", "a", [("b", "<")])] | 
					
						
							|  |  |  |         self.check_events(["<a b='<'>"], output) | 
					
						
							|  |  |  |         self.check_events(["<a ", "b='<'>"], output) | 
					
						
							|  |  |  |         self.check_events(["<a b", "='<'>"], output) | 
					
						
							|  |  |  |         self.check_events(["<a b=", "'<'>"], output) | 
					
						
							|  |  |  |         self.check_events(["<a b='<", "'>"], output) | 
					
						
							|  |  |  |         self.check_events(["<a b='<'", ">"], output) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         output = [("starttag", "a", [("b", ">")])] | 
					
						
							|  |  |  |         self.check_events(["<a b='>'>"], output) | 
					
						
							|  |  |  |         self.check_events(["<a ", "b='>'>"], output) | 
					
						
							|  |  |  |         self.check_events(["<a b", "='>'>"], output) | 
					
						
							|  |  |  |         self.check_events(["<a b=", "'>'>"], output) | 
					
						
							|  |  |  |         self.check_events(["<a b='>", "'>"], output) | 
					
						
							|  |  |  |         self.check_events(["<a b='>'", ">"], output) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-09-08 22:57:01 +00:00
										 |  |  |         output = [("comment", "abc")] | 
					
						
							| 
									
										
										
										
											2006-06-14 04:25:02 +00:00
										 |  |  |         self.check_events(["", "<!--abc-->"], output) | 
					
						
							|  |  |  |         self.check_events(["<", "!--abc-->"], output) | 
					
						
							|  |  |  |         self.check_events(["<!", "--abc-->"], output) | 
					
						
							|  |  |  |         self.check_events(["<!-", "-abc-->"], output) | 
					
						
							|  |  |  |         self.check_events(["<!--", "abc-->"], output) | 
					
						
							|  |  |  |         self.check_events(["<!--a", "bc-->"], output) | 
					
						
							|  |  |  |         self.check_events(["<!--ab", "c-->"], output) | 
					
						
							|  |  |  |         self.check_events(["<!--abc", "-->"], output) | 
					
						
							|  |  |  |         self.check_events(["<!--abc-", "->"], output) | 
					
						
							|  |  |  |         self.check_events(["<!--abc--", ">"], output) | 
					
						
							|  |  |  |         self.check_events(["<!--abc-->", ""], output) | 
					
						
							| 
									
										
										
										
											2004-09-08 22:57:01 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-16 18:52:40 +00:00
										 |  |  |     def _test_starttag_junk_chars(self): | 
					
						
							|  |  |  |         self.check_parse_error("<") | 
					
						
							|  |  |  |         self.check_parse_error("<>") | 
					
						
							|  |  |  |         self.check_parse_error("</$>") | 
					
						
							|  |  |  |         self.check_parse_error("</") | 
					
						
							|  |  |  |         self.check_parse_error("</a") | 
					
						
							|  |  |  |         self.check_parse_error("<$") | 
					
						
							|  |  |  |         self.check_parse_error("<$>") | 
					
						
							|  |  |  |         self.check_parse_error("<!") | 
					
						
							|  |  |  |         self.check_parse_error("<a $>") | 
					
						
							|  |  |  |         self.check_parse_error("<a") | 
					
						
							|  |  |  |         self.check_parse_error("<a foo='bar'") | 
					
						
							|  |  |  |         self.check_parse_error("<a foo='bar") | 
					
						
							|  |  |  |         self.check_parse_error("<a foo='>'") | 
					
						
							|  |  |  |         self.check_parse_error("<a foo='>") | 
					
						
							|  |  |  |         self.check_parse_error("<a foo=>") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-09-24 20:22:09 +00:00
										 |  |  | def test_main(): | 
					
						
							|  |  |  |     test_support.run_unittest(SGMLParserTestCase) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if __name__ == "__main__": | 
					
						
							|  |  |  |     test_main() |