Jestem nowy w Spring Boot i próbuję zrozumieć, jak działa testowanie w SpringBoot. Nie wiem, jaka jest różnica między następującymi dwoma fragmentami kodu:
Fragment kodu 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!")));
}
}
Ten test wykorzystuje @WebMvcTest
adnotację, która moim zdaniem służy do testowania wycinka funkcji i testuje tylko warstwę MVC aplikacji internetowej.
Fragment kodu 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!")));
}
}
Ten test używa @SpringBootTest
adnotacji i pliku MockMvc
. Czym różni się to od fragmentu kodu 1? Co to robi inaczej?
Edycja: dodawanie fragmentu kodu 3 (znaleziono to jako przykład testowania integracji w dokumentacji Spring)
@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!"));
}
}