given().pathParam("client", "my-client")
.pathParam("project", "my-project")
.multiPart("file", readFile().toFile())
.multiPart("path", "a/b")
.multiPart("filename", "sample1.txt")
.multiPart("mimetype", "text/plain")
.when()
.post("/s3/storage/{client}/{project}")
.then()
.statusCode(CREATED.getStatusCode());