-
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
1 changed file
with
178 additions
and
0 deletions.
There are no files selected for viewing
178 changes: 178 additions & 0 deletions
178
.../kotlin/team/comit/simtong/domain/schedule/usecase/ChangeIndividualScheduleUseCaseTest.kt
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 |
---|---|---|
@@ -0,0 +1,178 @@ | ||
package team.comit.simtong.domain.schedule.usecase | ||
|
||
import org.junit.jupiter.api.BeforeEach | ||
import org.junit.jupiter.api.Test | ||
import org.junit.jupiter.api.assertDoesNotThrow | ||
import org.junit.jupiter.api.assertThrows | ||
import org.junit.jupiter.api.extension.ExtendWith | ||
import org.mockito.Mock | ||
import org.mockito.kotlin.given | ||
import org.springframework.boot.test.mock.mockito.MockBean | ||
import org.springframework.test.context.junit.jupiter.SpringExtension | ||
import team.comit.simtong.domain.schedule.dto.ChangeIndividualScheduleRequest | ||
import team.comit.simtong.domain.schedule.exception.NotScheduleOwnerException | ||
import team.comit.simtong.domain.schedule.exception.ScheduleNotFoundException | ||
import team.comit.simtong.domain.schedule.model.Schedule | ||
import team.comit.simtong.domain.schedule.model.Scope | ||
import team.comit.simtong.domain.schedule.spi.CommandSchedulePort | ||
import team.comit.simtong.domain.schedule.spi.QuerySchedulePort | ||
import team.comit.simtong.domain.schedule.spi.ScheduleQueryUserPort | ||
import team.comit.simtong.domain.schedule.spi.ScheduleSecurityPort | ||
import team.comit.simtong.domain.user.exception.UserNotFoundException | ||
import team.comit.simtong.domain.user.model.Authority | ||
import team.comit.simtong.domain.user.model.User | ||
import java.time.LocalDate | ||
import java.time.LocalTime | ||
import java.util.UUID | ||
|
||
@ExtendWith(SpringExtension::class) | ||
class ChangeIndividualScheduleUseCaseTest { | ||
|
||
@MockBean | ||
private lateinit var queryUserPort: ScheduleQueryUserPort | ||
|
||
@MockBean | ||
private lateinit var querySchedulePort: QuerySchedulePort | ||
|
||
@MockBean | ||
private lateinit var commandSchedulePort: CommandSchedulePort | ||
|
||
@Mock | ||
private lateinit var securityPort: ScheduleSecurityPort | ||
|
||
private lateinit var changeIndividualScheduleUseCase: ChangeIndividualScheduleUseCase | ||
|
||
@BeforeEach | ||
fun setUp() { | ||
changeIndividualScheduleUseCase = ChangeIndividualScheduleUseCase( | ||
queryUserPort = queryUserPort, | ||
querySchedulePort = querySchedulePort, | ||
commandSchedulePort = commandSchedulePort, | ||
securityPort = securityPort | ||
) | ||
} | ||
|
||
private val userId = UUID.randomUUID() | ||
|
||
private val spotId = UUID.randomUUID() | ||
|
||
private val scheduleId= UUID.randomUUID() | ||
|
||
private val userStub: User by lazy { | ||
User( | ||
id = userId, | ||
nickname = "test nickname", | ||
name = "test name", | ||
email = "[email protected]", | ||
password = "test password", | ||
employeeNumber = 1234567890, | ||
authority = Authority.ROLE_COMMON, | ||
spotId = UUID.randomUUID(), | ||
teamId = UUID.randomUUID(), | ||
profileImagePath = "test profile image" | ||
) | ||
} | ||
|
||
private val scheduleStub: Schedule by lazy { | ||
Schedule( | ||
id = scheduleId, | ||
userId = userId, | ||
spotId = spotId, | ||
title = "test title", | ||
scope = Scope.INDIVIDUAL, | ||
startAt = LocalDate.now(), | ||
endAt = LocalDate.now(), | ||
alarmTime = Schedule.DEFAULT_ALARM_TIME | ||
) | ||
} | ||
|
||
private val requestStub: ChangeIndividualScheduleRequest by lazy { | ||
ChangeIndividualScheduleRequest( | ||
scheduleId = scheduleId, | ||
title = "test title", | ||
startAt = LocalDate.now(), | ||
endAt = LocalDate.now(), | ||
alarm = LocalTime.now() | ||
) | ||
} | ||
|
||
@Test | ||
fun `개인 일정 변경 성공`() { | ||
// given | ||
given(securityPort.getCurrentUserId()) | ||
.willReturn(userId) | ||
|
||
given(querySchedulePort.queryScheduleById(requestStub.scheduleId)) | ||
.willReturn(scheduleStub) | ||
|
||
given(queryUserPort.queryUserById(userId)) | ||
.willReturn(userStub) | ||
|
||
// when & then | ||
assertDoesNotThrow { | ||
changeIndividualScheduleUseCase.execute(requestStub) | ||
} | ||
} | ||
|
||
@Test | ||
fun `소유자가 아님`() { | ||
// given | ||
val otherScheduleStub = Schedule( | ||
id = scheduleId, | ||
userId = UUID.randomUUID(), | ||
spotId = spotId, | ||
title = "test title", | ||
scope = Scope.INDIVIDUAL, | ||
startAt = LocalDate.now(), | ||
endAt = LocalDate.now(), | ||
alarmTime = Schedule.DEFAULT_ALARM_TIME | ||
) | ||
|
||
given(securityPort.getCurrentUserId()) | ||
.willReturn(userId) | ||
|
||
given(querySchedulePort.queryScheduleById(requestStub.scheduleId)) | ||
.willReturn(otherScheduleStub) | ||
|
||
given(queryUserPort.queryUserById(userId)) | ||
.willReturn(userStub) | ||
|
||
// when & then | ||
assertThrows<NotScheduleOwnerException> { | ||
changeIndividualScheduleUseCase.execute(requestStub) | ||
} | ||
} | ||
|
||
@Test | ||
fun `유저를 찾을 수 없음`() { | ||
// given | ||
given(securityPort.getCurrentUserId()) | ||
.willReturn(userId) | ||
|
||
given(querySchedulePort.queryScheduleById(requestStub.scheduleId)) | ||
.willReturn(scheduleStub) | ||
|
||
given(queryUserPort.queryUserById(userId)) | ||
.willReturn(null) | ||
|
||
// when & then | ||
assertThrows<UserNotFoundException> { | ||
changeIndividualScheduleUseCase.execute(requestStub) | ||
} | ||
} | ||
|
||
@Test | ||
fun `일정을 찾을 수 없음`() { | ||
// given | ||
given(securityPort.getCurrentUserId()) | ||
.willReturn(userId) | ||
|
||
given(querySchedulePort.queryScheduleById(requestStub.scheduleId)) | ||
.willReturn(null) | ||
|
||
// when & then | ||
assertThrows<ScheduleNotFoundException> { | ||
changeIndividualScheduleUseCase.execute(requestStub) | ||
} | ||
} | ||
} |