Created
May 31, 2020 15:32
-
-
Save sonOfRa/7b396609004d1c1c1bae9be3d0dd68a7 to your computer and use it in GitHub Desktop.
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
package de.slevermann.cocktails.service; | |
import de.slevermann.cocktails.dao.UserDao; | |
import de.slevermann.cocktails.mapper.UserInfoMapper; | |
import de.slevermann.cocktails.model.db.DbUserInfo; | |
import org.junit.jupiter.api.Test; | |
import org.mockito.junit.jupiter.MockitoSettings; | |
import org.springframework.web.server.ResponseStatusException; | |
import java.util.UUID; | |
import static org.junit.jupiter.api.Assertions.*; | |
import static org.mockito.Mockito.*; | |
import static org.springframework.http.HttpStatus.*; | |
@MockitoSettings | |
public class UserServiceTest { | |
public final UserDao userDao = mock(UserDao.class); | |
public final UserInfoMapper userInfoMapper = spy(new UserInfoMapper()); | |
public final UserService userService = new UserService(userInfoMapper, userDao); | |
@Test | |
public void testGetById() { | |
when(userDao.getById(any())).thenReturn(DbUserInfo.builder() | |
.uuid(UUID.randomUUID()).providerId("providerId").build()); | |
assertNotNull(userService.getById(UUID.randomUUID()), "Service should return a user if the ID was found"); | |
verify(userInfoMapper, times(1)).dbUserInfoToUserInfo(any()); | |
} | |
@Test | |
public void testGetByIdNotFound() { | |
when(userDao.getById(any())).thenReturn(null); | |
ResponseStatusException ex = assertThrows(ResponseStatusException.class, | |
() -> userService.getById(UUID.randomUUID()), "Service should throw an exception if the ID was not found"); | |
assertEquals(NOT_FOUND, ex.getStatus(), "Response status should be 404"); | |
verify(userInfoMapper, times(0)).dbUserInfoToUserInfo(any()); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment