Skip to content

Commit

Permalink
[TEST] refactor contact controller
Browse files Browse the repository at this point in the history
  • Loading branch information
nogamsung committed Mar 4, 2024
1 parent a9126e0 commit 5f9d8a5
Showing 1 changed file with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ class ContactControllerTest {
@MockBean private ContactService contactService;

@Test
@DisplayName("인증코드 전송 요청을 하면 201을 반환한다.")
void givenContactCreateRequest_whenSendVerificationCode_thenReturn201() throws Exception {
@DisplayName("인증코드 전송 요청을 하면 201을 반환한다")
void givenValid_whenSendVerificationCode_thenReturn201() throws Exception {
// given
ContactCreateRequest request = createValidContactCreateRequest();

Expand All @@ -60,7 +60,7 @@ void givenContactCreateRequest_whenSendVerificationCode_thenReturn201() throws E
}

@Test
@DisplayName("이메일 미입력시 인증코드 전송 요청을 하면 400을 반환한다.")
@DisplayName("이메일 미입력시 인증코드 전송 요청을 하면 400을 반환한다")
void givenBlankEmail_whenSendVerificationCode_thenReturn400() throws Exception {
// given
ContactCreateRequest request = createValidContactCreateRequest();
Expand All @@ -83,7 +83,7 @@ void givenBlankEmail_whenSendVerificationCode_thenReturn400() throws Exception {
}

@Test
@DisplayName("잘못된 이메일 포맷시 인증코드 전송 요청을 하면 400을 반환한다.")
@DisplayName("잘못된 이메일 포맷시 인증코드 전송 요청을 하면 400을 반환한다")
void givenFormatEmail_whenSendVerificationCode_thenReturn400() throws Exception {
// given
ContactCreateRequest request = createValidContactCreateRequest();
Expand All @@ -106,8 +106,8 @@ void givenFormatEmail_whenSendVerificationCode_thenReturn400() throws Exception
}

@Test
@DisplayName("인증코드 확인 요청을 하면 200을 반환한다.")
void givenContactVerifyRequest_whenVerifyCode_thenReturn200() throws Exception {
@DisplayName("인증코드 확인 요청을 하면 200을 반환한다")
void givenValid_whenVerifyCode_thenReturn200() throws Exception {
// given
ContactVerifyRequest request = createContactVerifyRequest();

Expand All @@ -128,7 +128,7 @@ void givenContactVerifyRequest_whenVerifyCode_thenReturn200() throws Exception {
}

@Test
@DisplayName("이메일 미입력시 인증코드 확인 요청을 하면 400을 반환한다.")
@DisplayName("이메일 미입력시 인증코드 확인 요청을 하면 400을 반환한다")
void givenBlankEmail_whenVerifyCode_thenReturn400() throws Exception {
// given
ContactVerifyRequest request = createContactVerifyRequest();
Expand All @@ -151,7 +151,7 @@ void givenBlankEmail_whenVerifyCode_thenReturn400() throws Exception {
}

@Test
@DisplayName("인증코드 인증코드 확인 요청을 하면 400을 반환한다.")
@DisplayName("인증코드 인증코드 확인 요청을 하면 400을 반환한다")
void givenBlankVerificationCode_whenVerifyCode_thenReturn400() throws Exception {
// given
ContactVerifyRequest request = createContactVerifyRequest();
Expand All @@ -174,7 +174,7 @@ void givenBlankVerificationCode_whenVerifyCode_thenReturn400() throws Exception
}

@Test
@DisplayName("잘못된 이메일 포맷시 인증코드 확인 요청을 하면 400을 반환한다.")
@DisplayName("잘못된 이메일 포맷시 인증코드 확인 요청을 하면 400을 반환한다")
void givenFormatEmail_whenVerifyCode_thenReturn400() throws Exception {
// given
ContactVerifyRequest request = createContactVerifyRequest();
Expand Down

0 comments on commit 5f9d8a5

Please sign in to comment.