2021-03-08 16:49:10 +00:00
|
|
|
""" testing import """
|
2021-01-02 17:42:50 +00:00
|
|
|
import pathlib
|
2021-01-02 19:29:50 +00:00
|
|
|
from unittest.mock import patch
|
2021-07-14 05:07:50 +00:00
|
|
|
import datetime
|
|
|
|
import pytz
|
2021-01-02 17:42:50 +00:00
|
|
|
|
|
|
|
from django.test import TestCase
|
|
|
|
|
2021-03-30 15:56:25 +00:00
|
|
|
from bookwyrm import models
|
2021-03-30 16:04:11 +00:00
|
|
|
from bookwyrm.importers import GoodreadsImporter
|
2021-11-10 16:56:28 +00:00
|
|
|
from bookwyrm.importers.importer import handle_imported_book
|
2021-01-02 17:42:50 +00:00
|
|
|
|
2021-03-08 16:49:10 +00:00
|
|
|
|
2021-07-14 05:07:50 +00:00
|
|
|
def make_date(*args):
|
2021-08-03 16:12:22 +00:00
|
|
|
"""helper function to easily generate a date obj"""
|
2021-07-14 05:07:50 +00:00
|
|
|
return datetime.datetime(*args, tzinfo=pytz.UTC)
|
|
|
|
|
|
|
|
|
2021-08-03 16:12:22 +00:00
|
|
|
# pylint: disable=consider-using-with
|
|
|
|
@patch("bookwyrm.suggested_users.rerank_suggestions_task.delay")
|
2021-09-06 21:50:33 +00:00
|
|
|
@patch("bookwyrm.activitystreams.populate_stream_task.delay")
|
2021-09-06 23:59:58 +00:00
|
|
|
@patch("bookwyrm.activitystreams.add_book_statuses_task.delay")
|
2021-01-02 17:42:50 +00:00
|
|
|
class GoodreadsImport(TestCase):
|
2021-04-26 16:15:42 +00:00
|
|
|
"""importing from goodreads csv"""
|
2021-03-08 16:49:10 +00:00
|
|
|
|
2021-01-02 17:42:50 +00:00
|
|
|
def setUp(self):
|
2021-04-26 16:15:42 +00:00
|
|
|
"""use a test csv"""
|
2021-03-21 19:30:53 +00:00
|
|
|
self.importer = GoodreadsImporter()
|
2021-03-30 16:04:11 +00:00
|
|
|
datafile = pathlib.Path(__file__).parent.joinpath("../data/goodreads.csv")
|
2021-03-08 16:49:10 +00:00
|
|
|
self.csv = open(datafile, "r", encoding=self.importer.encoding)
|
2021-09-06 21:48:45 +00:00
|
|
|
with patch("bookwyrm.suggested_users.rerank_suggestions_task.delay"), patch(
|
|
|
|
"bookwyrm.activitystreams.populate_stream_task.delay"
|
2021-12-10 04:04:47 +00:00
|
|
|
), patch("bookwyrm.lists_stream.populate_lists_task.delay"):
|
2021-11-11 17:21:28 +00:00
|
|
|
self.local_user = models.User.objects.create_user(
|
2021-08-03 16:12:22 +00:00
|
|
|
"mouse", "mouse@mouse.mouse", "password", local=True
|
|
|
|
)
|
2021-01-02 17:42:50 +00:00
|
|
|
|
2021-08-02 23:05:40 +00:00
|
|
|
work = models.Work.objects.create(title="Test Work")
|
|
|
|
self.book = models.Edition.objects.create(
|
|
|
|
title="Example Edition",
|
|
|
|
remote_id="https://example.com/book/1",
|
|
|
|
parent_work=work,
|
|
|
|
)
|
2021-01-02 19:29:50 +00:00
|
|
|
|
2021-09-06 22:09:04 +00:00
|
|
|
def test_create_job(self, *_):
|
2021-04-26 16:15:42 +00:00
|
|
|
"""creates the import job entry and checks csv"""
|
2021-11-11 17:21:28 +00:00
|
|
|
import_job = self.importer.create_job(
|
|
|
|
self.local_user, self.csv, False, "public"
|
|
|
|
)
|
2021-01-02 17:42:50 +00:00
|
|
|
|
|
|
|
import_items = models.ImportItem.objects.filter(job=import_job).all()
|
2021-01-02 19:29:50 +00:00
|
|
|
self.assertEqual(len(import_items), 3)
|
2021-01-02 17:42:50 +00:00
|
|
|
self.assertEqual(import_items[0].index, 0)
|
2021-03-08 16:49:10 +00:00
|
|
|
self.assertEqual(import_items[0].data["Book Id"], "42036538")
|
2021-11-14 15:11:48 +00:00
|
|
|
self.assertEqual(import_items[0].normalized_data["isbn_13"], '="9781250313195"')
|
2021-11-13 20:24:16 +00:00
|
|
|
self.assertEqual(import_items[0].normalized_data["isbn_10"], '="1250313198"')
|
2021-11-13 20:11:07 +00:00
|
|
|
|
2021-01-02 17:42:50 +00:00
|
|
|
self.assertEqual(import_items[1].index, 1)
|
2021-03-08 16:49:10 +00:00
|
|
|
self.assertEqual(import_items[1].data["Book Id"], "52691223")
|
2021-01-02 17:42:50 +00:00
|
|
|
self.assertEqual(import_items[2].index, 2)
|
2021-03-08 16:49:10 +00:00
|
|
|
self.assertEqual(import_items[2].data["Book Id"], "28694510")
|
2021-01-02 17:42:50 +00:00
|
|
|
|
2021-09-06 22:09:04 +00:00
|
|
|
def test_create_retry_job(self, *_):
|
2021-04-26 16:15:42 +00:00
|
|
|
"""trying again with items that didn't import"""
|
2021-11-11 17:21:28 +00:00
|
|
|
import_job = self.importer.create_job(
|
|
|
|
self.local_user, self.csv, False, "unlisted"
|
|
|
|
)
|
2021-03-08 16:49:10 +00:00
|
|
|
import_items = models.ImportItem.objects.filter(job=import_job).all()[:2]
|
|
|
|
|
2021-11-11 17:21:28 +00:00
|
|
|
retry = self.importer.create_retry_job(
|
|
|
|
self.local_user, import_job, import_items
|
|
|
|
)
|
2021-01-02 19:29:50 +00:00
|
|
|
self.assertNotEqual(import_job, retry)
|
2021-11-11 17:21:28 +00:00
|
|
|
self.assertEqual(retry.user, self.local_user)
|
2021-01-02 19:29:50 +00:00
|
|
|
self.assertEqual(retry.include_reviews, False)
|
2021-03-08 16:49:10 +00:00
|
|
|
self.assertEqual(retry.privacy, "unlisted")
|
2021-01-02 19:29:50 +00:00
|
|
|
|
|
|
|
retry_items = models.ImportItem.objects.filter(job=retry).all()
|
|
|
|
self.assertEqual(len(retry_items), 2)
|
|
|
|
self.assertEqual(retry_items[0].index, 0)
|
2021-03-08 16:49:10 +00:00
|
|
|
self.assertEqual(retry_items[0].data["Book Id"], "42036538")
|
2021-01-02 19:29:50 +00:00
|
|
|
self.assertEqual(retry_items[1].index, 1)
|
2021-03-08 16:49:10 +00:00
|
|
|
self.assertEqual(retry_items[1].data["Book Id"], "52691223")
|
2021-01-02 19:29:50 +00:00
|
|
|
|
2021-09-06 22:09:04 +00:00
|
|
|
def test_handle_imported_book(self, *_):
|
2021-04-26 16:15:42 +00:00
|
|
|
"""goodreads import added a book, this adds related connections"""
|
2021-11-11 17:21:28 +00:00
|
|
|
shelf = self.local_user.shelf_set.filter(identifier="read").first()
|
2021-01-13 21:54:01 +00:00
|
|
|
self.assertIsNone(shelf.books.first())
|
|
|
|
|
2021-11-11 17:21:28 +00:00
|
|
|
import_job = self.importer.create_job(
|
|
|
|
self.local_user, self.csv, False, "public"
|
|
|
|
)
|
|
|
|
import_item = import_job.items.first()
|
|
|
|
import_item.book = self.book
|
|
|
|
import_item.save()
|
2021-01-13 21:54:01 +00:00
|
|
|
|
2021-11-12 17:17:00 +00:00
|
|
|
with patch("bookwyrm.models.activitypub_mixin.broadcast_task.apply_async"):
|
2021-11-13 17:50:56 +00:00
|
|
|
handle_imported_book(import_item)
|
2021-01-13 21:54:01 +00:00
|
|
|
|
|
|
|
shelf.refresh_from_db()
|
|
|
|
self.assertEqual(shelf.books.first(), self.book)
|
2021-07-14 05:07:50 +00:00
|
|
|
self.assertEqual(
|
|
|
|
shelf.shelfbook_set.first().shelved_date, make_date(2020, 10, 21)
|
|
|
|
)
|
2021-01-13 21:54:01 +00:00
|
|
|
|
2021-11-11 17:21:28 +00:00
|
|
|
readthrough = models.ReadThrough.objects.get(user=self.local_user)
|
2021-01-13 21:54:01 +00:00
|
|
|
self.assertEqual(readthrough.book, self.book)
|
2021-07-14 05:07:50 +00:00
|
|
|
self.assertEqual(readthrough.start_date, make_date(2020, 10, 21))
|
|
|
|
self.assertEqual(readthrough.finish_date, make_date(2020, 10, 25))
|
2021-01-13 21:54:01 +00:00
|
|
|
|
2021-09-06 20:53:49 +00:00
|
|
|
@patch("bookwyrm.activitystreams.add_status_task.delay")
|
2021-08-03 16:12:22 +00:00
|
|
|
def test_handle_imported_book_review(self, *_):
|
2021-04-26 16:15:42 +00:00
|
|
|
"""goodreads review import"""
|
2021-11-13 18:16:05 +00:00
|
|
|
import_job = self.importer.create_job(
|
|
|
|
self.local_user, self.csv, True, "unlisted"
|
|
|
|
)
|
2021-11-11 17:21:28 +00:00
|
|
|
import_item = import_job.items.get(index=2)
|
|
|
|
import_item.book = self.book
|
|
|
|
import_item.save()
|
2021-01-13 21:54:01 +00:00
|
|
|
|
2021-11-12 17:17:00 +00:00
|
|
|
with patch("bookwyrm.models.activitypub_mixin.broadcast_task.apply_async"):
|
2021-11-13 17:50:56 +00:00
|
|
|
handle_imported_book(import_item)
|
|
|
|
|
2021-11-11 17:21:28 +00:00
|
|
|
review = models.Review.objects.get(book=self.book, user=self.local_user)
|
2021-03-08 16:49:10 +00:00
|
|
|
self.assertEqual(review.content, "mixed feelings")
|
2021-01-13 21:54:01 +00:00
|
|
|
self.assertEqual(review.rating, 2)
|
2021-07-14 05:07:50 +00:00
|
|
|
self.assertEqual(review.published_date, make_date(2019, 7, 8))
|
2021-04-26 20:48:54 +00:00
|
|
|
self.assertEqual(review.privacy, "unlisted")
|
|
|
|
|
2021-09-06 20:53:49 +00:00
|
|
|
@patch("bookwyrm.activitystreams.add_status_task.delay")
|
2021-08-03 16:12:22 +00:00
|
|
|
def test_handle_imported_book_rating(self, *_):
|
2021-04-26 20:48:54 +00:00
|
|
|
"""goodreads rating import"""
|
2021-11-11 17:21:28 +00:00
|
|
|
import_job = self.importer.create_job(
|
2021-11-13 18:16:05 +00:00
|
|
|
self.local_user, self.csv, True, "unlisted"
|
2021-04-26 20:48:54 +00:00
|
|
|
)
|
2021-11-11 17:21:28 +00:00
|
|
|
import_item = import_job.items.filter(index=0).first()
|
|
|
|
import_item.book = self.book
|
|
|
|
import_item.save()
|
2021-04-26 20:48:54 +00:00
|
|
|
|
2021-11-12 17:17:00 +00:00
|
|
|
with patch("bookwyrm.models.activitypub_mixin.broadcast_task.apply_async"):
|
2021-11-13 17:50:56 +00:00
|
|
|
handle_imported_book(import_item)
|
|
|
|
|
2021-11-11 17:21:28 +00:00
|
|
|
review = models.ReviewRating.objects.get(book=self.book, user=self.local_user)
|
2021-04-26 20:48:54 +00:00
|
|
|
self.assertIsInstance(review, models.ReviewRating)
|
2021-11-11 17:21:28 +00:00
|
|
|
self.assertEqual(review.rating, 3)
|
|
|
|
self.assertEqual(review.published_date, make_date(2020, 10, 25))
|
2021-03-08 16:49:10 +00:00
|
|
|
self.assertEqual(review.privacy, "unlisted")
|