mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 05:31:20 +00:00 
			
		
		
		
	Fix htmlparser tests to always use the right collector.
This commit is contained in:
		
							parent
							
								
									5211ffe4df
								
							
						
					
					
						commit
						86f67123be
					
				
					 1 changed files with 26 additions and 2 deletions
				
			
		|  | @ -93,7 +93,7 @@ def _run_check_extra(self, source, events): | |||
| 
 | ||||
|     def _parse_error(self, source): | ||||
|         def parse(source=source): | ||||
|             parser = html.parser.HTMLParser() | ||||
|             parser = self.get_collector() | ||||
|             parser.feed(source) | ||||
|             parser.close() | ||||
|         self.assertRaises(html.parser.HTMLParseError, parse) | ||||
|  | @ -368,6 +368,30 @@ def test_tolerant_parsing(self): | |||
|                             ('comment', '/img'), | ||||
|                             ('endtag', 'html<')]) | ||||
| 
 | ||||
|     def test_starttag_junk_chars(self): | ||||
|         self._run_check("</>", []) | ||||
|         self._run_check("</$>", [('comment', '$')]) | ||||
|         self._run_check("</", [('data', '</')]) | ||||
|         self._run_check("</a", [('data', '</a')]) | ||||
|         # XXX this might be wrong | ||||
|         self._run_check("<a<a>", [('data', '<a'), ('starttag', 'a', [])]) | ||||
|         self._run_check("</a<a>", [('endtag', 'a<a')]) | ||||
|         self._run_check("<!", [('data', '<!')]) | ||||
|         self._run_check("<a", [('data', '<a')]) | ||||
|         self._run_check("<a foo='bar'", [('data', "<a foo='bar'")]) | ||||
|         self._run_check("<a foo='bar", [('data', "<a foo='bar")]) | ||||
|         self._run_check("<a foo='>'", [('data', "<a foo='>'")]) | ||||
|         self._run_check("<a foo='>", [('data', "<a foo='>")]) | ||||
| 
 | ||||
|     def test_declaration_junk_chars(self): | ||||
|         # XXX this is wrong | ||||
|         self._run_check("<!DOCTYPE foo $ >", [('comment', 'DOCTYPE foo $ ')]) | ||||
| 
 | ||||
|     def test_illegal_declarations(self): | ||||
|         # XXX this might be wrong | ||||
|         self._run_check('<!spacer type="block" height="25">', | ||||
|                         [('comment', 'spacer type="block" height="25"')]) | ||||
| 
 | ||||
|     def test_with_unquoted_attributes(self): | ||||
|         # see #12008 | ||||
|         html = ("<html><body bgcolor=d0ca90 text='181008'>" | ||||
|  | @ -476,7 +500,7 @@ def test_correct_detection_of_start_tags(self): | |||
|         self._run_check(html, expected) | ||||
| 
 | ||||
|     def test_unescape_function(self): | ||||
|         p = html.parser.HTMLParser() | ||||
|         p = self.get_collector() | ||||
|         self.assertEqual(p.unescape('&#bad;'),'&#bad;') | ||||
|         self.assertEqual(p.unescape('&'),'&') | ||||
|         # see #12888 | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Ezio Melotti
						Ezio Melotti