2022-05-05 11:08:01 +00:00
|
|
|
""" testing import """
|
|
|
|
import pathlib
|
|
|
|
from unittest.mock import patch
|
|
|
|
|
|
|
|
from django.test import TestCase
|
|
|
|
|
|
|
|
from bookwyrm import models
|
|
|
|
from bookwyrm.importers import CalibreImporter
|
|
|
|
from bookwyrm.importers.importer import handle_imported_book
|
|
|
|
|
|
|
|
|
|
|
|
# pylint: disable=consider-using-with
|
|
|
|
@patch("bookwyrm.suggested_users.rerank_suggestions_task.delay")
|
|
|
|
@patch("bookwyrm.activitystreams.populate_stream_task.delay")
|
|
|
|
@patch("bookwyrm.activitystreams.add_book_statuses_task.delay")
|
|
|
|
class CalibreImport(TestCase):
|
|
|
|
"""importing from Calibre csv"""
|
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
"""use a test csv"""
|
|
|
|
self.importer = CalibreImporter()
|
|
|
|
datafile = pathlib.Path(__file__).parent.joinpath("../data/calibre.csv")
|
|
|
|
self.csv = open(datafile, "r", encoding=self.importer.encoding)
|
|
|
|
with patch("bookwyrm.suggested_users.rerank_suggestions_task.delay"), patch(
|
|
|
|
"bookwyrm.activitystreams.populate_stream_task.delay"
|
|
|
|
), patch("bookwyrm.lists_stream.populate_lists_task.delay"):
|
|
|
|
self.local_user = models.User.objects.create_user(
|
|
|
|
"mouse", "mouse@mouse.mouse", "password", local=True
|
|
|
|
)
|
|
|
|
|
|
|
|
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,
|
|
|
|
)
|
|
|
|
|
|
|
|
def test_create_job(self, *_):
|
|
|
|
"""creates the import job entry and checks csv"""
|
|
|
|
import_job = self.importer.create_job(
|
|
|
|
self.local_user, self.csv, False, "public"
|
|
|
|
)
|
|
|
|
|
|
|
|
import_items = (
|
|
|
|
models.ImportItem.objects.filter(job=import_job).order_by("index").all()
|
|
|
|
)
|
|
|
|
self.assertEqual(len(import_items), 1)
|
|
|
|
self.assertEqual(import_items[0].index, 0)
|
2022-05-05 19:31:56 +00:00
|
|
|
self.assertEqual(
|
|
|
|
import_items[0].normalized_data["title"], "That Ain't Witchcraft"
|
|
|
|
)
|
2022-05-05 11:08:01 +00:00
|
|
|
|
|
|
|
def test_handle_imported_book(self, *_):
|
|
|
|
"""calibre import added a book, this adds related connections"""
|
2022-05-05 19:31:56 +00:00
|
|
|
shelf = self.local_user.shelf_set.filter(
|
|
|
|
identifier=models.Shelf.TO_READ
|
|
|
|
).first()
|
2022-05-05 11:08:01 +00:00
|
|
|
self.assertIsNone(shelf.books.first())
|
|
|
|
|
|
|
|
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()
|
|
|
|
|
|
|
|
with patch("bookwyrm.models.activitypub_mixin.broadcast_task.apply_async"):
|
|
|
|
handle_imported_book(import_item)
|
|
|
|
|
|
|
|
shelf.refresh_from_db()
|
|
|
|
self.assertEqual(shelf.books.first(), self.book)
|