Minor upgrades and test fixes.
[wolnelektury.git] / src / catalogue / test_utils.py
1 # This file is part of Wolne Lektury, licensed under GNU Affero GPLv3 or later.
2 # Copyright © Fundacja Wolne Lektury. See NOTICE for more information.
3 #
4 from os.path import abspath, dirname, join
5 import tempfile
6 from traceback import extract_stack
7 from django.conf import settings
8 from django.test import TestCase
9 from django.test.utils import override_settings
10 from slugify import slugify
11 from librarian import WLURI
12
13
14 @override_settings(
15     MEDIA_ROOT=tempfile.mkdtemp(prefix='djangotest_'),
16     CATALOGUE_DONT_BUILD={'pdf', 'mobi', 'epub', 'txt', 'fb2', 'cover'},
17     NO_SEARCH_INDEX=True,
18     CELERY_TASK_ALWAYS_EAGER=True,
19     CACHES={
20         'default': {'BACKEND': 'django.core.cache.backends.dummy.DummyCache'},
21     },
22 )
23 class WLTestCase(TestCase):
24     """
25         Generic base class for tests. Adds settings freeze and clears MEDIA_ROOT.
26     """
27     longMessage = True
28
29
30 class PersonStub:
31
32     def __init__(self, first_names, last_name):
33         self.first_names = first_names
34         self.last_name = last_name
35
36     def readable(self):
37         return " ".join(self.first_names + (self.last_name,))
38
39
40 class BookInfoStub:
41     _empty_fields = ['cover_url', 'variant_of']
42     # allow single definition for multiple-value fields
43     _salias = {
44         'authors': 'author',
45         'genres': 'genre',
46         'epochs': 'epoch',
47         'kinds': 'kind',
48     }
49
50     def __init__(self, **kwargs):
51         self.__dict = kwargs
52
53     def __setattr__(self, key, value):
54         if not key.startswith('_'):
55             self.__dict[key] = value
56         return object.__setattr__(self, key, value)
57
58     def __getattr__(self, key):
59         try:
60             return self.__dict[key]
61         except KeyError as e:
62             if key in self._empty_fields:
63                 return None
64             if key in self._salias:
65                 return [getattr(self, self._salias[key])]
66             raise AttributeError(e)
67
68     def to_dict(self):
69         return dict((key, str(value)) for key, value in self.__dict.items())
70
71
72 def info_args(title, language=None):
73     """ generate some keywords for comfortable BookInfoCreation  """
74     slug = str(slugify(title))
75     if language is None:
76         language = 'pol'
77     return {
78         'title': str(title),
79         'url': WLURI(slug),
80         'about': "http://wolnelektury.pl/example/URI/%s" % slug,
81         'language': language,
82     }
83
84
85 def get_fixture(path, app=None):
86     if app is not None:
87         mod_path = app.__file__
88         f_path = join(dirname(abspath(mod_path)), 'tests/files', path)
89     else:
90         mod_path = extract_stack(limit=2)[0][0]
91         f_path = join(dirname(abspath(mod_path)), 'files', path)
92     return f_path
93
94
95 def get_mp3_length(path):
96     return 60