blob: 489708d1d25a6c21b60d90591a9a629538656baf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
"""Tree builder compatibility suite.
If you create a tree builder class, also create a test suite that
subclasses this one. This test suite will parse various bits of
well-formed HTML with your tree builder. Not every tree builder will
handle bad HTML in the same way, but every builder should be able to
handle _good_ HTML in the same way.
"""
import unittest
from beautifulsoup import BeautifulSoup
from beautifulsoup.element import SoupStrainer
from test_soup import SoupTest
class CompatibilityTest(SoupTest):
def __init__(self, builder):
self.builder = builder
_testMethodName = "test"
def test(self):
self.test_bare_string()
self.test_tag_nesting()
self.test_self_closing()
self.test_soupstrainer()
def test_bare_string(self):
self.assertSoupEquals("A bare string")
def test_tag_nesting(self):
self.assertSoupEquals("<b>Inside a B tag</b>")
self.assertSoupEquals("<p>A <i>nested <b>tag</b></i></p>")
def test_self_closing(self):
self.assertSoupEquals("A <meta> tag", "A <meta /> tag")
def test_soupstrainer(self):
strainer = SoupStrainer("b")
soup = BeautifulSoup("A <b>bold</b> <i>statement</i>",
parseOnlyThese=strainer)
self.assertEquals(soup.decode(), "<b>bold</b>")
soup = BeautifulSoup("A <b>bold</b> <meta> <i>statement</i>",
parseOnlyThese=strainer)
self.assertEquals(soup.decode(), "<b>bold</b>")
|