RestAssured multipart file upload

Upasana | September 12, 2020 | 3 min read | 5,811 views | Rest Assured


In this article we will learn how to test multipart/form-data file upload feature using RestAssured library, various assertions, and kotlin support.

Let’s assume you have a fileupload server that accepts a param + a file and returns a json with upload status. You can download such Spring Boot based server from this github repository:

Optionally, you can follow Spring Boot file upload with Gradle, Kotlin and Junit 5 to setup the file upload server.

REST Assured gradle setup

We will add the latest rest-assured dependencies to our gradle build file.

build.gradle
dependencies {
    testImplementation 'io.rest-assured:json-path:4.1.2'
    testImplementation 'io.rest-assured:xml-path:4.1.2'
    testImplementation 'io.rest-assured:kotlin-extensions:4.1.2'
    testImplementation group: 'io.rest-assured', name: 'rest-assured', version: '4.1.2'
}

test {
	useJUnitPlatform()  (1)
}
1 Configuring JUNIT 5 Platform

You can check the latest version of rest-assured artifacts from https://mvnrepository.com/artifact/io.rest-assured/rest-assured

REST Assured File Upload

Now we will develop a RestAssured test that uploads a file and validate the status.

Let’s assume that file upload controller has signature similar to depicted by the below HTML form:

HTML form for file upload with multipart/form-data
<form id="uploadForm" action="/fileupload" method="post" enctype="multipart/form-data">
        <input type="file" name="file" size="40">
        <input type=submit value="Upload!">
</form>

The server response for successful file upload looks like this:

File upload response
{
  "success": true
}
FileUploadTest.java
import io.restassured.http.ContentType;
import org.junit.jupiter.api.Test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.io.File;
import java.util.Date;

import static io.restassured.RestAssured.given;
import static org.hamcrest.core.IsEqual.equalTo;

public class FileUploadTest {

    private final Logger logger = LoggerFactory.getLogger(FileUploadTest.class);

    @Test
    public void fileUploadTest() {
        given()
            .param("timestamp", new Date().getTime())
            .multiPart("file", new File("/path/to/file.json"))
            .accept(ContentType.JSON)
        .when()
            .post("http://localhost:8080/fileupload")
        .then()
            .statusCode(200)
            .body("success", equalTo(true));
    }
}

REST Assured FileUpload Kotlin version

REST Assured has introduced a new module called "kotlin-extensions" which provides useful extension functions when working with Kotlin.

You can add this kotlin extension library to your project to start developing beautiful rest assured testcases written in kotlin.

build.gradle
testImplementation 'io.rest-assured:kotlin-extensions:4.1.2'

For maven users:

pom.xml
<dependency>
    <groupId>io.rest-assured</groupId>
    <artifactId>kotlin-extensions</artifactId>
    <version>4.1.2</version>
    <scope>test</scope>
</dependency>

Advantages with Kotlin

Besides a more pleasing API for Kotlin developers it also has a couple of major benefits to the Java API:

  1. All failed expectations are reported at the same time

  2. Formatting the code in your IDE won’t mess up indentation

The same file upload testcase in Kotlin will look like below:

REST Assured based Fileupload testcase in Kotlin
@Test
fun `test rest assured file upload with kotlin`() {
    val success: Boolean =
        Given {
            port(8080)
            multiPart("file", File("/path/to/file.json"))
            accept(ContentType.JSON)
        } When {
            post("http://localhost:8080/fileupload")
        } Then {
            statusCode(200)
            body("success", equalTo(true))
        } Extract {
            path("success")
        }
    println("operation status = $success")
}

That’s all.

You can download source for this article from Github repository:


Rest Assured:
  1. Rest Assured API Testing Interview Questions
  2. REST Assured Basic Authentication
  3. OAuth2 protected resources in RestAssured Testcases
See all articles in Rest Assured
Top articles in this category:
  1. Rest Assured API Testing Interview Questions
  2. Junit interview questions for SDET automation engineer
  3. 50 Java Interview Questions for SDET Automation Engineer
  4. OAuth2 protected resources in RestAssured Testcases
  5. Java Coding Problems for SDET Automation Engineer
  6. h2load for REST API benchmarking
  7. Get distinct words from a given file in Java

Recommended books for interview preparation:

Find more on this topic:
Buy interview books

Java & Microservices interview refresher for experienced developers.