本文仅作为我当前需求解决的一个经历记录,本人能力有限,菜鸟级别;若有幸被阅读到且提供了有效帮助,我深感荣幸;若对您无用或大佬有更好的方法,还望轻喷赐教,我将虚心请教拜读,谢谢~
在使用Rest-assured集合Allure运行完用例之后,查看生成的报告信息如下:
我们可以看到在生成的报告中只有断言信息,而没有请求的日志信息,而当我们的用例失败时,特别是接口失败时,请求日志是分析原因的第一手资源;
其实Rest-assured是有请求日志的,可以通过在given()
和then()
后面加上.log().all()
来打印全部的日志信息:
这块不是本文想介绍的重点,所以想了解的可以参考以往的文章或直接阅读官方文档
那么问题来了,如何将这打印出来的日志信息都"转移"到allure报告中呢?并且能和用例一一对应起来,然后就开始了探索之路~
下面的解决方案都是在我现阶段研究restassured及allure的基础上实现的,可能研究不透测不全面,也许有更好的方法使用,待熟知的小伙伴赐教
首先来看一下Allure
报告可以如何展示日志,在学习Allure
的过程中发现Allure有添加附件展示的功能,那么我就直接想到将日志能存入文件然后添加到报告附件不就可以了吗?由此,Allure
端的解决方向确定。
接下来就是要想法办将Rest-assured产生的日志存入文件了;
先看一下allure添加附件的两种方法:
@Attachment
,方法的返回值就会作为附件上传,可添加展示文本和附件类型@Attachment(value = "Page screenshot", type = "image/png")
public static void addHttpLogToAllure() {
try {
Allure.addAttachment("接口请求响应日志",
new FileInputStream("src/main/resources/test.log"));
} catch (FileNotFoundException e) {
e.printStackTrace();
}
}
如果是我们自己打印的日志信息,可以任意保存或直接使用log4j即可,但是请求的日志是由Rest-assured产生的,这可能就需要去查阅框架相关log方面的文档资料
由于在框架中,我已经进行了封装,每个接口请求后都会返回response信息,所以一开始我想着从拿到response信息进行存储,查阅官方文档,寻找response信息获取的相关API,发现response.asString();
可以获取到json body
的信息,就先尝试使用
Get the response body as a String
response.asString();
// Get all headers
Headers allHeaders = response.getHeaders();
// Get a single header value:
String headerName = response.getHeader("headerName");
// Get all cookies as simple name-value pairs
Map<String, String> allCookies = response.getCookies();
// Get a single cookie value:
String cookieValue = response.getCookie("cookieName");
// Get status line
String statusLine = response.getStatusLine();
// Get status code
int statusCode = response.getStatusCode();
@Attachment("响应报文")
public static String respondBody(Response response) {
//格式化json串
boolean prettyFormat = true; //格式化输出
JSONObject jsonObject = JSONObject.parseObject(response.asString());
String responseBody = JSONObject.toJSONString(jsonObject,prettyFormat);
//报告展现响应报文
return responseBody;
}
import lombok.Data;
import java.util.HashMap;
@Data
public class Restful {
public String url;
public String method;
public HashMap<String,Object> header = new HashMap<>();
public HashMap<String,Object> query = new HashMap<>();
public HashMap<String,Object> pathQuery = new HashMap<>();
public String body;
}
接收请求信息方法@Attachment("请求信息")
public static String requestBody(Restful restful) {
//报告展现请求信息
return restful.toString();
}
public static void getRequestAndRespondBody(Restful restful, Response response){
requestBody(restful);
respondBody(response);
}
从结果可以看到请求和响应报文已经成功展示,说明这种实现的思路的可行性,只是展示的日志信息还不满意,还是先想要全部的请求和响应信息且是格式化后的,不仅仅只有报文,继续探索~
在研究过程中发现RestAssured
提供了logConfig
方法,可以将原本在Console中打印的信息指定格式化输出到文件中,具体用法如下(这里指演示重点实现原理部分,其余封装细节太冗余就不展示了):
WriterOutputStream
用到依赖如下:<dependency>
<groupId>commons-iogroupId>
<artifactId>commons-ioartifactId>
<version>2.4version>
dependency>
public void addLogToFile(){
try (FileWriter fileWriter = new FileWriter("src/main/resources/test.log");
PrintStream printStream = new PrintStream(new WriterOutputStream(fileWriter), true)) {
RestAssured.config = RestAssured.config().logConfig(LogConfig.logConfig().defaultStream(printStream));
given().XXX.log().all().
when().XXX
then().log().all();
} catch (IOException e) {
e.printStackTrace();
}
}
RestAssured
提供的logConfig
方法目前发现只能覆盖,无法append,不过这正好符合我们的需求,每个用例的接口请求都只一一对应各自的日志信息,这样每执行一个接口,保存一份日志信息;下一个接口执行的时候就会覆盖成新的当前接口信息保存展示
public static void addHttpLogToAllure() {
try {
Allure.addAttachment("接口请求响应日志",
new FileInputStream("src/main/resources/test.log"));
} catch (FileNotFoundException e) {
e.printStackTrace();
}
}
@Test
void testAllureReport(){
addLogToFile(); //每次请求将测试log输出到文件中
addHttpLogToAllure(); //每次请求后将log文件以附件形式保存到allure中
}
在下面展示的用例中有2个接口请求,可以看到分别记录展示了,且格式与Console中格式化打印的保持一致
RestAssured
提供了过滤器Filters
,利用它可以串改请求,设置鉴权信息,过滤log等,具体的可在官网中进行学习研究,这里主要用到RequestLoggingFilter()
和ResponseLoggingFilter()
来实现我们的需求
RequestLoggingFilter()
和ResponseLoggingFilter()
可以将所有的请求和响应的log进行打印,而我们想要的是将log存入文件,因此还要借助方法logRequestTo(PrintStream stream)
,指定log的格式化输出到文件中:
FileWriter fileWriter = null;
try {
fileWriter = new FileWriter("src/main/resources/test.log");
} catch (IOException e) {
e.printStackTrace();
}
PrintStream printStream = new PrintStream(new WriterOutputStream(fileWriter), true);
RestAssured.filters(new RequestLoggingFilter().logRequestTo(printStream),new ResponseLoggingFilter().logResponseTo(printStream));
附件添加复用上述的方法:
AllureAttachment.addHttpLogToAllure();