X-Git-Url: https://git.sommitrealweird.co.uk/rss2maildir.git/blobdiff_plain/738dfe9c90cc9a357a5236a77281be87c90a13e1..286e096cd216854c5a9bc8cdc580e5d3ec447f19:/tests/unittests/UnorderedListTests.py?ds=sidebyside diff --git a/tests/unittests/UnorderedListTests.py b/tests/unittests/UnorderedListTests.py old mode 100644 new mode 100755 index af09b7c..2224e74 --- a/tests/unittests/UnorderedListTests.py +++ b/tests/unittests/UnorderedListTests.py @@ -8,7 +8,7 @@ class UnorderedListTests(unittest.TestCase): def setUp(self): self.inputpath = os.path.sep.join(os.path.dirname(os.path.realpath(__file__)).split(os.path.sep)[0:-1]) - def testwellformedlist(self): + def testWellFormedList(self): try: from rss2maildir import HTML2Text except: @@ -25,5 +25,29 @@ class UnorderedListTests(unittest.TestCase): output = parser.gettext() self.assertEqual(output, expectedoutput) + def testBadlyFormedList(self): + try: + from rss2maildir import HTML2Text + except: + sys.path.append(os.path.sep.join(self.inputpath.split(os.path.sep)[0:-1])) + try: + from rss2maildir import HTML2Text + except: + self.assert_(False) + + input_path = os.path.sep.join(os.path.dirname(os.path.realpath(__file__)).split(os.path.sep)[0:-1]) + input = open(os.path.join(input_path, "html", "unorderedlist-badlyformed.html")).read() + expectedoutput = open(os.path.join(input_path, "expected", "unorderedlist-badlyformed.txt")).read() + parser = HTML2Text() + parser.feed(input) + output = parser.gettext() + self.assertEqual(output, expectedoutput) + +def suite(): + suite = unittest.TestSuite() + suite.addTest(UnorderedListTests("testWellFormedList")) + suite.addTest(UnorderedListTests("testBadlyFormedList")) + return suite + if __name__ == "__main__": unittest.main()