Java tutorial
/* * Copyright 2015 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 com.jayway.restassured.examples.springmvc.controller; import com.jayway.restassured.examples.springmvc.config.MainConfiguration; import com.jayway.restassured.http.ContentType; import com.jayway.restassured.module.mockmvc.RestAssuredMockMvc; import org.apache.commons.io.IOUtils; import org.junit.After; import org.junit.Before; import org.junit.Rule; import org.junit.Test; import org.junit.rules.TemporaryFolder; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; import org.springframework.test.context.web.WebAppConfiguration; import org.springframework.web.context.WebApplicationContext; import java.io.File; import java.io.FileOutputStream; import java.io.IOException; import static com.jayway.restassured.module.mockmvc.RestAssuredMockMvc.given; import static org.hamcrest.Matchers.equalTo; import static org.hamcrest.Matchers.greaterThan; import static org.springframework.security.test.web.servlet.request.SecurityMockMvcRequestPostProcessors.csrf; @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(classes = MainConfiguration.class) @WebAppConfiguration // @formatter:off public class NonMultiPartFileUploadITest { @Autowired protected WebApplicationContext wac; @Rule public TemporaryFolder folder = new TemporaryFolder(); @Before public void configureMockMvcInstance() { RestAssuredMockMvc.postProcessors(csrf().asHeader()); RestAssuredMockMvc.webAppContextSetup(wac); } @After public void restRestAssured() { RestAssuredMockMvc.reset(); } @Test public void file_uploading_works() throws IOException { File file = folder.newFile("something"); IOUtils.write("Something21", new FileOutputStream(file)); given().contentType(ContentType.BINARY).body(file).when().post("/nonMultipartFileUpload").then() .statusCode(200).body("size", greaterThan(10)).body("content", equalTo("Something21")); } } // @formatter:on