mirror of
https://github.com/moparisthebest/SickRage
synced 2024-11-06 01:15:05 -05:00
0d9fbc1ad7
This version of SickBeard uses both TVDB and TVRage to search and gather it's series data from allowing you to now have access to and download shows that you couldn't before because of being locked into only what TheTVDB had to offer. Also this edition is based off the code we used in our XEM editon so it does come with scene numbering support as well as all the other features our XEM edition has to offer. Please before using this with your existing database (sickbeard.db) please make a backup copy of it and delete any other database files such as cache.db and failed.db if present, we HIGHLY recommend starting out with no database files at all to make this a fresh start but the choice is at your own risk! Enjoy!
92 lines
2.9 KiB
Python
92 lines
2.9 KiB
Python
"""Tests to ensure that the lxml tree builder generates good trees."""
|
|
|
|
import re
|
|
import warnings
|
|
|
|
try:
|
|
import lxml.etree
|
|
LXML_PRESENT = True
|
|
LXML_VERSION = lxml.etree.LXML_VERSION
|
|
except ImportError, e:
|
|
LXML_PRESENT = False
|
|
LXML_VERSION = (0,)
|
|
|
|
if LXML_PRESENT:
|
|
from bs4.builder import LXMLTreeBuilder, LXMLTreeBuilderForXML
|
|
|
|
from bs4 import (
|
|
BeautifulSoup,
|
|
BeautifulStoneSoup,
|
|
)
|
|
from bs4.element import Comment, Doctype, SoupStrainer
|
|
from bs4.testing import skipIf
|
|
from bs4.tests import test_htmlparser
|
|
from bs4.testing import (
|
|
HTMLTreeBuilderSmokeTest,
|
|
XMLTreeBuilderSmokeTest,
|
|
SoupTest,
|
|
skipIf,
|
|
)
|
|
|
|
@skipIf(
|
|
not LXML_PRESENT,
|
|
"lxml seems not to be present, not testing its tree builder.")
|
|
class LXMLTreeBuilderSmokeTest(SoupTest, HTMLTreeBuilderSmokeTest):
|
|
"""See ``HTMLTreeBuilderSmokeTest``."""
|
|
|
|
@property
|
|
def default_builder(self):
|
|
return LXMLTreeBuilder()
|
|
|
|
def test_out_of_range_entity(self):
|
|
self.assertSoupEquals(
|
|
"<p>foo�bar</p>", "<p>foobar</p>")
|
|
self.assertSoupEquals(
|
|
"<p>foo�bar</p>", "<p>foobar</p>")
|
|
self.assertSoupEquals(
|
|
"<p>foo�bar</p>", "<p>foobar</p>")
|
|
|
|
# In lxml < 2.3.5, an empty doctype causes a segfault. Skip this
|
|
# test if an old version of lxml is installed.
|
|
|
|
@skipIf(
|
|
not LXML_PRESENT or LXML_VERSION < (2,3,5,0),
|
|
"Skipping doctype test for old version of lxml to avoid segfault.")
|
|
def test_empty_doctype(self):
|
|
soup = self.soup("<!DOCTYPE>")
|
|
doctype = soup.contents[0]
|
|
self.assertEqual("", doctype.strip())
|
|
|
|
def test_beautifulstonesoup_is_xml_parser(self):
|
|
# Make sure that the deprecated BSS class uses an xml builder
|
|
# if one is installed.
|
|
with warnings.catch_warnings(record=True) as w:
|
|
soup = BeautifulStoneSoup("<b />")
|
|
self.assertEqual(u"<b/>", unicode(soup.b))
|
|
self.assertTrue("BeautifulStoneSoup class is deprecated" in str(w[0].message))
|
|
|
|
def test_real_xhtml_document(self):
|
|
"""lxml strips the XML definition from an XHTML doc, which is fine."""
|
|
markup = b"""<?xml version="1.0" encoding="utf-8"?>
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN">
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head><title>Hello.</title></head>
|
|
<body>Goodbye.</body>
|
|
</html>"""
|
|
soup = self.soup(markup)
|
|
self.assertEqual(
|
|
soup.encode("utf-8").replace(b"\n", b''),
|
|
markup.replace(b'\n', b'').replace(
|
|
b'<?xml version="1.0" encoding="utf-8"?>', b''))
|
|
|
|
|
|
@skipIf(
|
|
not LXML_PRESENT,
|
|
"lxml seems not to be present, not testing its XML tree builder.")
|
|
class LXMLXMLTreeBuilderSmokeTest(SoupTest, XMLTreeBuilderSmokeTest):
|
|
"""See ``HTMLTreeBuilderSmokeTest``."""
|
|
|
|
@property
|
|
def default_builder(self):
|
|
return LXMLTreeBuilderForXML()
|