package org.zalando.problem.spring.web.advice.io; import org.junit.Test; import org.zalando.problem.spring.web.advice.AdviceTraitTesting; import static org.hamcrest.Matchers.containsString; import static org.hamcrest.Matchers.is; import static org.springframework.http.HttpMethod.GET; import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.request; import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.header; import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.jsonPath; import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; public final class TypeMistmatchAdviceTraitTest implements AdviceTraitTesting { @Test public void typeMismatch() throws Exception { mvc().perform(request(GET, "http://localhost/api/handler-conversion?dateTime=abc")) .andExpect(status().isBadRequest()) .andExpect(header().string("Content-Type", is("application/problem+json"))) .andExpect(jsonPath("$.type").doesNotExist()) .andExpect(jsonPath("$.title", is("Bad Request"))) .andExpect(jsonPath("$.status", is(400))) .andExpect(jsonPath("$.detail", containsString("Failed to convert"))); } }