def test_create(self, factory: GoogleBookFactory) -> None: item_dic = google_one_books_response().get("items", "")[0] book: GoogleBook = factory.create(item_dic) assert book.author == "author1" assert book.isbn == "9784532280208" assert book.isbn10 == "4532280206" assert book.title == "title1" assert book.description == "description1" assert book.page_count == 284 assert book.image_url == "http://books.google.com/books/content?id=xxxxx" assert book.info_url == "http://books.google.co.jp/books?id=yyyyyy" assert book.published_date == "2013-10" assert book.type == "GoogleBook"
def test_create_isbn13とisbn10がともに取れない場合(self, factory: GoogleBookFactory) -> None: item_dic = google_one_books_response().get("items", "")[0] item_dic.get("volumeInfo").pop("industryIdentifiers") with pytest.raises(InvalidResponseError): factory.create(item_dic)
def test_create_authorが取れない場合(self, factory: GoogleBookFactory) -> None: item_dic = google_one_books_response().get("items", "")[0] item_dic.get("volumeInfo").pop("authors") book: GoogleBook = factory.create(item_dic) assert book.author == "UNKNOWN"