1
0
mirror of https://github.com/mikf/gallery-dl.git synced 2024-11-22 02:32:33 +01:00
gallery-dl/test/test_extractors.py

72 lines
2.2 KiB
Python
Raw Normal View History

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
2017-01-09 12:27:20 +01:00
# Copyright 2015-2017 Mike Fährmann
#
# 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.
import sys
import unittest
2017-01-09 12:27:20 +01:00
from gallery_dl import extractor, job, config
2015-12-15 23:45:40 +01:00
class TestExtractors(unittest.TestCase):
2016-02-18 15:53:53 +01:00
def setUp(self):
name = "gallerydl"
email = "gallerydl@openaliasbox.org"
config.set(("cache", "file"), ":memory:")
config.set(("username",), name)
config.set(("password",), name)
config.set(("extractor", "nijie", "username"), email)
config.set(("extractor", "seiga", "username"), email)
2017-01-09 12:27:20 +01:00
def _run_test(self, extr, url, result):
2016-07-23 17:50:42 +02:00
hjob = job.HashJob(url, "content" in result)
self.assertEqual(extr, hjob.extractor.__class__)
2016-12-30 01:41:17 +01:00
if "exception" in result:
self.assertRaises(result["exception"], hjob.run)
return
hjob.run()
2015-12-13 03:56:29 +01:00
if "url" in result:
self.assertEqual(hjob.hash_url.hexdigest(), result["url"])
if "keyword" in result:
self.assertEqual(hjob.hash_keyword.hexdigest(), result["keyword"])
if "content" in result:
self.assertEqual(hjob.hash_content.hexdigest(), result["content"])
2016-02-18 15:53:53 +01:00
2017-01-09 12:27:20 +01:00
# dynamically genetate tests
def _generate_test(extr, tcase):
2016-02-18 15:53:53 +01:00
def test(self):
2017-01-09 12:27:20 +01:00
url, result = tcase
print("\n", url, sep="")
self._run_test(extr, url, result)
2016-02-18 15:53:53 +01:00
return test
# enable selective testing for direct calls
extractors = extractor.extractors()
if __name__ == '__main__' and len(sys.argv) > 1:
extractors = [
extr for extr in extractors
if extr.category in sys.argv
]
del sys.argv[1:]
2016-02-18 15:53:53 +01:00
skip = ["exhentai", "kissmanga", "mangafox"]
for extr in extractors:
if extr.category in skip:
2017-01-09 12:27:20 +01:00
continue
if hasattr(extr, "test") and extr.test:
name = "test_" + extr.__name__ + "_"
for num, tcase in enumerate(extr.test, 1):
test = _generate_test(extr, tcase)
test.__name__ = name + str(num)
setattr(TestExtractors, test.__name__, test)
del test
2017-01-09 12:27:20 +01:00
if __name__ == '__main__':
unittest.main(warnings='ignore')