mirror of
https://github.com/moparisthebest/SickRage
synced 2024-11-13 04:45:08 -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!
91 lines
3.1 KiB
Plaintext
91 lines
3.1 KiB
Plaintext
{
|
|
"tests": [
|
|
{
|
|
"description":"CR in bogus comment state",
|
|
"input":"<?\u000d",
|
|
"output":["ParseError", ["Comment", "?\u000a"]]
|
|
},
|
|
{
|
|
"description":"CRLF in bogus comment state",
|
|
"input":"<?\u000d\u000a",
|
|
"output":["ParseError", ["Comment", "?\u000a"]]
|
|
},
|
|
{
|
|
"description":"NUL in RCDATA and RAWTEXT",
|
|
"doubleEscaped":true,
|
|
"initialStates":["RCDATA state", "RAWTEXT state"],
|
|
"input":"\\u0000",
|
|
"output":["ParseError", ["Character", "\\uFFFD"]]
|
|
},
|
|
{
|
|
"description":"skip first BOM but not later ones",
|
|
"input":"\uFEFFfoo\uFEFFbar",
|
|
"output":[["Character", "foo\uFEFFbar"]]
|
|
},
|
|
{
|
|
"description":"Non BMP-charref in in RCDATA",
|
|
"initialStates":["RCDATA state"],
|
|
"input":"≂̸",
|
|
"output":[["Character", "\u2242\u0338"]]
|
|
},
|
|
{
|
|
"description":"Bad charref in in RCDATA",
|
|
"initialStates":["RCDATA state"],
|
|
"input":"&NotEqualTild;",
|
|
"output":["ParseError", ["Character", "&NotEqualTild;"]]
|
|
},
|
|
{
|
|
"description":"lowercase endtags in RCDATA and RAWTEXT",
|
|
"initialStates":["RCDATA state", "RAWTEXT state"],
|
|
"lastStartTag":"xmp",
|
|
"input":"</XMP>",
|
|
"output":[["EndTag","xmp"]]
|
|
},
|
|
{
|
|
"description":"bad endtag in RCDATA and RAWTEXT",
|
|
"initialStates":["RCDATA state", "RAWTEXT state"],
|
|
"lastStartTag":"xmp",
|
|
"input":"</ XMP>",
|
|
"output":[["Character","</ XMP>"]]
|
|
},
|
|
{
|
|
"description":"bad endtag in RCDATA and RAWTEXT",
|
|
"initialStates":["RCDATA state", "RAWTEXT state"],
|
|
"lastStartTag":"xmp",
|
|
"input":"</xm>",
|
|
"output":[["Character","</xm>"]]
|
|
},
|
|
{
|
|
"description":"bad endtag in RCDATA and RAWTEXT",
|
|
"initialStates":["RCDATA state", "RAWTEXT state"],
|
|
"lastStartTag":"xmp",
|
|
"input":"</xm ",
|
|
"output":[["Character","</xm "]]
|
|
},
|
|
{
|
|
"description":"bad endtag in RCDATA and RAWTEXT",
|
|
"initialStates":["RCDATA state", "RAWTEXT state"],
|
|
"lastStartTag":"xmp",
|
|
"input":"</xm/",
|
|
"output":[["Character","</xm/"]]
|
|
},
|
|
{
|
|
"description":"Non BMP-charref in attribute",
|
|
"input":"<p id=\"≂̸\">",
|
|
"output":[["StartTag", "p", {"id":"\u2242\u0338"}]]
|
|
},
|
|
{
|
|
"description":"--!NUL in comment ",
|
|
"doubleEscaped":true,
|
|
"input":"<!----!\\u0000-->",
|
|
"output":["ParseError", ["Comment", "--!\\uFFFD"]]
|
|
},
|
|
{
|
|
"description":"space EOF after doctype ",
|
|
"input":"<!DOCTYPE html ",
|
|
"output":["ParseError", ["DOCTYPE", "html", null, null , false]]
|
|
}
|
|
|
|
]
|
|
}
|