Skip to content

Commit

Permalink
[bbb-72] ✅Test: 서적 검색 API 테스트 시, 커버 이미지 URL 필드 검증 부분 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
platinouss committed Jun 28, 2024
1 parent 2ca458d commit 9353432
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,8 @@ void fetch_book_using_naver_open_api_and_save_to_database() throws Exception {
.publisher("한빛미디어")
.isbn(9791162241776L)
.tableOfContents("")
.imageUrl(
"https://shopping-phinf.pstatic.net/main_3243601/32436011847.20221228073547.jpg")
.build();
SearchBooksResult searchBooksResult = SearchBooksResult.builder()
.booksResult(List.of(bookResult))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,7 @@ void fetch_and_save_book_details_using_naver_open_api_success() throws Exception
.pubdate("20190429")
.isbn(9791162241776L)
.description("자바 ...")
.image("https://shopping-phinf.pstatic.net/main_3243601/32436011847.20221228073547.jpg")
.build();
NaverBookApiResult naverBookApiResult = NaverBookApiResult.builder()
.lastBuildDate(new Date())
Expand All @@ -184,6 +185,8 @@ void fetch_and_save_book_details_using_naver_open_api_success() throws Exception
.publisher("한빛미디어")
.isbn(9791162241776L)
.tableOfContents("")
.imageUrl(
"https://shopping-phinf.pstatic.net/main_3243601/32436011847.20221228073547.jpg")
.build();
SearchBooksResult searchBooksResult = SearchBooksResult.builder()
.booksResult(List.of(bookResult))
Expand Down

0 comments on commit 9353432

Please sign in to comment.