Fundraising in PDF.
[wolnelektury.git] / src / catalogue / test_utils.py
index 8c76b89..f5d98ca 100644 (file)
@@ -1,27 +1,24 @@
-# -*- coding: utf-8 -*-
-# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
-# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
+# This file is part of Wolne Lektury, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Wolne Lektury. See NOTICE for more information.
 #
 from os.path import abspath, dirname, join
 import tempfile
 from traceback import extract_stack
+from django.conf import settings
 from django.test import TestCase
 from django.test.utils import override_settings
 from slugify import slugify
 from librarian import WLURI
-from django.conf import settings
 
 
 @override_settings(
     MEDIA_ROOT=tempfile.mkdtemp(prefix='djangotest_'),
     CATALOGUE_DONT_BUILD={'pdf', 'mobi', 'epub', 'txt', 'fb2', 'cover'},
     NO_SEARCH_INDEX=True,
-    CELERY_ALWAYS_EAGER=True,
+    CELERY_TASK_ALWAYS_EAGER=True,
     CACHES={
-            'default': {'BACKEND': 'django.core.cache.backends.dummy.DummyCache'},
-        },
-    SOLR=settings.SOLR_TEST,
-    SSIFY_RENDER=False,
+        'default': {'BACKEND': 'django.core.cache.backends.dummy.DummyCache'},
+    },
 )
 class WLTestCase(TestCase):
     """
@@ -30,7 +27,7 @@ class WLTestCase(TestCase):
     longMessage = True
 
 
-class PersonStub(object):
+class PersonStub:
 
     def __init__(self, first_names, last_name):
         self.first_names = first_names
@@ -40,7 +37,7 @@ class PersonStub(object):
         return " ".join(self.first_names + (self.last_name,))
 
 
-class BookInfoStub(object):
+class BookInfoStub:
     _empty_fields = ['cover_url', 'variant_of']
     # allow single definition for multiple-value fields
     _salias = {
@@ -58,27 +55,26 @@ class BookInfoStub(object):
     def __getattr__(self, key):
         try:
             return self.__dict[key]
-        except KeyError:
+        except KeyError as e:
             if key in self._empty_fields:
                 return None
-            elif key in self._salias:
+            if key in self._salias:
                 return [getattr(self, self._salias[key])]
-            else:
-                raise
+            raise AttributeError(e)
 
     def to_dict(self):
-        return dict((key, unicode(value)) for key, value in self.__dict.items())
+        return dict((key, str(value)) for key, value in self.__dict.items())
 
 
 def info_args(title, language=None):
     """ generate some keywords for comfortable BookInfoCreation  """
-    slug = unicode(slugify(title))
+    slug = str(slugify(title))
     if language is None:
-        language = u'pol'
+        language = 'pol'
     return {
-        'title': unicode(title),
-        'url': WLURI.from_slug(slug),
-        'about': u"http://wolnelektury.pl/example/URI/%s" % slug,
+        'title': str(title),
+        'url': WLURI(slug),
+        'about': "http://wolnelektury.pl/example/URI/%s" % slug,
         'language': language,
     }