X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/452b47c5a7bafaba6791010094d85c7c06fdac38..f16a0ea5826b6ca41abca50c462de0f852e3ec5c:/apps/catalogue/test_utils.py diff --git a/apps/catalogue/test_utils.py b/apps/catalogue/test_utils.py index d447d0cb8..5e02619f9 100644 --- a/apps/catalogue/test_utils.py +++ b/apps/catalogue/test_utils.py @@ -2,12 +2,15 @@ # This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later. # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. # +from os.path import abspath, dirname, join +import tempfile +from traceback import extract_stack from django.test import TestCase from django.test.utils import override_settings -import tempfile from slughifi import slughifi from librarian import WLURI + @override_settings( MEDIA_ROOT=tempfile.mkdtemp(prefix='djangotest_'), CATALOGUE_DONT_BUILD=set(['pdf', 'mobi', 'epub', 'txt', 'fb2', 'cover']), @@ -77,3 +80,13 @@ def info_args(title, language=None): 'about': u"http://wolnelektury.pl/example/URI/%s" % slug, 'language': language, } + + +def get_fixture(path, app=None): + if app is not None: + mod_path = app.__file__ + f_path = join(dirname(abspath(mod_path)), 'tests/files', path) + else: + mod_path = extract_stack(limit=2)[0][0] + f_path = join(dirname(abspath(mod_path)), 'files', path) + return f_path