2020-05-10 16:11:01 +00:00
|
|
|
''' testing book data connectors '''
|
|
|
|
from dateutil import parser
|
|
|
|
from django.test import TestCase
|
|
|
|
import json
|
|
|
|
import pathlib
|
|
|
|
import pytz
|
|
|
|
|
|
|
|
from fedireads import models
|
|
|
|
from fedireads.connectors.openlibrary import Connector
|
|
|
|
from fedireads.connectors.openlibrary import get_languages, get_description
|
2020-05-10 23:41:24 +00:00
|
|
|
from fedireads.connectors.openlibrary import pick_default_edition, get_openlibrary_key
|
2020-05-10 16:11:01 +00:00
|
|
|
from fedireads.connectors.abstract_connector import SearchResult, get_date
|
|
|
|
|
|
|
|
|
|
|
|
class Openlibrary(TestCase):
|
|
|
|
def setUp(self):
|
|
|
|
models.Connector.objects.create(
|
|
|
|
identifier='openlibrary.org',
|
|
|
|
name='OpenLibrary',
|
|
|
|
connector_file='openlibrary',
|
|
|
|
base_url='https://openlibrary.org',
|
|
|
|
books_url='https://openlibrary.org',
|
|
|
|
covers_url='https://covers.openlibrary.org',
|
|
|
|
search_url='https://openlibrary.org/search?q=',
|
|
|
|
)
|
|
|
|
self.connector = Connector('openlibrary.org')
|
|
|
|
|
|
|
|
work_file = pathlib.Path(__file__).parent.joinpath(
|
|
|
|
'data/ol_work.json')
|
|
|
|
edition_file = pathlib.Path(__file__).parent.joinpath(
|
|
|
|
'data/ol_edition.json')
|
2020-05-10 21:12:03 +00:00
|
|
|
edition_list_file = pathlib.Path(__file__).parent.joinpath(
|
|
|
|
'data/ol_edition_list.json')
|
2020-05-10 16:11:01 +00:00
|
|
|
self.work_data = json.loads(work_file.read_bytes())
|
|
|
|
self.edition_data = json.loads(edition_file.read_bytes())
|
2020-05-10 21:12:03 +00:00
|
|
|
self.edition_list_data = json.loads(edition_list_file.read_bytes())
|
|
|
|
|
|
|
|
|
|
|
|
def test_is_work_data(self):
|
|
|
|
self.assertEqual(self.connector.is_work_data(self.work_data), True)
|
|
|
|
self.assertEqual(self.connector.is_work_data(self.edition_data), False)
|
|
|
|
|
|
|
|
|
|
|
|
def test_pick_default_edition(self):
|
|
|
|
edition = pick_default_edition(self.edition_list_data['entries'])
|
|
|
|
self.assertEqual(edition['key'], '/books/OL9952943M')
|
2020-05-10 16:11:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_format_search_result(self):
|
|
|
|
''' translate json from openlibrary into SearchResult '''
|
|
|
|
datafile = pathlib.Path(__file__).parent.joinpath('data/ol_search.json')
|
|
|
|
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)
|
|
|
|
self.assertEqual(result.title, 'This Is How You Lose the Time War')
|
2020-05-10 20:42:35 +00:00
|
|
|
self.assertEqual(result.key, 'https://openlibrary.org/works/OL20639540W')
|
2020-05-10 16:11:01 +00:00
|
|
|
self.assertEqual(result.author, 'Amal El-Mohtar, Max Gladstone')
|
|
|
|
self.assertEqual(result.year, 2019)
|
|
|
|
|
|
|
|
|
|
|
|
def test_get_description(self):
|
|
|
|
description = get_description(self.work_data['description'])
|
|
|
|
expected = 'First in the Old Kingdom/Abhorsen series.'
|
|
|
|
self.assertEqual(description, expected)
|
|
|
|
|
|
|
|
|
|
|
|
def test_get_date(self):
|
|
|
|
date = get_date(self.work_data['first_publish_date'])
|
|
|
|
expected = pytz.utc.localize(parser.parse('1995'))
|
|
|
|
self.assertEqual(date, expected)
|
|
|
|
|
|
|
|
|
|
|
|
def test_get_languages(self):
|
|
|
|
languages = get_languages(self.edition_data['languages'])
|
|
|
|
self.assertEqual(languages, ['English'])
|
2020-05-10 23:41:24 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_get_ol_key(self):
|
|
|
|
key = get_openlibrary_key('/books/OL27320736M')
|
|
|
|
self.assertEqual(key, 'OL27320736M')
|
|
|
|
|