2016-03-07 00:08:57 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
2016-10-28 22:21:41 +00:00
|
|
|
# Copyright (C) 2004-2008 Tristan Seligmann and Jonathan Jacobs
|
2014-01-05 15:50:57 +00:00
|
|
|
# Copyright (C) 2012-2014 Bastian Kleineidam
|
2019-12-29 19:50:56 +00:00
|
|
|
# Copyright (C) 2015-2019 Tobias Gruetzmacher
|
2016-04-12 23:32:15 +00:00
|
|
|
import re
|
|
|
|
|
|
|
|
from dosagelib import scraper
|
2019-12-29 19:50:56 +00:00
|
|
|
from dosagelib.plugins import old
|
2012-12-12 16:41:29 +00:00
|
|
|
|
|
|
|
|
2016-03-07 00:08:57 +00:00
|
|
|
class TestComicNames(object):
|
2012-12-12 16:41:29 +00:00
|
|
|
|
|
|
|
def test_names(self):
|
2016-04-13 20:05:44 +00:00
|
|
|
for scraperobj in scraper.get_scrapers():
|
|
|
|
name = scraperobj.name
|
2016-03-07 00:08:57 +00:00
|
|
|
assert name.count('/') <= 1
|
2012-12-12 16:41:29 +00:00
|
|
|
if '/' in name:
|
|
|
|
comicname = name.split('/')[1]
|
|
|
|
else:
|
|
|
|
comicname = name
|
2016-04-12 23:32:15 +00:00
|
|
|
assert re.sub("[^0-9a-zA-Z_]", "", comicname) == comicname
|
2019-12-29 19:50:56 +00:00
|
|
|
|
|
|
|
def test_renamed(self):
|
|
|
|
for scraperobj in scraper.get_scrapers(include_removed=True):
|
|
|
|
if not isinstance(scraperobj, old.Renamed):
|
|
|
|
continue
|
|
|
|
assert len(scraperobj.getDisabledReasons()) > 0
|
|
|
|
# Renamed scraper should only point to an non-disabled scraper
|
|
|
|
newscraper = scraper.find_scrapers(scraperobj.newname)[0]
|
|
|
|
assert len(newscraper.getDisabledReasons()) == 0
|