-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
106 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -666,9 +666,10 @@ <h1>Member</h1> | |
Pragma: no-cache | ||
Expires: 0 | ||
X-Frame-Options: DENY | ||
Content-Length: 157 | ||
Content-Length: 175 | ||
|
||
{ | ||
"memberId" : 1, | ||
"email" : "[email protected]", | ||
"name" : "kim3", | ||
"nickname" : "ssar", | ||
|
@@ -685,6 +686,7 @@ <h1>Member</h1> | |
<div class="listingblock"> | ||
<div class="content"> | ||
<pre class="CodeRay highlight nowrap"><code>{ | ||
"memberId" : 1, | ||
"email" : "[email protected]", | ||
"name" : "kim3", | ||
"nickname" : "ssar", | ||
|
@@ -713,6 +715,11 @@ <h1>Member</h1> | |
</thead> | ||
<tbody> | ||
<tr> | ||
<td class="tableblock halign-left valign-top"><p class="tableblock"><code>memberId</code></p></td> | ||
<td class="tableblock halign-left valign-top"><p class="tableblock"><code>Number</code></p></td> | ||
<td class="tableblock halign-left valign-top"><p class="tableblock">회원 식별자</p></td> | ||
</tr> | ||
<tr> | ||
<td class="tableblock halign-left valign-top"><p class="tableblock"><code>email</code></p></td> | ||
<td class="tableblock halign-left valign-top"><p class="tableblock"><code>String</code></p></td> | ||
<td class="tableblock halign-left valign-top"><p class="tableblock">이메일</p></td> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -601,7 +601,7 @@ <h1>Reply</h1> | |
{ | ||
"data" : [ { | ||
"comment" : "안녕하세요, 테스트 입니다.", | ||
"createDate" : "2022-10-21T15:53:10.671525", | ||
"createDate" : "2022-11-11T23:24:06.334438", | ||
"createdBy" : "[email protected]" | ||
} ], | ||
"totalPage" : 1, | ||
|
@@ -619,7 +619,7 @@ <h1>Reply</h1> | |
<pre class="CodeRay highlight nowrap"><code>{ | ||
"data" : [ { | ||
"comment" : "안녕하세요, 테스트 입니다.", | ||
"createDate" : "2022-10-21T15:53:10.671525", | ||
"createDate" : "2022-11-11T23:24:06.334438", | ||
"createdBy" : "[email protected]" | ||
} ], | ||
"totalPage" : 1, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -162,7 +162,7 @@ void findByEmail() throws Exception { | |
PageCustomResponse<BoardAllResponse> response = PageCustomResponse.of(new PageImpl<>(boards, pageable, 1)); | ||
|
||
|
||
when(boardReadService.findByEmail(any(), any())).thenReturn(response); | ||
when(boardReadService.getByNickname(any(), any())).thenReturn(response); | ||
|
||
mockMvc.perform(get("/api/v1/public/boards/[email protected]") | ||
.accept(MediaType.APPLICATION_JSON)) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.