Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Spring Boot Testing: exception in REST controller

I have a Spring Boot application and want to cover my REST controllers by integration test. Here is my controller:

@RestController
@RequestMapping("/tools/port-scan")
public class PortScanController {
    private final PortScanService service;

    public PortScanController(final PortScanService portScanService) {
        service = portScanService;
    }

    @GetMapping("")
    public final PortScanInfo getInfo(
            @RequestParam("address") final String address,
            @RequestParam(name = "port") final int port)
            throws InetAddressException, IOException {
        return service.scanPort(address, port);
    }
}

In one of test cases I want to test that endpoint throws an exception in some circumstances. Here is my test class:

@RunWith(SpringRunner.class)
@WebMvcTest(PortScanController.class)
public class PortScanControllerIT {
    @Autowired
    private MockMvc mvc;

    private static final String PORT_SCAN_URL = "/tools/port-scan";

    @Test
    public void testLocalAddress() throws Exception {
        mvc.perform(get(PORT_SCAN_URL).param("address", "192.168.1.100").param("port", "53")).andExpect(status().isInternalServerError());
    }
}

What is the best way to do that? Current implementation doesn't handle InetAddressException which is thrown from PortScanController.getInfo() and when I start test, I receive and error:

org.springframework.web.util.NestedServletException: Request processing failed; nested exception is com.handytools.webapi.exceptions.InetAddressException: Site local IP is not supported

It is not possible to specify expected exception in @Test annotation since original InetAddressException is wrapped with NestedServletException.

like image 516
DavyJohnes Avatar asked Dec 03 '22 23:12

DavyJohnes


1 Answers

Spring Boot Test package comes with AssertJ that has very convenient way of verifying thrown exceptions.

To verify cause:

@Test
public void shouldThrowException() {
    assertThatThrownBy(() -> methodThrowingException()).hasCause(InetAddressException .class);
}

There are also few more methods that you may be interested in. I suggest having a look in docs.

like image 58
Maciej Walkowiak Avatar answered Feb 26 '23 15:02

Maciej Walkowiak