bookwyrm/bookwyrm/tests/connectors/test_bookwyrm_connector.py

57 lines
2.4 KiB
Python
Raw Normal View History

2021-03-08 16:49:10 +00:00
""" testing book data connectors """
2021-05-26 21:57:29 +00:00
from unittest.mock import patch
2020-05-10 21:53:45 +00:00
import json
import pathlib
2020-12-03 21:22:50 +00:00
from django.test import TestCase
2020-05-10 21:53:45 +00:00
from bookwyrm import models
from bookwyrm.connectors.bookwyrm_connector import Connector
2020-12-03 21:22:50 +00:00
from bookwyrm.connectors.abstract_connector import SearchResult
2020-05-10 21:53:45 +00:00
2020-09-21 15:22:58 +00:00
class BookWyrmConnector(TestCase):
2021-04-26 16:15:42 +00:00
"""this connector doesn't do much, just search"""
2021-03-08 16:49:10 +00:00
2020-05-10 21:53:45 +00:00
def setUp(self):
2021-04-26 16:15:42 +00:00
"""create the connector"""
2020-05-10 21:53:45 +00:00
models.Connector.objects.create(
2021-03-08 16:49:10 +00:00
identifier="example.com",
connector_file="bookwyrm_connector",
base_url="https://example.com",
books_url="https://example.com",
covers_url="https://example.com/images/covers",
search_url="https://example.com/search?q=",
2020-05-10 21:53:45 +00:00
)
2021-03-08 16:49:10 +00:00
self.connector = Connector("example.com")
2020-05-10 21:53:45 +00:00
2021-03-13 17:41:40 +00:00
def test_get_or_create_book_existing(self):
2021-04-26 16:15:42 +00:00
"""load book activity"""
2021-05-26 21:57:29 +00:00
with patch("bookwyrm.preview_images.generate_edition_preview_image_task.delay"):
work = models.Work.objects.create(title="Test Work")
book = models.Edition.objects.create(title="Test Edition", parent_work=work)
2021-03-13 17:41:40 +00:00
result = self.connector.get_or_create_book(book.remote_id)
self.assertEqual(book, result)
2020-05-10 21:53:45 +00:00
def test_format_search_result(self):
2021-04-26 16:15:42 +00:00
"""create a SearchResult object from search response json"""
2021-03-08 16:49:10 +00:00
datafile = pathlib.Path(__file__).parent.joinpath("../data/bw_search.json")
2020-05-10 21:53:45 +00:00
search_data = json.loads(datafile.read_bytes())
results = self.connector.parse_search_data(search_data)
self.assertIsInstance(results, list)
result = self.connector.format_search_result(results[0])
self.assertIsInstance(result, SearchResult)
2021-03-08 16:49:10 +00:00
self.assertEqual(result.title, "Jonathan Strange and Mr Norrell")
self.assertEqual(result.key, "https://example.com/book/122")
self.assertEqual(result.author, "Susanna Clarke")
2020-05-10 21:53:45 +00:00
self.assertEqual(result.year, 2017)
self.assertEqual(result.connector, self.connector)
2021-03-13 17:41:40 +00:00
def test_format_isbn_search_result(self):
2021-04-26 16:15:42 +00:00
"""just gotta attach the connector"""
2021-03-13 17:41:40 +00:00
datafile = pathlib.Path(__file__).parent.joinpath("../data/bw_search.json")
search_data = json.loads(datafile.read_bytes())
results = self.connector.parse_isbn_search_data(search_data)
result = self.connector.format_isbn_search_result(results[0])
self.assertEqual(result.connector, self.connector)