2021-03-08 16:49:10 +00:00
|
|
|
""" tests updating reading progress """
|
2021-02-08 17:38:28 +00:00
|
|
|
from datetime import datetime
|
2021-01-19 04:00:04 +00:00
|
|
|
from unittest.mock import patch
|
2020-11-28 02:06:24 +00:00
|
|
|
from django.test import TestCase, Client
|
|
|
|
from django.utils import timezone
|
|
|
|
|
2021-01-17 21:09:49 +00:00
|
|
|
from bookwyrm import models
|
2020-11-28 02:06:24 +00:00
|
|
|
|
2021-03-08 16:49:10 +00:00
|
|
|
|
|
|
|
@patch("bookwyrm.models.activitypub_mixin.broadcast_task.delay")
|
2020-11-28 02:06:24 +00:00
|
|
|
class ReadThrough(TestCase):
|
2021-04-26 16:15:42 +00:00
|
|
|
"""readthrough tests"""
|
2021-03-08 16:49:10 +00:00
|
|
|
|
2020-11-28 02:06:24 +00:00
|
|
|
def setUp(self):
|
2021-04-26 16:15:42 +00:00
|
|
|
"""basic user and book data"""
|
2020-11-28 02:06:24 +00:00
|
|
|
self.client = Client()
|
|
|
|
|
2021-08-02 23:05:40 +00:00
|
|
|
self.work = models.Work.objects.create(title="Example Work")
|
2020-11-28 02:06:24 +00:00
|
|
|
|
2021-08-02 23:05:40 +00:00
|
|
|
self.edition = models.Edition.objects.create(
|
|
|
|
title="Example Edition", parent_work=self.work
|
|
|
|
)
|
2020-11-28 02:06:24 +00:00
|
|
|
|
2021-08-02 23:05:40 +00:00
|
|
|
self.user = models.User.objects.create_user(
|
|
|
|
"cinco", "cinco@example.com", "seissiete", local=True, localname="cinco"
|
|
|
|
)
|
2020-11-28 02:06:24 +00:00
|
|
|
|
2021-03-08 16:49:10 +00:00
|
|
|
with patch("bookwyrm.models.activitypub_mixin.broadcast_task.delay"):
|
2021-02-08 17:38:28 +00:00
|
|
|
self.client.force_login(self.user)
|
2020-11-28 02:06:24 +00:00
|
|
|
|
2021-01-19 04:00:04 +00:00
|
|
|
def test_create_basic_readthrough(self, delay_mock):
|
2020-11-28 02:06:24 +00:00
|
|
|
"""A basic readthrough doesn't create a progress update"""
|
|
|
|
self.assertEqual(self.edition.readthrough_set.count(), 0)
|
|
|
|
|
2021-03-08 16:49:10 +00:00
|
|
|
self.client.post(
|
2021-06-09 18:16:52 +00:00
|
|
|
"/reading-status/start/{}".format(self.edition.id),
|
2021-03-08 16:49:10 +00:00
|
|
|
{
|
|
|
|
"start_date": "2020-11-27",
|
|
|
|
},
|
|
|
|
)
|
2020-11-28 02:06:24 +00:00
|
|
|
|
|
|
|
readthroughs = self.edition.readthrough_set.all()
|
|
|
|
self.assertEqual(len(readthroughs), 1)
|
|
|
|
self.assertEqual(readthroughs[0].progressupdate_set.count(), 0)
|
2021-02-08 17:38:28 +00:00
|
|
|
self.assertEqual(
|
2021-03-08 16:49:10 +00:00
|
|
|
readthroughs[0].start_date, datetime(2020, 11, 27, tzinfo=timezone.utc)
|
|
|
|
)
|
2020-11-28 08:07:04 +00:00
|
|
|
self.assertEqual(readthroughs[0].progress, None)
|
2020-11-28 02:06:24 +00:00
|
|
|
self.assertEqual(readthroughs[0].finish_date, None)
|
2021-01-19 04:00:04 +00:00
|
|
|
self.assertEqual(delay_mock.call_count, 1)
|
2020-11-28 02:06:24 +00:00
|
|
|
|
2021-01-19 04:00:04 +00:00
|
|
|
def test_create_progress_readthrough(self, delay_mock):
|
2021-04-26 16:15:42 +00:00
|
|
|
"""a readthrough with progress"""
|
2020-11-28 02:06:24 +00:00
|
|
|
self.assertEqual(self.edition.readthrough_set.count(), 0)
|
|
|
|
|
2021-03-08 16:49:10 +00:00
|
|
|
self.client.post(
|
2021-06-09 18:16:52 +00:00
|
|
|
"/reading-status/start/{}".format(self.edition.id),
|
2021-03-08 16:49:10 +00:00
|
|
|
{
|
|
|
|
"start_date": "2020-11-27",
|
|
|
|
},
|
|
|
|
)
|
2020-11-28 02:06:24 +00:00
|
|
|
|
|
|
|
readthroughs = self.edition.readthrough_set.all()
|
|
|
|
self.assertEqual(len(readthroughs), 1)
|
2021-02-08 17:38:28 +00:00
|
|
|
self.assertEqual(
|
2021-03-08 16:49:10 +00:00
|
|
|
readthroughs[0].start_date, datetime(2020, 11, 27, tzinfo=timezone.utc)
|
|
|
|
)
|
2020-11-28 02:06:24 +00:00
|
|
|
self.assertEqual(readthroughs[0].finish_date, None)
|
|
|
|
|
2020-11-28 02:17:32 +00:00
|
|
|
# Update progress
|
2021-03-08 16:49:10 +00:00
|
|
|
self.client.post(
|
|
|
|
"/edit-readthrough",
|
|
|
|
{
|
|
|
|
"id": readthroughs[0].id,
|
|
|
|
"progress": 100,
|
|
|
|
},
|
|
|
|
)
|
2020-11-28 02:17:32 +00:00
|
|
|
|
2021-03-08 16:49:10 +00:00
|
|
|
progress_updates = (
|
|
|
|
readthroughs[0].progressupdate_set.order_by("updated_date").all()
|
|
|
|
)
|
2021-06-08 22:03:50 +00:00
|
|
|
self.assertEqual(len(progress_updates), 1)
|
|
|
|
self.assertEqual(progress_updates[0].mode, models.ProgressMode.PAGE)
|
|
|
|
self.assertEqual(progress_updates[0].progress, 100)
|
2021-02-08 17:38:28 +00:00
|
|
|
|
|
|
|
# Edit doesn't publish anything
|
|
|
|
self.assertEqual(delay_mock.call_count, 1)
|
2021-01-20 06:30:51 +00:00
|
|
|
|
2021-03-08 16:49:10 +00:00
|
|
|
self.client.post(
|
|
|
|
"/delete-readthrough",
|
|
|
|
{
|
|
|
|
"id": readthroughs[0].id,
|
|
|
|
},
|
|
|
|
)
|
2021-01-20 06:30:51 +00:00
|
|
|
|
|
|
|
readthroughs = self.edition.readthrough_set.all()
|
|
|
|
updates = self.user.progressupdate_set.all()
|
|
|
|
self.assertEqual(len(readthroughs), 0)
|
|
|
|
self.assertEqual(len(updates), 0)
|