X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/4c48c47d0b84e516114c16ee191359166e93a51c..1b718c10066557540770bb0960a773dce0ad4462:/apps/catalogue/tests.py?ds=sidebyside diff --git a/apps/catalogue/tests.py b/apps/catalogue/tests.py old mode 100644 new mode 100755 index 65777379..b73ea353 --- a/apps/catalogue/tests.py +++ b/apps/catalogue/tests.py @@ -1,19 +1,31 @@ from nose.tools import * -import wiki.models as models -import shutil -import tempfile +from mock import patch +from django.test import TestCase +from django.contrib.auth.models import User +from catalogue.models import Book, BookPublishRecord +class PublishTests(TestCase): -class TestStorageBase: def setUp(self): - self.dirpath = tempfile.mkdtemp(prefix='nosetest_') + self.user = User.objects.create(username='tester') + self.book = Book.create(self.user, 'publish me') - def tearDown(self): - shutil.rmtree(self.dirpath) + @patch('apiclient.api_call') + def test_unpublishable(self, api_call): + with self.assertRaises(Book.NoTextError): + self.book.publish(self.user) + @patch('apiclient.api_call') + def test_publish(self, api_call): + self.book[0].head.set_publishable(True) + self.book.publish(self.user) + api_call.assert_called_with(self.user, 'books', {"book_xml": 'publish me'}) -class TestDocumentStorage(TestStorageBase): - - def test_storage_empty(self): - storage = models.DocumentStorage(self.dirpath) - eq_(storage.all(), []) + @patch('apiclient.api_call') + def test_publish_multiple(self, api_call): + self.book[0].head.set_publishable(True) + self.book[0].split(slug='part-2') + self.book[1].commit('take me \n\n too') + self.book[1].head.set_publishable(True) + self.book.publish(self.user) + api_call.assert_called_with(self.user, 'books', {"book_xml": 'publish me\n too'})