2020-05-10 00:10:02 +00:00
|
|
|
''' testing models '''
|
|
|
|
from django.test import TestCase
|
|
|
|
|
|
|
|
from fedireads import models, settings
|
|
|
|
|
|
|
|
|
|
|
|
class Book(TestCase):
|
|
|
|
''' not too much going on in the books model but here we are '''
|
|
|
|
def setUp(self):
|
2020-05-13 01:56:28 +00:00
|
|
|
self.work = models.Work.objects.create(title='Example Work')
|
|
|
|
models.Edition.objects.create(title='Example Edition', parent_work=self.work)
|
2020-05-10 00:10:02 +00:00
|
|
|
|
2020-05-13 01:56:28 +00:00
|
|
|
def test_remote_id(self):
|
|
|
|
''' editions and works use the same remote_id syntax '''
|
|
|
|
expected_id = 'https://%s/book/%d' % (settings.DOMAIN, self.work.id)
|
|
|
|
self.assertEqual(self.work.get_remote_id(), expected_id)
|
|
|
|
|
|
|
|
def test_local_id(self):
|
|
|
|
''' the local_id property for books '''
|
|
|
|
expected_id = 'https://%s/book/%d' % (settings.DOMAIN, self.work.id)
|
|
|
|
self.assertEqual(self.work.local_id, expected_id)
|
2020-05-10 00:10:02 +00:00
|
|
|
|
|
|
|
def test_create_book(self):
|
|
|
|
''' you shouldn't be able to create Books (only editions and works) '''
|
|
|
|
self.assertRaises(
|
|
|
|
ValueError,
|
|
|
|
models.Book.objects.create,
|
|
|
|
title='Invalid Book'
|
|
|
|
)
|
|
|
|
|
|
|
|
def test_default_edition(self):
|
|
|
|
''' a work should always be able to produce a deafult edition '''
|
|
|
|
default_edition = models.Work.objects.first().default_edition
|
|
|
|
self.assertIsInstance(default_edition, models.Edition)
|
|
|
|
|
|
|
|
|
|
|
|
class Shelf(TestCase):
|
|
|
|
def setUp(self):
|
|
|
|
user = models.User.objects.create_user(
|
|
|
|
'mouse', 'mouse@mouse.mouse', 'mouseword')
|
|
|
|
models.Shelf.objects.create(
|
|
|
|
name='Test Shelf', identifier='test-shelf', user=user)
|
|
|
|
|
2020-05-13 01:56:28 +00:00
|
|
|
def test_remote_id(self):
|
2020-05-10 00:10:02 +00:00
|
|
|
''' editions and works use the same absolute id syntax '''
|
|
|
|
shelf = models.Shelf.objects.get(identifier='test-shelf')
|
|
|
|
expected_id = 'https://%s/user/mouse/shelf/test-shelf' % settings.DOMAIN
|
2020-05-13 01:56:28 +00:00
|
|
|
self.assertEqual(shelf.get_remote_id(), expected_id)
|