com.jayway.restassured.response.Response.contentType()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(1.5k)|赞(0)|评价(0)|浏览(118)

本文整理了Java中com.jayway.restassured.response.Response.contentType方法的一些代码示例,展示了Response.contentType的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Response.contentType方法的具体详情如下:
包路径:com.jayway.restassured.response.Response
类名称:Response
方法名:contentType

Response.contentType介绍

暂无

代码示例

代码示例来源:origin: Hualiner/Api-Auto-Test

/**
 * 获取本次请求的响应信息
 *
 * @param response
 */
private String getResponseInfo(Response response) {
  // TODO - 此处容易抛异常
  if (response.contentType().contains("json")) {
    return "[" + response.statusCode() + "]" + response.jsonPath().get();
  } else {
    return "[" + response.statusCode() + "]" + response.htmlPath().get();
  }
}

代码示例来源:origin: Hualiner/Api-Auto-Test

/**
   * 请求
   *
   * @param testStep
   */
  public Response request(TestStep testStep) {
    RestAssured.baseURI = baseURL;

    if (!testStep.getParams().isEmpty()) {
      response = request(testStep.getType(), testStep.getPath(), testStep.getParams());
    } else {
      response = request(testStep.getType(), testStep.getPath());
    }

    logger.info(getResponseInfo(response));

    // TODO - 此处容易抛异常
    if (response.contentType().contains("json")) {
      listenerUtils.testCaseResult.setDescription(response.jsonPath().get().toString());
    } else {
      listenerUtils.testCaseResult.setDescription(response.htmlPath().get().toString());
    }

    return response;
  }
}

代码示例来源:origin: org.w3/ldp-testsuite

.contentType(getResponse.contentType())
  .body(getResponse.asByteArray())
.when()
  .contentType(getResponse.contentType())
  .body(getResponse.asByteArray())
.when()

相关文章