rest-assured的根路径(root path)和URL编码(URL Encoding)

一、根路径(Root path)  

  为了避免在body方法中使用重复的路径来断言,我们可以指定一个根路径(root path),比如:

我们以前的写法是:

 when().
get("/something").
then().
body("x.y.firstName", is(..)).
body("x.y.lastName", is(..)).
body("x.y.age", is(..)).
body("x.y.gender", is(..));

现在我们可以使用root path的方法来写:

 when().
get("/something").
then().
root("x.y"). //我们也可以使用root方法来设置根路径
body("firstName", is(..)).
body("lastName", is(..)).
body("age", is(..)).
body("gender", is(..));

我们也可以设置默认的根路径:

 RestAssured.rootPath="x.y";

在许多高级的测试用例中,在根路径上附加一些参数也非常有用,我们可以使用 appendRoot 方法来实现:

 when().
get("/jsonStore").
then().
root("store.%s", withArgs("book")).
body("category.size()", equalTo(4)).
appendRoot("%s.%s", withArgs("author", "size()")).
body(withNoArgs(), equalTo(4));

这里也可以对根路径进行拆分:

 when().
get("/jsonStore").
then().
root("store.category").
body("size()", equalTo(4)).
detachRoot("category").
body("size()", equalTo(1));

二、URL编码(URL Encoding)

  由于rest-assured提供了非常好的自动编码功能,通常情况下我们在使用rest-assured时不需要考虑URL编码的事情。但是在有些测试用例当中,我们需要关闭URL编码的功能。其中一个原因是我们在将参数传递给rest-assured之前,我们已经对参数进行了URL编码,为了避免二次编码我们需要告诉rest-assured关闭URL编码的功能。比如:

 String response = given().urlEncodingEnabled(false).get("https://jira.atlassian.com:443/rest/api/2.0.alpha1/search?jql=project%20=%20BAM%20AND%20issuetype%20=%20Bug").asString();
..

或者:

 RestAssured.baseURI = "https://jira.atlassian.com";
RestAssured.port = 443;
RestAssured.urlEncodingEnabled = false;
final String query = "project%20=%20BAM%20AND%20issuetype%20=%20Bug";
String response = get("/rest/api/2.0.alpha1/search?jql={q}", query);
..
上一篇:asp.net中验证控件的使用方法


下一篇:mysql主从同步(3)-percona-toolkit工具(数据一致性监测、延迟监控)使用梳理