fnp
/
wolnelektury.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
fix toc
[wolnelektury.git]
/
src
/
catalogue
/
test_utils.py
diff --git
a/src/catalogue/test_utils.py
b/src/catalogue/test_utils.py
index
9d87311
..
f5d98ca
100644
(file)
--- a/
src/catalogue/test_utils.py
+++ b/
src/catalogue/test_utils.py
@@
-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 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 django.test import TestCase
from django.test.utils import override_settings
-from
fnpdjango.utils.text.slughifi import slughifi
+from
slugify import slugify
from librarian import WLURI
from librarian import WLURI
-from django.conf import settings
@override_settings(
MEDIA_ROOT=tempfile.mkdtemp(prefix='djangotest_'),
@override_settings(
MEDIA_ROOT=tempfile.mkdtemp(prefix='djangotest_'),
- CATALOGUE_DONT_BUILD=
set(['pdf', 'mobi', 'epub', 'txt', 'fb2', 'cover'])
,
+ CATALOGUE_DONT_BUILD=
{'pdf', 'mobi', 'epub', 'txt', 'fb2', 'cover'}
,
NO_SEARCH_INDEX=True,
NO_SEARCH_INDEX=True,
- CELERY_ALWAYS_EAGER=True,
+ CELERY_
TASK_
ALWAYS_EAGER=True,
CACHES={
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):
"""
)
class WLTestCase(TestCase):
"""
@@
-30,7
+27,7
@@
class WLTestCase(TestCase):
longMessage = True
longMessage = True
-class PersonStub
(object)
:
+class PersonStub:
def __init__(self, first_names, last_name):
self.first_names = first_names
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,))
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 = {
_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]
def __getattr__(self, key):
try:
return self.__dict[key]
- except KeyError:
+ except KeyError
as e
:
if key in self._empty_fields:
return None
if key in self._empty_fields:
return None
-
el
if key in self._salias:
+ if key in self._salias:
return [getattr(self, self._salias[key])]
return [getattr(self, self._salias[key])]
- else:
- raise
+ raise AttributeError(e)
def to_dict(self):
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 """
def info_args(title, language=None):
""" generate some keywords for comfortable BookInfoCreation """
- slug =
unicode(slughifi
(title))
+ slug =
str(slugify
(title))
if language is None:
if language is None:
- language =
u
'pol'
+ language = 'pol'
return {
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,
}
'language': language,
}
@@
-91,3
+87,7
@@
def get_fixture(path, app=None):
mod_path = extract_stack(limit=2)[0][0]
f_path = join(dirname(abspath(mod_path)), 'files', path)
return f_path
mod_path = extract_stack(limit=2)[0][0]
f_path = join(dirname(abspath(mod_path)), 'files', path)
return f_path
+
+
+def get_mp3_length(path):
+ return 60