# rest-assured **Repository Path**: xiaodebing/rest-assured ## Basic Information - **Project Name**: rest-assured - **Description**: No description available - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-04-12 - **Last Updated**: 2022-11-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ![REST Assured](rest-assured-logo-green.png) [![Build Status](https://github.com/rest-assured/rest-assured/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/rest-assured/rest-assured/actions/workflows/ci.yml) [![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.rest-assured/rest-assured/badge.svg)](https://maven-badges.herokuapp.com/maven-central/io.rest-assured/rest-assured) Testing and validation of REST services in Java is harder than in dynamic languages such as Ruby and Groovy. REST Assured brings the simplicity of using these languages into the Java domain. ## News * 2022-11-18: REST Assured 5.3.0 is released. It adds [CSRF header support](https://github.com/rest-assured/rest-assured/wiki/Usage#csrf-header-token) and a much improved [CSRF support](https://github.com/rest-assured/rest-assured/wiki/Usage#csrf) in general. It also brings the [Spring MockMvc Module](https://github.com/rest-assured/rest-assured/wiki/Spring#spring-mock-mvc-module) up-to-date with changes in Spring Framework 6 and Spring Boot 3, as well as various other bug fixes and improvements. See [changelog](https://raw.githubusercontent.com/rest-assured/rest-assured/master/changelog.txt) for more details. * 2022-11-18: REST Assured 5.2.1 is released. It just brings the [Spring MockMvc Module](https://github.com/rest-assured/rest-assured/wiki/Spring#spring-mock-mvc-module) up-to-date with changes in Spring Framework 6 and Spring Boot 3. * 2022-09-09: REST Assured 5.2.0 is released with, among other things, much improved [CRSF](https://github.com/rest-assured/rest-assured/wiki/Usage#csrf) support. See [release notes](https://github.com/rest-assured/rest-assured/wiki/ReleaseNotes52) and [change log](https://raw.githubusercontent.com/rest-assured/rest-assured/master/changelog.txt) for more details. [Older News](https://github.com/rest-assured/rest-assured/wiki/OldNews) ## Examples Here's an example of how to make a GET request and validate the JSON or XML response: ```java get("/lotto").then().assertThat().body("lotto.lottoId", equalTo(5)); ``` Get and verify all winner ids: ```java get("/lotto").then().assertThat().body("lotto.winners.winnerId", hasItems(23, 54)); ``` Using parameters: ```java given(). param("key1", "value1"). param("key2", "value2"). when(). post("/somewhere"). then(). body(containsString("OK")); ``` Using X-Path (XML only): ```java given(). params("firstName", "John", "lastName", "Doe"). when(). post("/greetMe"). then(). body(hasXPath("/greeting/firstName[text()='John']")). ``` Need authentication? REST Assured provides several authentication mechanisms: ```java given().auth().basic(username, password).when().get("/secured").then().statusCode(200); ``` Getting and parsing a response body: ```java // Example with JsonPath String json = get("/lotto").asString(); List winnerIds = from(json).get("lotto.winners.winnerId"); // Example with XmlPath String xml = post("/shopping").andReturn().body().asString(); Node category = from(xml).get("shopping.category[0]"); ``` REST Assured supports any HTTP method but has explicit support for *POST*, *GET*, *PUT*, *DELETE*, *OPTIONS*, *PATCH* and *HEAD* and includes specifying and validating e.g. parameters, headers, cookies and body easily. ## Documentation * [Getting started](https://github.com/rest-assured/rest-assured/wiki/GettingStarted) * [Usage Guide](https://github.com/rest-assured/rest-assured/wiki/Usage) (click [here](https://github.com/rest-assured/rest-assured/wiki/Usage_Legacy) for legacy documentation) * [Javadoc](http://www.javadoc.io/doc/io.rest-assured/rest-assured/5.3.0) * [Rest Assured Javadoc](http://static.javadoc.io/io.rest-assured/rest-assured/5.3.0/io/restassured/RestAssured.html) * [Rest AssuredMockMvc Javadoc](http://static.javadoc.io/io.rest-assured/spring-mock-mvc/5.3.0/io/restassured/module/mockmvc/RestAssuredMockMvc.html) * [XmlPath Javadoc](http://static.javadoc.io/io.rest-assured/xml-path/5.3.0/io/restassured/path/xml/XmlPath.html) * [JsonPath Javadoc](http://static.javadoc.io/io.rest-assured/json-path/5.3.0/io/restassured/path/json/JsonPath.html) * [Release Notes](https://github.com/rest-assured/rest-assured/wiki/ReleaseNotes) * [FAQ](https://github.com/rest-assured/rest-assured/wiki/FAQ) ## Support and discussion Join the mailing list at our [Google group](http://groups.google.com/group/rest-assured). ## Links * [Change log](https://github.com/rest-assured/rest-assured/raw/master/changelog.txt) * REST Assured on [openhub](https://www.openhub.net/p/rest-assured) * [Mailing list](http://groups.google.com/group/rest-assured) for questions and support Buy Me A Coffee