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.POST;
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 MultipartAdviceTraitTest implements AdviceTraitTesting {
@Test
public void multipart() throws Exception {
mvc().perform(request(POST, "http://localhost/api/handler-multipart"))
.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("not a multipart request")));
}
}