Spring Boot'ta yeniyim ve SpringBoot'ta testin nasıl çalıştığını anlamaya çalışıyorum. Aşağıdaki iki kod parçacığı arasındaki farkın ne olduğu konusunda biraz kafam karıştı:
Kod pasajı 1:
@RunWith(SpringRunner.class)
@WebMvcTest(HelloController.class)
public class HelloControllerApplicationTest {
@Autowired
private MockMvc mvc;
@Test
public void getHello() throws Exception {
mvc.perform(MockMvcRequestBuilders.get("/").accept(MediaType.APPLICATION_JSON))
.andExpect(status().isOk())
.andExpect(content().string(equalTo("Greetings from Spring Boot!")));
}
}
Bu test, @WebMvcTest
özellik dilim testi için olduğuna inandığım açıklamayı kullanıyor ve yalnızca bir web uygulamasının MVC katmanını test ediyor.
Kod parçacığı 2:
@RunWith(SpringRunner.class)
@SpringBootTest
@AutoConfigureMockMvc
public class HelloControllerTest {
@Autowired
private MockMvc mvc;
@Test
public void getHello() throws Exception {
mvc.perform(MockMvcRequestBuilders.get("/").accept(MediaType.APPLICATION_JSON))
.andExpect(status().isOk())
.andExpect(content().string(equalTo("Greetings from Spring Boot!")));
}
}
Bu test, @SpringBootTest
ek açıklamayı ve a MockMvc
. Peki bunun kod parçacığı 1'den farkı nedir? Bu neyi farklı yapıyor?
Düzenleme: Kod Parçacığı Ekleme 3 (Bunu, Bahar belgelerinde entegrasyon testi örneği olarak buldum)
@RunWith(SpringRunner.class)
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
public class HelloControllerIT {
@LocalServerPort private int port;
private URL base;
@Autowired private TestRestTemplate template;
@Before public void setUp() throws Exception {
this.base = new URL("http://localhost:" + port + "/");
}
@Test public void getHello() throws Exception {
ResponseEntity < String > response = template.getForEntity(base.toString(), String.class);
assertThat(response.getBody(), equalTo("Greetings from Spring Boot!"));
}
}