X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/f1ec080b394326e35074c57e682789176cd3f244..e883fa899b3df6e047f9e821a7ca81f53a02ddba:/apps/catalogue/tests/book_import.py
diff --git a/apps/catalogue/tests/book_import.py b/apps/catalogue/tests/book_import.py
index 3cb94cb98..6ece3287e 100644
--- a/apps/catalogue/tests/book_import.py
+++ b/apps/catalogue/tests/book_import.py
@@ -1,20 +1,27 @@
# -*- coding: utf-8 -*-
-from django.core.files.base import ContentFile
+from __future__ import with_statement
+
+from django.core.files.base import ContentFile, File
from catalogue.test_utils import *
from catalogue import models
+from librarian import WLURI
+
+from nose.tools import raises
+from os import path, makedirs
class BookImportLogicTests(WLTestCase):
def setUp(self):
WLTestCase.setUp(self)
self.book_info = BookInfoStub(
- url=u"http://wolnelektury.pl/example/default_book",
+ url=WLURI.from_slug(u"default-book"),
about=u"http://wolnelektury.pl/example/URI/default_book",
title=u"Default Book",
author=PersonStub(("Jim",), "Lazy"),
kind="X-Kind",
genre="X-Genre",
epoch="X-Epoch",
+ language=u"pol",
)
self.expected_tags = [
@@ -30,7 +37,7 @@ class BookImportLogicTests(WLTestCase):
book = models.Book.from_text_and_meta(ContentFile(BOOK_TEXT), self.book_info)
self.assertEqual(book.title, "Default Book")
- self.assertEqual(book.slug, "default_book")
+ self.assertEqual(book.slug, "default-book")
self.assert_(book.parent is None)
self.assertFalse(book.has_html_file())
@@ -40,7 +47,6 @@ class BookImportLogicTests(WLTestCase):
# TODO: this should be filled out probably...
self.assertEqual(book.wiki_link, '')
self.assertEqual(book.gazeta_link, '')
- self.assertEqual(book._short_html, '')
self.assertEqual(book.description, '')
tags = [ (tag.category, tag.slug) for tag in book.tags ]
@@ -78,6 +84,39 @@ class BookImportLogicTests(WLTestCase):
self.assert_(('theme', 'love') in [ (tag.category, tag.slug) for tag in book.fragments.all()[0].tags ])
+ def test_book_with_empty_theme(self):
+ """ empty themes should be ignored """
+
+ BOOK_TEXT = """
+
+ , Love , , Ala ma kota
+
+ """
+
+ book = models.Book.from_text_and_meta(ContentFile(BOOK_TEXT), self.book_info)
+ self.assert_([('theme', 'love')],
+ [ (tag.category, tag.slug) for tag in book.fragments.all()[0].tags.filter(category='theme') ])
+
+ def test_book_with_no_theme(self):
+ """ fragments with no themes shouldn't be created at all """
+
+ BOOK_TEXT = """
+
+ Ala ma kota
+
+ """
+
+ book = models.Book.from_text_and_meta(ContentFile(BOOK_TEXT), self.book_info)
+ self.assertEqual(book.fragments.count(), 0)
+ self.assertEqual(book.tags.filter(category='theme').count(), 0)
+
+ @raises(ValueError)
+ def test_book_with_invalid_slug(self):
+ """ Book with invalid characters in slug shouldn't be imported """
+ self.book_info.url = WLURI.from_slug(u"default_book")
+ BOOK_TEXT = ""
+ book = models.Book.from_text_and_meta(ContentFile(BOOK_TEXT), self.book_info)
+
def test_book_replace_title(self):
BOOK_TEXT = """"""
book = models.Book.from_text_and_meta(ContentFile(BOOK_TEXT), self.book_info)
@@ -107,6 +146,29 @@ class BookImportLogicTests(WLTestCase):
# the old tag shouldn't disappear
models.Tag.objects.get(slug="jim-lazy", category="author")
+ def test_book_remove_fragment(self):
+ BOOK_TEXT = """
+
+
+ LoveAla ma kota
+ HatredTo kot Ali
+
+
+ """
+ BOOK_TEXT_AFTER = """
+
+
+ LoveAla ma kota
+ To kot Ali
+
+
+ """
+
+ book = models.Book.from_text_and_meta(ContentFile(BOOK_TEXT), self.book_info)
+ self.assertEqual(book.fragments.count(), 2)
+ book = models.Book.from_text_and_meta(ContentFile(BOOK_TEXT_AFTER), self.book_info, overwrite=True)
+ self.assertEqual(book.fragments.count(), 1)
+
def test_multiple_tags(self):
BOOK_TEXT = """"""
self.book_info.authors = self.book_info.author, PersonStub(("Joe",), "Dilligent"),
@@ -127,3 +189,121 @@ class BookImportLogicTests(WLTestCase):
tags.sort()
self.assertEqual(tags, self.expected_tags)
+
+
+class ChildImportTests(WLTestCase):
+
+ def setUp(self):
+ WLTestCase.setUp(self)
+ self.child_info = BookInfoStub(
+ genre='X-Genre',
+ epoch='X-Epoch',
+ kind='X-Kind',
+ author=PersonStub(("Joe",), "Doe"),
+ **info_args("Child")
+ )
+
+ self.parent_info = BookInfoStub(
+ genre='X-Genre',
+ epoch='X-Epoch',
+ kind='X-Kind',
+ author=PersonStub(("Jim",), "Lazy"),
+ parts=[self.child_info.url],
+ **info_args("Parent")
+ )
+
+ def test_child(self):
+ TEXT = """"""
+ child = models.Book.from_text_and_meta(ContentFile(TEXT), self.child_info)
+ parent = models.Book.from_text_and_meta(ContentFile(TEXT), self.parent_info)
+ author = parent.tags.get(category='author')
+ books = self.client.get(author.get_absolute_url()).context['object_list']
+ self.assertEqual(len(books), 1,
+ "Only parent book should be visible on author's page")
+
+ def test_child_replace(self):
+ PARENT_TEXT = """"""
+ CHILD_TEXT = """
+
+ PiesAla ma kota
+
+ """
+ child = models.Book.from_text_and_meta(ContentFile(CHILD_TEXT), self.child_info)
+ parent = models.Book.from_text_and_meta(ContentFile(PARENT_TEXT), self.parent_info)
+ CHILD_TEXT = """
+
+ KotAla ma kota
+
+ """
+ child = models.Book.from_text_and_meta(ContentFile(CHILD_TEXT), self.child_info, overwrite=True)
+ themes = parent.related_themes()
+ self.assertEqual(['Kot'], [tag.name for tag in themes],
+ 'wrong related theme list')
+
+
+class MultilingualBookImportTest(WLTestCase):
+ def setUp(self):
+ WLTestCase.setUp(self)
+ common_uri = WLURI.from_slug('common-slug')
+
+ self.pol_info = BookInfoStub(
+ genre='X-Genre',
+ epoch='X-Epoch',
+ kind='X-Kind',
+ author=PersonStub(("Joe",), "Doe"),
+ variant_of=common_uri,
+ **info_args(u"KsiÄ
żka")
+ )
+
+ self.eng_info = BookInfoStub(
+ genre='X-Genre',
+ epoch='X-Epoch',
+ kind='X-Kind',
+ author=PersonStub(("Joe",), "Doe"),
+ variant_of=common_uri,
+ **info_args("A book", "eng")
+ )
+
+ def test_multilingual_import(self):
+ BOOK_TEXT = """A"""
+
+ book1 = models.Book.from_text_and_meta(ContentFile(BOOK_TEXT), self.pol_info)
+ book2 = models.Book.from_text_and_meta(ContentFile(BOOK_TEXT), self.eng_info)
+
+ self.assertEqual(
+ set([b.language for b in models.Book.objects.all()]),
+ set(['pol', 'eng']),
+ 'Books imported in wrong languages.'
+ )
+
+
+class BookImportGenerateTest(WLTestCase):
+ def setUp(self):
+ WLTestCase.setUp(self)
+ xml = path.join(path.dirname(__file__), 'files/fraszka-do-anusie.xml')
+ self.book = models.Book.from_xml_file(xml)
+
+ def test_gen_pdf(self):
+ self.book.build_pdf()
+ book = models.Book.objects.get(pk=self.book.pk)
+ self.assertTrue(path.exists(book.pdf_file.path))
+
+ def test_gen_pdf_parent(self):
+ """This book contains a child."""
+ xml = path.join(path.dirname(__file__), "files/fraszki.xml")
+ parent = models.Book.from_xml_file(xml)
+ parent.build_pdf()
+ parent = models.Book.objects.get(pk=parent.pk)
+ self.assertTrue(path.exists(parent.pdf_file.path))
+
+ def test_custom_pdf(self):
+ from catalogue.tasks import build_custom_pdf
+ out = models.get_dynamic_path(None, 'test-custom', ext='pdf')
+ absoulute_path = path.join(settings.MEDIA_ROOT, out)
+
+ if not path.exists(path.dirname(absoulute_path)):
+ makedirs(path.dirname(absoulute_path))
+
+ build_custom_pdf(self.book.id,
+ customizations=['nofootnotes', '13pt', 'a4paper'], file_name=out)
+ self.assertTrue(path.exists(absoulute_path))