fnp
/
wolnelektury.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
bump librarian version
[wolnelektury.git]
/
apps
/
catalogue
/
test_utils.py
diff --git
a/apps/catalogue/test_utils.py
b/apps/catalogue/test_utils.py
index
a5f0b4f
..
58ef58a
100644
(file)
--- a/
apps/catalogue/test_utils.py
+++ b/
apps/catalogue/test_utils.py
@@
-3,6
+3,7
@@
from django.test import TestCase
import shutil
import tempfile
from slughifi import slughifi
import shutil
import tempfile
from slughifi import slughifi
+from librarian import WLURI
class WLTestCase(TestCase):
"""
class WLTestCase(TestCase):
"""
@@
-23,8
+24,16
@@
class PersonStub(object):
self.first_names = first_names
self.last_name = last_name
self.first_names = first_names
self.last_name = last_name
+ def readable(self):
+ return " ".join(self.first_names + (self.last_name,))
+
class BookInfoStub(object):
class BookInfoStub(object):
+ _empty_fields = ['cover_url']
+ # allow single definition for multiple-value fields
+ _salias = {
+ 'authors': 'author',
+ }
def __init__(self, **kwargs):
self.__dict = kwargs
def __init__(self, **kwargs):
self.__dict = kwargs
@@
-35,18
+44,28
@@
class BookInfoStub(object):
return object.__setattr__(self, key, value)
def __getattr__(self, key):
return object.__setattr__(self, key, value)
def __getattr__(self, key):
- return self.__dict[key]
+ try:
+ return self.__dict[key]
+ except KeyError:
+ if key in self._empty_fields:
+ return None
+ elif key in self._salias:
+ return [getattr(self, self._salias[key])]
+ else:
+ raise
def to_dict(self):
return dict((key, unicode(value)) for key, value in self.__dict.items())
def to_dict(self):
return dict((key, unicode(value)) for key, value in self.__dict.items())
-def info_args(title):
+def info_args(title
, language=None
):
""" generate some keywords for comfortable BookInfoCreation """
slug = unicode(slughifi(title))
""" generate some keywords for comfortable BookInfoCreation """
slug = unicode(slughifi(title))
+ if language is None:
+ language = u'pol'
return {
'title': unicode(title),
return {
'title': unicode(title),
- 'slug': slug,
- 'url': u"http://wolnelektury.pl/example/%s" % slug,
+ 'url': WLURI.from_slug_and_lang(slug, language),
'about': u"http://wolnelektury.pl/example/URI/%s" % slug,
'about': u"http://wolnelektury.pl/example/URI/%s" % slug,
+ 'language': language,
}
}