moviewyrm/bookwyrm/tests/outgoing/test_shelving.py

64 lines
2 KiB
Python
Raw Normal View History

2020-10-16 22:07:41 +00:00
from django.test import TestCase
from bookwyrm import models, outgoing
class Shelving(TestCase):
def setUp(self):
self.user = models.User.objects.create_user(
'mouse', 'mouse@mouse.com', 'mouseword',
local=True,
remote_id='http://local.com/users/mouse',
)
2020-11-03 00:28:02 +00:00
work = models.Work.objects.create(
title='Example work',
)
2020-10-16 22:07:41 +00:00
self.book = models.Edition.objects.create(
title='Example Edition',
remote_id='https://example.com/book/1',
2020-11-03 00:28:02 +00:00
parent_work=work,
2020-10-16 22:07:41 +00:00
)
self.shelf = models.Shelf.objects.create(
name='Test Shelf',
identifier='test-shelf',
user=self.user
)
# def test_handle_shelve(self):
# outgoing.handle_shelve(self.user, self.book, self.shelf)
# # make sure the book is on the shelf
# self.assertEqual(self.shelf.books.get(), self.book)
#
#
# def test_handle_shelve_to_read(self):
# shelf = models.Shelf.objects.get(identifier='to-read')
#
# outgoing.handle_shelve(self.user, self.book, shelf)
# # make sure the book is on the shelf
# self.assertEqual(shelf.books.get(), self.book)
#
#
# def test_handle_shelve_reading(self):
# shelf = models.Shelf.objects.get(identifier='reading')
#
# outgoing.handle_shelve(self.user, self.book, shelf)
# # make sure the book is on the shelf
# self.assertEqual(shelf.books.get(), self.book)
#
#
# def test_handle_shelve_read(self):
# shelf = models.Shelf.objects.get(identifier='read')
#
# outgoing.handle_shelve(self.user, self.book, shelf)
# # make sure the book is on the shelf
# self.assertEqual(shelf.books.get(), self.book)
#
#
# def test_handle_unshelve(self):
# self.shelf.books.add(self.book)
# self.shelf.save()
# self.assertEqual(self.shelf.books.count(), 1)
# outgoing.handle_unshelve(self.user, self.book, self.shelf)
# self.assertEqual(self.shelf.books.count(), 0)