/* * Copyright 2016 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package io.restassured.module.mockmvc; import io.restassured.config.LogConfig; import io.restassured.module.mockmvc.http.PutController; import io.restassured.module.mockmvc.support.Greeting; import org.apache.commons.io.output.WriterOutputStream; import org.junit.AfterClass; import org.junit.BeforeClass; import org.junit.Test; import java.io.PrintStream; import java.io.StringWriter; import static io.restassured.http.ContentType.JSON; import static io.restassured.module.mockmvc.config.RestAssuredMockMvcConfig.newConfig; import static org.hamcrest.Matchers.equalTo; import static org.junit.Assert.assertThat; import static org.springframework.test.web.servlet.setup.MockMvcBuilders.standaloneSetup; public class PutTest { @BeforeClass public static void configureMockMvcInstance() { RestAssuredMockMvc.mockMvc(standaloneSetup(new PutController()).build()); } @AfterClass public static void restRestAssured() { RestAssuredMockMvc.reset(); } @Test public void doesnt_automatically_adds_x_www_form_urlencoded_as_content_type_when_putting_params() { StringWriter writer = new StringWriter(); PrintStream captor = new PrintStream(new WriterOutputStream(writer), true); RestAssuredMockMvc.given(). config(newConfig().logConfig(new LogConfig(captor, true))). param("name", "Johan"). when(). put("/greetingPut"). then(). log().all(). statusCode(415); assertThat(writer.toString(), equalTo("415 Content type 'null' not supported\nAccept: application/x-www-form-urlencoded\n")); } @Test public void automatically_adds_x_www_form_urlencoded_as_content_type_when_putting_form_params() { RestAssuredMockMvc.given(). formParam("name", "Johan"). when(). put("/greetingPut"). then(). body("id", equalTo(1)). body("content", equalTo("Hello, Johan!")); } @Test public void can_supply_string_as_body_for_put() { RestAssuredMockMvc.given(). body("a string"). when(). put("/stringBody"). then(). body(equalTo("a string")); } @Test public void can_supply_object_as_body_and_serialize_as_json() { Greeting greeting = new Greeting(); greeting.setFirstName("John"); greeting.setLastName("Doe"); RestAssuredMockMvc.given(). contentType(JSON). body(greeting). when(). put("/jsonReflect"). then(). statusCode(200). body("firstName", equalTo("John")). body("lastName", equalTo("Doe")); } }