Tests für Controller, die Anforderungen akzeptieren, werden häufig mit "MockMvc" geschrieben. Wenn eine Ausnahme ausgegeben werden soll, können Sie die Ausgabeausgabe mit "org.assertj.core.api.Assertions.assertThatThrownBy" testen.
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class TestController {
@GetMapping(value = "exception")
public void throwException() {
throw new IllegalStateException("Ausnahme");
}
}
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
import org.springframework.test.web.servlet.MockMvc;
import static org.assertj.core.api.Assertions.assertThatThrownBy;
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get;
@RunWith(SpringRunner.class)
@SpringBootTest
@AutoConfigureMockMvc
public class TestControllerTest {
@Autowired
private MockMvc mockMvc;
@Test
public void throwExceptionTest() {
assertThatThrownBy(() ->
mockMvc.perform(get("/exception"))
).hasCause(new IllegalStateException("Ausnahme"));
}
}
Sie können .hasCause
verwenden, um den Inhalt der Ausnahme zu überprüfen.
[assertThatThrownBy (Referenz)](https://joel-costigliola.github.io/assertj/core-8/api/org/assertj/core/api/Assertions.html#assertThatThrownBy-org.assertj.core.api.ThrowableAssert .CrowableCallable-) How to prevent NestedServletException when testing Spring endpoints?(stack overflow)
Recommended Posts