问题描述
接口测试中post方式匹配返回信息时显示不匹配, 但是statuscode明明是200, 而且用postman /restclient等工具测出来也是没问题的.
根本原因
封装了这么个方法来比对返回的信息, 但是这种方法在转换返回信息时并没有对字符串进行排序. 所以和api文档中的返回值进行匹配时, 显示不匹配.
package com.crewbudgetMO.API.bean; import static org.testng.Assert.assertEquals; import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.UnsupportedEncodingException; import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.JsonNode; public class matchResponse { public static void matchPostStatus(HttpResponse<JsonNode> jsonPost, int exp) {
int act = jsonPost.getStatus();
assertEquals(act, exp);
} public static void matchPost (HttpResponse<JsonNode> jsonPost, String filename) {
String filePath = String.format("E:\\Tech\\selenium\\projectname\\src\\test\\java\\com\\subfolder\\API\\file\\%s", filename);
InputStream in = jsonPost.getRawBody();
ByteArrayOutputStream bos = new ByteArrayOutputStream(); byte[] b = new byte [10240];
int length = 0;
try {
while((length = in.read(b))!=-1) {
bos.write(b,0,length);
}
in.close();
} catch (IOException e) {
e.printStackTrace();
} String act = null;
try {
act = new String(bos.toByteArray(), "UTF-8");
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
}
String exp = convertJson.json2String(filePath);
assertEquals(act, exp);
}
}
解决方法
对返回信息的json文件进行排序.