-
Notifications
You must be signed in to change notification settings - Fork 3
Controller Testing
Somkiat Puisungnoen edited this page Dec 28, 2020
·
5 revisions
- Postman
-
Spring Boot Testing
- @SpringBootTest
- @WebMvcTest
UserControllerSpringBootTest.java
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.boot.test.web.client.TestRestTemplate;
import static org.junit.jupiter.api.Assertions.*;
import static org.springframework.boot.test.context.SpringBootTest.WebEnvironment.*;
@SpringBootTest(webEnvironment = RANDOM_PORT)
class UserControllerSpringBootTest {
@Autowired
private TestRestTemplate restTemplate;
@Test
void getUserById() {
// Call API
UserResponse response = restTemplate.getForObject("/users/1", UserResponse.class);
// Assert
assertEquals(1,response.getId());
assertEquals("Demo",response.getName());
assertEquals(40,response.getAge());
}
}