# -*- 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 nose.tools import raises
-
+import tempfile
+from os import unlink,path
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 ]
self.assertEqual(['Kot'], [tag.name for tag in themes],
'wrong related theme list')
+
+
+class BookImportGenerateTest(WLTestCase):
+ def setUp(self):
+ WLTestCase.setUp(self)
+ input = path.join(path.dirname(__file__), 'files/fraszka-do-anusie.xml')
+ self.book = models.Book.from_xml_file(input)
+
+ def test_gen_pdf(self):
+ self.book.build_pdf()
+ self.assertTrue(path.exists(self.book.pdf_file.path))
+
+ def test_gen_pdf_parent(self):
+ """This book contains a child."""
+ input = path.join(path.dirname(__file__), "files/fraszki.xml")
+ parent = models.Book.from_xml_file(input)
+ parent.build_pdf()
+ self.assertTrue(path.exists(parent.pdf_file.path))