X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/27891467b143d11c13ae44e5051d740be6e6303c..b093329fa55998907111a1bd1a210c1a4e4100db:/apps/catalogue/tests/book_import.py
diff --git a/apps/catalogue/tests/book_import.py b/apps/catalogue/tests/book_import.py
index 09d0e1e79..4b01a8f83 100644
--- a/apps/catalogue/tests/book_import.py
+++ b/apps/catalogue/tests/book_import.py
@@ -1,7 +1,10 @@
# -*- coding: utf-8 -*-
-from __future__ import with_statement
+# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
+#
+from django.conf import settings
-from django.core.files.base import ContentFile, File
+from django.core.files.base import ContentFile
from catalogue.test_utils import *
from catalogue import models
from librarian import WLURI
@@ -115,7 +118,7 @@ class BookImportLogicTests(WLTestCase):
""" 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)
+ models.Book.from_text_and_meta(ContentFile(BOOK_TEXT), self.book_info)
def test_book_replace_title(self):
BOOK_TEXT = """"""
@@ -418,7 +421,7 @@ class BookImportGenerateTest(WLTestCase):
self.book = models.Book.from_xml_file(xml)
def test_gen_pdf(self):
- self.book.build_pdf()
+ self.book.pdf_file.build()
book = models.Book.objects.get(pk=self.book.pk)
self.assertTrue(path.exists(book.pdf_file.path))
@@ -426,16 +429,15 @@ class BookImportGenerateTest(WLTestCase):
"""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.pdf_file.build()
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
- from catalogue.utils import get_dynamic_path
- out = get_dynamic_path(None, 'test-custom', ext='pdf')
+ out = 'test-custom.pdf'
absoulute_path = path.join(settings.MEDIA_ROOT, out)
-
+
if not path.exists(path.dirname(absoulute_path)):
makedirs(path.dirname(absoulute_path))