2015-12-12 15:58:07 +01:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2018-02-09 21:51:35 +01:00
|
|
|
# Copyright 2015-2018 Mike Fährmann
|
2015-12-12 15:58:07 +01:00
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License version 2 as
|
|
|
|
# published by the Free Software Foundation.
|
|
|
|
|
2018-03-13 13:11:10 +01:00
|
|
|
import os
|
2017-01-10 13:41:00 +01:00
|
|
|
import sys
|
2018-07-19 18:47:23 +02:00
|
|
|
import re
|
2015-12-12 15:58:07 +01:00
|
|
|
import unittest
|
2017-11-12 20:51:12 +01:00
|
|
|
from gallery_dl import extractor, job, config, exception
|
2017-01-09 12:27:20 +01:00
|
|
|
|
2015-12-12 15:58:07 +01:00
|
|
|
|
2018-08-15 20:41:53 +02:00
|
|
|
# these don't work on Travis CI
|
2018-03-13 13:11:10 +01:00
|
|
|
TRAVIS_SKIP = {
|
update extractor-unittest capabilities
- "count" can now be a string defining a comparison in the form of
'<operator> <value>', for example: '> 12' or '!= 1'. If its value
is not a string, it is assumed to be a concrete integer as before.
- "keyword" can now be a dictionary defining tests for individual keys.
These tests can either be a type, a concrete value or a regex
starting with "re:". Dictionaries can be stacked inside each other.
Optional keys can be indicated with a "?" before its name.
For example:
"keyword:" {
"image_id": int,
"gallery_id", 123,
"name": "re:pattern",
"user": {
"id": 321,
},
"?optional": None,
}
2017-12-30 19:05:37 +01:00
|
|
|
"exhentai", "kissmanga", "mangafox", "dynastyscans", "nijie",
|
2018-05-13 11:19:10 +02:00
|
|
|
"archivedmoe", "archiveofsins", "thebarchive", "fireden",
|
2018-08-02 14:51:51 +02:00
|
|
|
"sankaku", "idolcomplex", "mangahere",
|
2018-03-13 13:11:10 +01:00
|
|
|
}
|
update extractor-unittest capabilities
- "count" can now be a string defining a comparison in the form of
'<operator> <value>', for example: '> 12' or '!= 1'. If its value
is not a string, it is assumed to be a concrete integer as before.
- "keyword" can now be a dictionary defining tests for individual keys.
These tests can either be a type, a concrete value or a regex
starting with "re:". Dictionaries can be stacked inside each other.
Optional keys can be indicated with a "?" before its name.
For example:
"keyword:" {
"image_id": int,
"gallery_id", 123,
"name": "re:pattern",
"user": {
"id": 321,
},
"?optional": None,
}
2017-12-30 19:05:37 +01:00
|
|
|
|
2018-03-13 13:11:10 +01:00
|
|
|
# temporary issues, etc.
|
|
|
|
BROKEN = {
|
2018-11-10 19:14:54 +01:00
|
|
|
"deviantart",
|
2018-12-11 19:59:28 +01:00
|
|
|
"readcomiconline",
|
update extractor-unittest capabilities
- "count" can now be a string defining a comparison in the form of
'<operator> <value>', for example: '> 12' or '!= 1'. If its value
is not a string, it is assumed to be a concrete integer as before.
- "keyword" can now be a dictionary defining tests for individual keys.
These tests can either be a type, a concrete value or a regex
starting with "re:". Dictionaries can be stacked inside each other.
Optional keys can be indicated with a "?" before its name.
For example:
"keyword:" {
"image_id": int,
"gallery_id", 123,
"name": "re:pattern",
"user": {
"id": 321,
},
"?optional": None,
}
2017-12-30 19:05:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-11-15 14:24:18 +01:00
|
|
|
def setup_test_config():
|
|
|
|
name = "gallerydl"
|
|
|
|
email = "gallerydl@openaliasbox.org"
|
|
|
|
|
|
|
|
config.clear()
|
|
|
|
config.set(("cache", "file"), ":memory:")
|
|
|
|
config.set(("downloader", "part"), False)
|
|
|
|
config.set(("extractor", "timeout"), 60)
|
|
|
|
config.set(("extractor", "username"), name)
|
|
|
|
config.set(("extractor", "password"), name)
|
|
|
|
config.set(("extractor", "nijie", "username"), email)
|
|
|
|
config.set(("extractor", "seiga", "username"), email)
|
|
|
|
config.set(("extractor", "deviantart", "client-id"), "7777")
|
|
|
|
config.set(("extractor", "deviantart", "client-secret"),
|
|
|
|
"ff14994c744d9208e5caeec7aab4a026")
|
|
|
|
config.set(("extractor", "tumblr", "api-key"),
|
|
|
|
"0cXoHfIqVzMQcc3HESZSNsVlulGxEXGDTTZCDrRrjaa0jmuTc6")
|
|
|
|
|
|
|
|
|
2018-03-19 17:57:32 +01:00
|
|
|
class TestExtractorResults(unittest.TestCase):
|
2015-12-12 15:58:07 +01:00
|
|
|
|
2016-02-18 15:53:53 +01:00
|
|
|
def setUp(self):
|
2018-11-15 14:24:18 +01:00
|
|
|
setup_test_config()
|
2015-12-12 15:58:07 +01:00
|
|
|
|
2017-07-25 14:59:41 +02:00
|
|
|
def tearDown(self):
|
|
|
|
config.clear()
|
|
|
|
|
2017-01-09 12:27:20 +01:00
|
|
|
def _run_test(self, extr, url, result):
|
2017-10-07 13:07:34 +02:00
|
|
|
if result:
|
|
|
|
if "options" in result:
|
|
|
|
for key, value in result["options"]:
|
|
|
|
config.set(key.split("."), value)
|
2018-08-15 20:41:53 +02:00
|
|
|
if "range" in result:
|
2018-10-08 23:30:06 +02:00
|
|
|
config.set(("image-range",), result["range"])
|
2018-11-25 18:54:05 +01:00
|
|
|
config.set(("chapter-range",), result["range"])
|
2017-10-07 13:07:34 +02:00
|
|
|
content = "content" in result
|
|
|
|
else:
|
|
|
|
content = False
|
|
|
|
|
2017-10-25 12:55:36 +02:00
|
|
|
tjob = job.TestJob(url, content=content)
|
2017-02-26 02:06:56 +01:00
|
|
|
self.assertEqual(extr, tjob.extractor.__class__)
|
2017-10-07 13:07:34 +02:00
|
|
|
|
2017-06-13 23:10:42 +02:00
|
|
|
if not result:
|
|
|
|
return
|
2017-02-27 23:05:08 +01:00
|
|
|
if "exception" in result:
|
|
|
|
self.assertRaises(result["exception"], tjob.run)
|
|
|
|
return
|
2017-11-12 20:51:12 +01:00
|
|
|
try:
|
|
|
|
tjob.run()
|
2018-08-15 20:41:53 +02:00
|
|
|
except exception.StopExtraction:
|
|
|
|
pass
|
2017-11-12 20:51:12 +01:00
|
|
|
except exception.HttpError as exc:
|
2018-10-18 15:09:49 +02:00
|
|
|
if re.match(r"5\d\d: ", str(exc)):
|
2018-07-19 18:47:23 +02:00
|
|
|
self.skipTest(exc)
|
2017-11-12 20:51:12 +01:00
|
|
|
raise
|
|
|
|
|
2018-02-12 23:02:09 +01:00
|
|
|
# test archive-id uniqueness
|
|
|
|
self.assertEqual(len(set(tjob.list_archive)), len(tjob.list_archive))
|
|
|
|
|
|
|
|
# test extraction results
|
2015-12-13 03:56:29 +01:00
|
|
|
if "url" in result:
|
2017-08-25 22:01:14 +02:00
|
|
|
self.assertEqual(result["url"], tjob.hash_url.hexdigest())
|
update extractor-unittest capabilities
- "count" can now be a string defining a comparison in the form of
'<operator> <value>', for example: '> 12' or '!= 1'. If its value
is not a string, it is assumed to be a concrete integer as before.
- "keyword" can now be a dictionary defining tests for individual keys.
These tests can either be a type, a concrete value or a regex
starting with "re:". Dictionaries can be stacked inside each other.
Optional keys can be indicated with a "?" before its name.
For example:
"keyword:" {
"image_id": int,
"gallery_id", 123,
"name": "re:pattern",
"user": {
"id": 321,
},
"?optional": None,
}
2017-12-30 19:05:37 +01:00
|
|
|
|
2017-10-25 12:55:36 +02:00
|
|
|
if "content" in result:
|
|
|
|
self.assertEqual(result["content"], tjob.hash_content.hexdigest())
|
2015-12-12 15:58:07 +01:00
|
|
|
|
update extractor-unittest capabilities
- "count" can now be a string defining a comparison in the form of
'<operator> <value>', for example: '> 12' or '!= 1'. If its value
is not a string, it is assumed to be a concrete integer as before.
- "keyword" can now be a dictionary defining tests for individual keys.
These tests can either be a type, a concrete value or a regex
starting with "re:". Dictionaries can be stacked inside each other.
Optional keys can be indicated with a "?" before its name.
For example:
"keyword:" {
"image_id": int,
"gallery_id", 123,
"name": "re:pattern",
"user": {
"id": 321,
},
"?optional": None,
}
2017-12-30 19:05:37 +01:00
|
|
|
if "keyword" in result:
|
|
|
|
keyword = result["keyword"]
|
|
|
|
if isinstance(keyword, dict):
|
|
|
|
for kwdict in tjob.list_keyword:
|
|
|
|
self._test_kwdict(kwdict, keyword)
|
|
|
|
else: # assume SHA1 hash
|
|
|
|
self.assertEqual(keyword, tjob.hash_keyword.hexdigest())
|
2016-02-18 15:53:53 +01:00
|
|
|
|
update extractor-unittest capabilities
- "count" can now be a string defining a comparison in the form of
'<operator> <value>', for example: '> 12' or '!= 1'. If its value
is not a string, it is assumed to be a concrete integer as before.
- "keyword" can now be a dictionary defining tests for individual keys.
These tests can either be a type, a concrete value or a regex
starting with "re:". Dictionaries can be stacked inside each other.
Optional keys can be indicated with a "?" before its name.
For example:
"keyword:" {
"image_id": int,
"gallery_id", 123,
"name": "re:pattern",
"user": {
"id": 321,
},
"?optional": None,
}
2017-12-30 19:05:37 +01:00
|
|
|
if "count" in result:
|
|
|
|
count = result["count"]
|
|
|
|
if isinstance(count, str):
|
|
|
|
self.assertRegex(count, r"^ *(==|!=|<|<=|>|>=) *\d+ *$")
|
|
|
|
expr = "{} {}".format(len(tjob.list_url), count)
|
|
|
|
self.assertTrue(eval(expr), msg=expr)
|
|
|
|
else: # assume integer
|
|
|
|
self.assertEqual(len(tjob.list_url), count)
|
2016-02-18 15:53:53 +01:00
|
|
|
|
update extractor-unittest capabilities
- "count" can now be a string defining a comparison in the form of
'<operator> <value>', for example: '> 12' or '!= 1'. If its value
is not a string, it is assumed to be a concrete integer as before.
- "keyword" can now be a dictionary defining tests for individual keys.
These tests can either be a type, a concrete value or a regex
starting with "re:". Dictionaries can be stacked inside each other.
Optional keys can be indicated with a "?" before its name.
For example:
"keyword:" {
"image_id": int,
"gallery_id", 123,
"name": "re:pattern",
"user": {
"id": 321,
},
"?optional": None,
}
2017-12-30 19:05:37 +01:00
|
|
|
if "pattern" in result:
|
2018-09-02 21:19:44 +02:00
|
|
|
self.assertGreater(len(tjob.list_url), 0)
|
update extractor-unittest capabilities
- "count" can now be a string defining a comparison in the form of
'<operator> <value>', for example: '> 12' or '!= 1'. If its value
is not a string, it is assumed to be a concrete integer as before.
- "keyword" can now be a dictionary defining tests for individual keys.
These tests can either be a type, a concrete value or a regex
starting with "re:". Dictionaries can be stacked inside each other.
Optional keys can be indicated with a "?" before its name.
For example:
"keyword:" {
"image_id": int,
"gallery_id", 123,
"name": "re:pattern",
"user": {
"id": 321,
},
"?optional": None,
}
2017-12-30 19:05:37 +01:00
|
|
|
for url in tjob.list_url:
|
|
|
|
self.assertRegex(url, result["pattern"])
|
2017-01-30 19:40:15 +01:00
|
|
|
|
update extractor-unittest capabilities
- "count" can now be a string defining a comparison in the form of
'<operator> <value>', for example: '> 12' or '!= 1'. If its value
is not a string, it is assumed to be a concrete integer as before.
- "keyword" can now be a dictionary defining tests for individual keys.
These tests can either be a type, a concrete value or a regex
starting with "re:". Dictionaries can be stacked inside each other.
Optional keys can be indicated with a "?" before its name.
For example:
"keyword:" {
"image_id": int,
"gallery_id", 123,
"name": "re:pattern",
"user": {
"id": 321,
},
"?optional": None,
}
2017-12-30 19:05:37 +01:00
|
|
|
def _test_kwdict(self, kwdict, tests):
|
|
|
|
for key, test in tests.items():
|
|
|
|
if key.startswith("?"):
|
|
|
|
key = key[1:]
|
|
|
|
if key not in kwdict:
|
|
|
|
continue
|
|
|
|
self.assertIn(key, kwdict)
|
|
|
|
value = kwdict[key]
|
|
|
|
|
|
|
|
if isinstance(test, dict):
|
|
|
|
self._test_kwdict(kwdict[key], test)
|
|
|
|
continue
|
|
|
|
elif isinstance(test, type):
|
|
|
|
self.assertIsInstance(value, test)
|
2018-08-02 14:48:51 +02:00
|
|
|
elif isinstance(test, str) and test.startswith("re:"):
|
update extractor-unittest capabilities
- "count" can now be a string defining a comparison in the form of
'<operator> <value>', for example: '> 12' or '!= 1'. If its value
is not a string, it is assumed to be a concrete integer as before.
- "keyword" can now be a dictionary defining tests for individual keys.
These tests can either be a type, a concrete value or a regex
starting with "re:". Dictionaries can be stacked inside each other.
Optional keys can be indicated with a "?" before its name.
For example:
"keyword:" {
"image_id": int,
"gallery_id", 123,
"name": "re:pattern",
"user": {
"id": 321,
},
"?optional": None,
}
2017-12-30 19:05:37 +01:00
|
|
|
self.assertRegex(value, test[3:])
|
|
|
|
else:
|
|
|
|
self.assertEqual(value, test)
|
|
|
|
|
|
|
|
|
|
|
|
def generate_tests():
|
|
|
|
"""Dynamically generate extractor unittests"""
|
|
|
|
def _generate_test(extr, tcase):
|
|
|
|
def test(self):
|
|
|
|
url, result = tcase
|
|
|
|
print("\n", url, sep="")
|
|
|
|
self._run_test(extr, url, result)
|
|
|
|
return test
|
|
|
|
|
|
|
|
# enable selective testing for direct calls
|
|
|
|
if __name__ == '__main__' and len(sys.argv) > 1:
|
|
|
|
if sys.argv[1].lower() == "all":
|
2018-03-13 13:11:10 +01:00
|
|
|
fltr = lambda c, bc: True # noqa: E731
|
|
|
|
elif sys.argv[1].lower() == "broken":
|
|
|
|
fltr = lambda c, bc: c in BROKEN # noqa: E731
|
update extractor-unittest capabilities
- "count" can now be a string defining a comparison in the form of
'<operator> <value>', for example: '> 12' or '!= 1'. If its value
is not a string, it is assumed to be a concrete integer as before.
- "keyword" can now be a dictionary defining tests for individual keys.
These tests can either be a type, a concrete value or a regex
starting with "re:". Dictionaries can be stacked inside each other.
Optional keys can be indicated with a "?" before its name.
For example:
"keyword:" {
"image_id": int,
"gallery_id", 123,
"name": "re:pattern",
"user": {
"id": 321,
},
"?optional": None,
}
2017-12-30 19:05:37 +01:00
|
|
|
else:
|
2018-03-13 13:11:10 +01:00
|
|
|
argv = sys.argv[1:]
|
|
|
|
fltr = lambda c, bc: c in argv or bc in argv # noqa: E731
|
update extractor-unittest capabilities
- "count" can now be a string defining a comparison in the form of
'<operator> <value>', for example: '> 12' or '!= 1'. If its value
is not a string, it is assumed to be a concrete integer as before.
- "keyword" can now be a dictionary defining tests for individual keys.
These tests can either be a type, a concrete value or a regex
starting with "re:". Dictionaries can be stacked inside each other.
Optional keys can be indicated with a "?" before its name.
For example:
"keyword:" {
"image_id": int,
"gallery_id", 123,
"name": "re:pattern",
"user": {
"id": 321,
},
"?optional": None,
}
2017-12-30 19:05:37 +01:00
|
|
|
del sys.argv[1:]
|
2017-07-02 08:15:12 +02:00
|
|
|
else:
|
2018-04-29 22:37:13 +02:00
|
|
|
skip = set(BROKEN)
|
2018-03-13 13:11:10 +01:00
|
|
|
if "CI" in os.environ and "TRAVIS" in os.environ:
|
2018-04-29 22:37:13 +02:00
|
|
|
skip |= set(TRAVIS_SKIP)
|
2018-03-13 13:11:10 +01:00
|
|
|
print("skipping:", ", ".join(skip))
|
|
|
|
fltr = lambda c, bc: c not in skip # noqa: E731
|
|
|
|
|
|
|
|
# filter available extractor classes
|
|
|
|
extractors = [
|
|
|
|
extr for extr in extractor.extractors()
|
|
|
|
if fltr(
|
|
|
|
extr.category,
|
|
|
|
extr.basecategory if hasattr(extr, "basecategory") else None
|
|
|
|
)
|
|
|
|
]
|
|
|
|
|
2018-03-19 17:57:32 +01:00
|
|
|
# add 'test_...' methods
|
update extractor-unittest capabilities
- "count" can now be a string defining a comparison in the form of
'<operator> <value>', for example: '> 12' or '!= 1'. If its value
is not a string, it is assumed to be a concrete integer as before.
- "keyword" can now be a dictionary defining tests for individual keys.
These tests can either be a type, a concrete value or a regex
starting with "re:". Dictionaries can be stacked inside each other.
Optional keys can be indicated with a "?" before its name.
For example:
"keyword:" {
"image_id": int,
"gallery_id", 123,
"name": "re:pattern",
"user": {
"id": 321,
},
"?optional": None,
}
2017-12-30 19:05:37 +01:00
|
|
|
for extr in extractors:
|
|
|
|
if not hasattr(extr, "test") or not extr.test:
|
|
|
|
continue
|
2017-01-09 12:27:20 +01:00
|
|
|
name = "test_" + extr.__name__ + "_"
|
|
|
|
for num, tcase in enumerate(extr.test, 1):
|
|
|
|
test = _generate_test(extr, tcase)
|
|
|
|
test.__name__ = name + str(num)
|
2018-03-19 17:57:32 +01:00
|
|
|
setattr(TestExtractorResults, test.__name__, test)
|
2017-01-09 12:27:20 +01:00
|
|
|
|
update extractor-unittest capabilities
- "count" can now be a string defining a comparison in the form of
'<operator> <value>', for example: '> 12' or '!= 1'. If its value
is not a string, it is assumed to be a concrete integer as before.
- "keyword" can now be a dictionary defining tests for individual keys.
These tests can either be a type, a concrete value or a regex
starting with "re:". Dictionaries can be stacked inside each other.
Optional keys can be indicated with a "?" before its name.
For example:
"keyword:" {
"image_id": int,
"gallery_id", 123,
"name": "re:pattern",
"user": {
"id": 321,
},
"?optional": None,
}
2017-12-30 19:05:37 +01:00
|
|
|
|
|
|
|
generate_tests()
|
2015-12-12 15:58:07 +01:00
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main(warnings='ignore')
|