6bc5569c69756050d3407dd003292ce1ad3b19a0
[wolnelektury.git] / src / catalogue / test_utils.py
1 # This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
2 # Copyright © Fundacja Nowoczesna Polska. 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     SOLR=settings.SOLR_TEST,
23 )
24 class WLTestCase(TestCase):
25     """
26         Generic base class for tests. Adds settings freeze and clears MEDIA_ROOT.
27     """
28     longMessage = True
29
30
31 class PersonStub:
32
33     def __init__(self, first_names, last_name):
34         self.first_names = first_names
35         self.last_name = last_name
36
37     def readable(self):
38         return " ".join(self.first_names + (self.last_name,))
39
40
41 class BookInfoStub:
42     _empty_fields = ['cover_url', 'variant_of']
43     # allow single definition for multiple-value fields
44     _salias = {
45         'authors': 'author',
46     }
47
48     def __init__(self, **kwargs):
49         self.__dict = kwargs
50
51     def __setattr__(self, key, value):
52         if not key.startswith('_'):
53             self.__dict[key] = value
54         return object.__setattr__(self, key, value)
55
56     def __getattr__(self, key):
57         try:
58             return self.__dict[key]
59         except KeyError as e:
60             if key in self._empty_fields:
61                 return None
62             if key in self._salias:
63                 return [getattr(self, self._salias[key])]
64             raise AttributeError(e)
65
66     def to_dict(self):
67         return dict((key, str(value)) for key, value in self.__dict.items())
68
69
70 def info_args(title, language=None):
71     """ generate some keywords for comfortable BookInfoCreation  """
72     slug = str(slugify(title))
73     if language is None:
74         language = 'pol'
75     return {
76         'title': str(title),
77         'url': WLURI.from_slug(slug),
78         'about': "http://wolnelektury.pl/example/URI/%s" % slug,
79         'language': language,
80     }
81
82
83 def get_fixture(path, app=None):
84     if app is not None:
85         mod_path = app.__file__
86         f_path = join(dirname(abspath(mod_path)), 'tests/files', path)
87     else:
88         mod_path = extract_stack(limit=2)[0][0]
89         f_path = join(dirname(abspath(mod_path)), 'files', path)
90     return f_path
91
92
93 def get_mp3_length(path):
94     return 60