Commit b42da6b0 by 左磊磊

add:新增部分Jenkins构建后执行的代码

parent d12263c0
......@@ -8,5 +8,5 @@
</list>
</option>
</component>
<component name="ProjectRootManager" version="2" languageLevel="JDK_18" default="true" project-jdk-name="18" project-jdk-type="JavaSDK" />
<component name="ProjectRootManager" version="2" languageLevel="JDK_X" default="true" project-jdk-name="18" project-jdk-type="JavaSDK" />
</project>
\ No newline at end of file
......@@ -23,7 +23,7 @@ public class ServerCase extends BaseCase {
@Description("推送消息-校验第1段和第2段")
public void testManager(API api, Case cas) throws Exception {
//0、执行前休眠30秒
Thread.sleep(1000 * 30);
Thread.sleep(1000 * 40);
//1、参数化替换
String params = replace(cas.getParams());
String sql = replace(cas.getCheckSQL());
......@@ -47,7 +47,7 @@ public class ServerCase extends BaseCase {
System.out.println("A-sql: " + cas.getCheckSQL());
Object afterASqlResult = SqlUtils.querySingle(cas.getCheckSQL());
System.out.println("B-sql: " + cas.getCheckBSQL());
Thread.sleep(1000 * 60); //验证B段SQL的休眠时间60秒
Thread.sleep(1000 * 30); //验证B段SQL的休眠时间60秒
Object afterBSqlResult = SqlUtils.querySingle(cas.getCheckBSQL());
//7-1、A段数据库断言
boolean sqlAFlag = assertSql(cas.getaExpectValue(), beforeASqlResult == null ? null : beforeASqlResult.toString(), afterASqlResult == null ? null : afterASqlResult.toString());
......@@ -89,7 +89,7 @@ public class ServerCase extends BaseCase {
boolean assertResponseFlag = assertResponse(cas, body);
addWBD(Integer.parseInt(cas.getId()), Constants.ACTURL_WRITER_BACK_CELL_NUM, body);
System.out.println("B-sql: " + cas.getCheckBSQL());
Thread.sleep(1000 * 60);
Thread.sleep(1000 * 30);
Object afterBSqlResult = SqlUtils.querySingle(cas.getCheckBSQL());
boolean sqlBFlag = assertSql(cas.getbExpectValue(), beforeBSqlResult == null ? null : beforeBSqlResult.toString(), afterBSqlResult == null ? null : afterBSqlResult.toString());
String assertSqlBFlag = (sqlBFlag) ? "Pass" : "Fail";
......@@ -110,7 +110,7 @@ public class ServerCase extends BaseCase {
@Test(dataProvider = "data3", description = "推送消息-校验第1段") // DTO数据传输
@Description("推送消息-校验第1段")
public void testManager3(API api, Case cas) throws Exception {
Thread.sleep(1000 * 30);
Thread.sleep(1000 * 40);
String params = replace(cas.getParams());
String sql = replace(cas.getCheckSQL());
cas.setParams(params);
......@@ -167,7 +167,7 @@ public class ServerCase extends BaseCase {
System.out.println("A-sql: " + cas.getCheckSQL());
Object afterASqlResult = SqlUtils.querySingle(cas.getCheckSQL());
System.out.println("B-sql: " + cas.getCheckBSQL());
Thread.sleep(1000 * 60); //验证B段SQL的休眠时间60秒
Thread.sleep(1000 * 30); //验证B段SQL的休眠时间60秒
Object afterBSqlResult = SqlUtils.querySingle(cas.getCheckBSQL());
//7-1、A段数据库断言
boolean sqlAFlag = assertSql(cas.getaExpectValue(), beforeASqlResult == null ? null : beforeASqlResult.toString(), afterASqlResult == null ? null : afterASqlResult.toString());
......
......@@ -29,6 +29,12 @@ import java.util.Map;
**/
public class Robot {
/**
* 根据Jenkins构建状态,发送企业微信推送消息
*
* @return
* @throws Exception
*/
public static String sendRobotMessage() throws Exception {
// Jenkins的url, http://192.168.92.13:8080/job/Lemon/lastBuild/buildNumber
URI uri = new URI("http://192.168.92.13:8080");
......@@ -42,13 +48,14 @@ public class Robot {
// 获取最后一次构建结果,结果为BuiledResult枚举类型
Integer LastBuild = (jenkinsServer.getJob("Lemon").getLastBuild()).getNumber();
System.out.println("最后一次构建次数为:" + LastBuild);
// 构建状态 成功SUCCESS 失败FAILURE
String BuildStatus = String.valueOf(jenkinsServer.getJob("Lemon").getLastBuild().details().getResult());
System.out.println("最后一次构建状态为:" + BuildStatus);
// 获取最后一次构建的Allure报告
String LastBuildAllureUrl = String.format("http://192.168.92.13:8080/job/Lemon/%d/allure/", LastBuild);
System.out.println(LastBuildAllureUrl);
// 通过最后一次的状态做判断,成功 SUCCESS 、失败 FAILURE
// 通过最后一次的状态做判断
if (BuildStatus == "FAILURE" ||BuildStatus == "UNSTABLE") {
// 将失败的结果推送到企微群聊
String url = "https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=fc6f4a8e-b208-47ab-9ceb-e9c7e47564c7";
......@@ -64,7 +71,7 @@ public class Robot {
String body = WechatWebHook(url, object.toJSONString());
return body;
} else {
System.out.println("运行正确,无需告警");
System.out.println("构建正确,无需告警");
}
return BuildStatus;
}
......@@ -114,13 +121,9 @@ public class Robot {
* @throws Exception
*/
public static String WechatWebHook(String url, String json) throws Exception {
// 请求url
HttpPost httpPost = new HttpPost(url);
// 请求header
httpPost.setHeader("Content-Type", "application/json");
// 添加请求参数
httpPost.setEntity(new StringEntity(json, "UTF-8"));
//
CloseableHttpClient httpClient = HttpClients.createDefault();
CloseableHttpResponse response = httpClient.execute(httpPost);
HttpEntity entity = response.getEntity();
......
{"uuid":"117dc2d8-5bc8-4b57-b1d5-db4486f23f94","historyId":"42d0f982027314e586d5c80eebfef192","fullName":"com.lemon.cases.RaysDataCase.testAAAAALogin","labels":[{"name":"package","value":"com.lemon.cases.RaysDataCase"},{"name":"testClass","value":"com.lemon.cases.RaysDataCase"},{"name":"testMethod","value":"testAAAAALogin"},{"name":"parentSuite","value":"理工数传"},{"name":"suite","value":"睿思数据"},{"name":"subSuite","value":"com.lemon.cases.RaysDataCase"},{"name":"host","value":"Ray-MacBook-Pro-2.local"},{"name":"thread","value":"15239@Ray-MacBook-Pro-2.local.main(1)"},{"name":"framework","value":"testng"},{"name":"language","value":"java"}],"links":[],"name":"登录睿思数据","status":"passed","statusDetails":{"known":false,"muted":false,"flaky":false},"stage":"finished","description":"登录睿思数据","steps":[{"name":"参数化替换","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"source","value":"{\"loginAccount\":\"18696191160\",\"loginPwd\":\"\",\"remember\":1}"}],"start":1678785684348,"stop":1678785684348},{"name":"参数化替换","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"source","value":"null"}],"start":1678785684348,"stop":1678785684348},{"name":"接口调用方法","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"api","value":"com.lemon.pojo.API@13803a94"},{"name":"cas","value":"Case{id='5', desc='登录:密码字段为空', params='{\"loginAccount\":\"18696191160\",\"loginPwd\":\"\",\"remember\":1}', apiID='2', expectValue='{\"errCode\":90040010,\"message\":\"账户密码错误\",\"encrypt\":false}', checkSQL='null'}"},{"name":"isAuthorization","value":"false"}],"start":1678785684348,"stop":1678785684556},{"name":"响应结果进行断言","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"cas","value":"Case{id='5', desc='登录:密码字段为空', params='{\"loginAccount\":\"18696191160\",\"loginPwd\":\"\",\"remember\":1}', apiID='2', expectValue='{\"errCode\":90040010,\"message\":\"账户密码错误\",\"encrypt\":false}', checkSQL='null'}"},{"name":"body","value":"{\"errCode\":90040010,\"message\":\"账户密码错误\",\"encrypt\":false}"}],"start":1678785684556,"stop":1678785684556},{"name":"添加回写内容","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"rowNum","value":"5"},{"name":"cellNum","value":"5"},{"name":"body","value":"{\"errCode\":90040010,\"message\":\"账户密码错误\",\"encrypt\":false}"}],"start":1678785684557,"stop":1678785684557}],"attachments":[],"parameters":[{"name":"type","value":"phone"},{"name":"version","value":"1.1.1"},{"name":"arg1","value":"Case{id='5', desc='登录:密码字段为空', params='{\"loginAccount\":\"18696191160\",\"loginPwd\":\"\",\"remember\":1}', apiID='2', expectValue='{\"errCode\":90040010,\"message\":\"账户密码错误\",\"encrypt\":false}', checkSQL='null'}"},{"name":"arg0","value":"com.lemon.pojo.API@13803a94"}],"start":1678785684347,"stop":1678785684557}
\ No newline at end of file
{"uuid":"1e6e3a4b-3184-47c2-8878-b3018ae2355b","historyId":"53f7d745fa76d35c1ca747bf9ec8eb7","fullName":"com.lemon.cases.PayCase.testRaysPay","labels":[{"name":"package","value":"com.lemon.cases.PayCase"},{"name":"testClass","value":"com.lemon.cases.PayCase"},{"name":"testMethod","value":"testRaysPay"},{"name":"parentSuite","value":"理工数传"},{"name":"suite","value":"RAYS支付"},{"name":"subSuite","value":"com.lemon.cases.PayCase"},{"name":"host","value":"Ray-MacBook-Pro-2.local"},{"name":"thread","value":"15239@Ray-MacBook-Pro-2.local.main(1)"},{"name":"framework","value":"testng"},{"name":"language","value":"java"}],"links":[],"name":"testRaysPay","status":"passed","statusDetails":{"known":false,"muted":false,"flaky":false},"stage":"finished","description":"创建支付订单","steps":[{"name":"响应结果断言","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"expectValue","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"officialAccountsId\":50687,\"payAccounts\":23,\"officialAccountsName\":\"小睿伴学\",\"domain\":\"wechat50687.5rs.me\",\"payDomain\":\"weixin23.5rs.me\",\"manageDomain\":\"wechat22.5rs.me\",\"icon\":\"https://oss.5rs.me/oss/upload/image/jpg/bb8353c7cec744b99060ca3bf31b72f0.jpg\",\"description\":\"小睿伴学\",\"iosAlipayOpen\":0,\"payMchId\":\"1639325477\",\"currentPagePay\":0,\"phoneAuthOpen\":0,\"payMethod\":1}}"},{"name":"body","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"officialAccountsId\":50687,\"payAccounts\":23,\"officialAccountsName\":\"小睿伴学\",\"domain\":\"wechat50687.5rs.me\",\"payDomain\":\"weixin23.5rs.me\",\"manageDomain\":\"wechat22.5rs.me\",\"icon\":\"https://oss.5rs.me/oss/upload/image/jpg/bb8353c7cec744b99060ca3bf31b72f0.jpg\",\"description\":\"小睿伴学\",\"iosAlipayOpen\":0,\"payMchId\":\"1639325477\",\"currentPagePay\":0,\"phoneAuthOpen\":0,\"payMethod\":1}}"}],"start":1678785690487,"stop":1678785690487}],"attachments":[],"parameters":[{"name":"arg3","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"officialAccountsId\":50687,\"payAccounts\":23,\"officialAccountsName\":\"小睿伴学\",\"domain\":\"wechat50687.5rs.me\",\"payDomain\":\"weixin23.5rs.me\",\"manageDomain\":\"wechat22.5rs.me\",\"icon\":\"https://oss.5rs.me/oss/upload/image/jpg/bb8353c7cec744b99060ca3bf31b72f0.jpg\",\"description\":\"小睿伴学\",\"iosAlipayOpen\":0,\"payMchId\":\"1639325477\",\"currentPagePay\":0,\"phoneAuthOpen\":0,\"payMethod\":1}}"},{"name":"arg2","value":"https://wechat50687.5rs.me/channelcenter/v1.0/accountSetting/getOpreateManageInfo?officialAccountsId=50687"},{"name":"type","value":"phone"},{"name":"version","value":"1.1.1"},{"name":"arg1","value":"小睿伴学支付跳RAYS"},{"name":"arg0","value":"1"}],"start":1678785690326,"stop":1678785690487}
\ No newline at end of file
{"uuid":"28975414-3ad3-4d6f-bc98-bae9393659fe","historyId":"8138c08396dcdcc0448969622ed3688e","fullName":"com.lemon.cases.RaysDataCase.testGgetCategoryInfoList","labels":[{"name":"package","value":"com.lemon.cases.RaysDataCase"},{"name":"testClass","value":"com.lemon.cases.RaysDataCase"},{"name":"testMethod","value":"testGgetCategoryInfoList"},{"name":"parentSuite","value":"理工数传"},{"name":"suite","value":"睿思数据"},{"name":"subSuite","value":"com.lemon.cases.RaysDataCase"},{"name":"host","value":"Ray-MacBook-Pro-2.local"},{"name":"thread","value":"15239@Ray-MacBook-Pro-2.local.main(1)"},{"name":"framework","value":"testng"},{"name":"language","value":"java"}],"links":[],"name":"获取主页图书数据1","status":"passed","statusDetails":{"known":false,"muted":false,"flaky":false},"stage":"finished","description":"获取主页图书数据1","steps":[{"name":"参数化替换","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"source","value":"null"}],"start":1678785687232,"stop":1678785687232},{"name":"参数化替换","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"source","value":"null"}],"start":1678785687232,"stop":1678785687232},{"name":"接口调用方法","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"api","value":"com.lemon.pojo.API@61191222"},{"name":"cas","value":"Case{id='19', desc='【选题洞察】', params='null', apiID='15', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"data\":[{\"parentId\":0,\"categoryId\":-1,\"categoryName\":\"全分类\",\"childCategoryList\":[{\"parentId\":-1,\"categoryId\":-1,\"categoryName\":\"全分类\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":101,\"categoryName\":\"文学\",\"childCategoryList\":[{\"parentId\":101,\"categoryId\":20001,\"categoryName\":\"小说\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":101,\"categoryId\":20002,\"categoryName\":\"文学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":101,\"categoryId\":20003,\"categoryName\":\"青春文学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":101,\"categoryId\":20004,\"categoryName\":\"传记\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":101,\"categoryId\":20024,\"categoryName\":\"动漫\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":102,\"categoryName\":\"艺术\",\"childCategoryList\":[{\"parentId\":102,\"categoryId\":20005,\"categoryName\":\"艺术\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":102,\"categoryId\":20006,\"categoryName\":\"音乐\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":102,\"categoryId\":20007,\"categoryName\":\"摄影\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":102,\"categoryId\":20008,\"categoryName\":\"书法\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":102,\"categoryId\":20009,\"categoryName\":\"绘画\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":104,\"categoryName\":\"童书\",\"childCategoryList\":[{\"parentId\":104,\"categoryId\":20010,\"categoryName\":\"童书\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20053,\"categoryName\":\"动漫/卡通\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20054,\"categoryName\":\"历史/国学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20055,\"categoryName\":\"学前教育\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20056,\"categoryName\":\"儿童文学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20057,\"categoryName\":\"幼儿启蒙\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20058,\"categoryName\":\"手工/游戏\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20059,\"categoryName\":\"才艺培养\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20060,\"categoryName\":\"智力开发\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20061,\"categoryName\":\"科普/百科\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20062,\"categoryName\":\"励志/成长\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20063,\"categoryName\":\"少儿英语\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20064,\"categoryName\":\"0-2岁\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20065,\"categoryName\":\"3-6岁\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20066,\"categoryName\":\"7-10岁\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20067,\"categoryName\":\"11-14岁\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20068,\"categoryName\":\"幼儿心理学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20069,\"categoryName\":\"儿童绘本\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20070,\"categoryName\":\"美术/书法\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20071,\"categoryName\":\"玩具书\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20072,\"categoryName\":\"少儿期刊\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20073,\"categoryName\":\"AR/VR\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":105,\"categoryName\":\"经管励志\",\"childCategoryList\":[{\"parentId\":105,\"categoryId\":20011,\"categoryName\":\"励志与成功\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":105,\"categoryId\":20012,\"categoryName\":\"管理\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":105,\"categoryId\":20013,\"categoryName\":\"经济\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":105,\"categoryId\":20014,\"categoryName\":\"金融与投资\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":106,\"categoryName\":\"生活\",\"childCategoryList\":[{\"parentId\":106,\"categoryId\":20015,\"categoryName\":\"家教\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20016,\"categoryName\":\"育儿\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20017,\"categoryName\":\"旅游/地图\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20018,\"categoryName\":\"烹饪/美食\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20019,\"categoryName\":\"时尚/美妆\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20020,\"categoryName\":\"家居\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20021,\"categoryName\":\"婚恋与两性\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20022,\"categoryName\":\"娱乐/休闲\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20023,\"categoryName\":\"养生/保健\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20041,\"categoryName\":\"运动/健身\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":107,\"categoryName\":\"人文社科\",\"childCategoryList\":[{\"parentId\":107,\"categoryId\":20025,\"categoryName\":\"历史\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20026,\"categoryName\":\"心理学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20027,\"categoryName\":\"政治/军事\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20028,\"categoryName\":\"国学/古籍\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20029,\"categoryName\":\"哲学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20030,\"categoryName\":\"法律\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20031,\"categoryName\":\"文化\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20032,\"categoryName\":\"社会科学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20033,\"categoryName\":\"科普读物\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20052,\"categoryName\":\"宗教\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":108,\"categoryName\":\"科学技术\",\"childCategoryList\":[{\"parentId\":108,\"categoryId\":20034,\"categoryName\":\"计算机与互联网\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":20035,\"categoryName\":\"建筑\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":20036,\"categoryName\":\"医学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":20037,\"categoryName\":\"工业技术\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":20038,\"categoryName\":\"电子与通信\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":20039,\"categoryName\":\"农业/林业\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":20040,\"categoryName\":\"科学与自然\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":109,\"categoryName\":\"教材教辅\",\"childCategoryList\":[{\"parentId\":109,\"categoryId\":20042,\"categoryName\":\"中小学教辅\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":109,\"categoryId\":20043,\"categoryName\":\"大中专教材教辅\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":109,\"categoryId\":20044,\"categoryName\":\"考试\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":109,\"categoryId\":20045,\"categoryName\":\"外语学习\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":109,\"categoryId\":20046,\"categoryName\":\"字典词典/工具书\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null}],\"encrypt\":false}', checkSQL='null'}"},{"name":"isAuthorization","value":"true"}],"start":1678785687232,"stop":1678785687346},{"name":"响应结果进行断言","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"cas","value":"Case{id='19', desc='【选题洞察】', params='null', apiID='15', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"data\":[{\"parentId\":0,\"categoryId\":-1,\"categoryName\":\"全分类\",\"childCategoryList\":[{\"parentId\":-1,\"categoryId\":-1,\"categoryName\":\"全分类\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":101,\"categoryName\":\"文学\",\"childCategoryList\":[{\"parentId\":101,\"categoryId\":20001,\"categoryName\":\"小说\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":101,\"categoryId\":20002,\"categoryName\":\"文学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":101,\"categoryId\":20003,\"categoryName\":\"青春文学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":101,\"categoryId\":20004,\"categoryName\":\"传记\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":101,\"categoryId\":20024,\"categoryName\":\"动漫\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":102,\"categoryName\":\"艺术\",\"childCategoryList\":[{\"parentId\":102,\"categoryId\":20005,\"categoryName\":\"艺术\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":102,\"categoryId\":20006,\"categoryName\":\"音乐\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":102,\"categoryId\":20007,\"categoryName\":\"摄影\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":102,\"categoryId\":20008,\"categoryName\":\"书法\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":102,\"categoryId\":20009,\"categoryName\":\"绘画\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":104,\"categoryName\":\"童书\",\"childCategoryList\":[{\"parentId\":104,\"categoryId\":20010,\"categoryName\":\"童书\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20053,\"categoryName\":\"动漫/卡通\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20054,\"categoryName\":\"历史/国学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20055,\"categoryName\":\"学前教育\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20056,\"categoryName\":\"儿童文学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20057,\"categoryName\":\"幼儿启蒙\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20058,\"categoryName\":\"手工/游戏\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20059,\"categoryName\":\"才艺培养\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20060,\"categoryName\":\"智力开发\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20061,\"categoryName\":\"科普/百科\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20062,\"categoryName\":\"励志/成长\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20063,\"categoryName\":\"少儿英语\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20064,\"categoryName\":\"0-2岁\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20065,\"categoryName\":\"3-6岁\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20066,\"categoryName\":\"7-10岁\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20067,\"categoryName\":\"11-14岁\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20068,\"categoryName\":\"幼儿心理学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20069,\"categoryName\":\"儿童绘本\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20070,\"categoryName\":\"美术/书法\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20071,\"categoryName\":\"玩具书\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20072,\"categoryName\":\"少儿期刊\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20073,\"categoryName\":\"AR/VR\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":105,\"categoryName\":\"经管励志\",\"childCategoryList\":[{\"parentId\":105,\"categoryId\":20011,\"categoryName\":\"励志与成功\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":105,\"categoryId\":20012,\"categoryName\":\"管理\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":105,\"categoryId\":20013,\"categoryName\":\"经济\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":105,\"categoryId\":20014,\"categoryName\":\"金融与投资\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":106,\"categoryName\":\"生活\",\"childCategoryList\":[{\"parentId\":106,\"categoryId\":20015,\"categoryName\":\"家教\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20016,\"categoryName\":\"育儿\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20017,\"categoryName\":\"旅游/地图\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20018,\"categoryName\":\"烹饪/美食\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20019,\"categoryName\":\"时尚/美妆\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20020,\"categoryName\":\"家居\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20021,\"categoryName\":\"婚恋与两性\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20022,\"categoryName\":\"娱乐/休闲\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20023,\"categoryName\":\"养生/保健\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20041,\"categoryName\":\"运动/健身\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":107,\"categoryName\":\"人文社科\",\"childCategoryList\":[{\"parentId\":107,\"categoryId\":20025,\"categoryName\":\"历史\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20026,\"categoryName\":\"心理学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20027,\"categoryName\":\"政治/军事\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20028,\"categoryName\":\"国学/古籍\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20029,\"categoryName\":\"哲学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20030,\"categoryName\":\"法律\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20031,\"categoryName\":\"文化\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20032,\"categoryName\":\"社会科学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20033,\"categoryName\":\"科普读物\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20052,\"categoryName\":\"宗教\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":108,\"categoryName\":\"科学技术\",\"childCategoryList\":[{\"parentId\":108,\"categoryId\":20034,\"categoryName\":\"计算机与互联网\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":20035,\"categoryName\":\"建筑\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":20036,\"categoryName\":\"医学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":20037,\"categoryName\":\"工业技术\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":20038,\"categoryName\":\"电子与通信\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":20039,\"categoryName\":\"农业/林业\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":20040,\"categoryName\":\"科学与自然\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":109,\"categoryName\":\"教材教辅\",\"childCategoryList\":[{\"parentId\":109,\"categoryId\":20042,\"categoryName\":\"中小学教辅\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":109,\"categoryId\":20043,\"categoryName\":\"大中专教材教辅\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":109,\"categoryId\":20044,\"categoryName\":\"考试\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":109,\"categoryId\":20045,\"categoryName\":\"外语学习\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":109,\"categoryId\":20046,\"categoryName\":\"字典词典/工具书\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null}],\"encrypt\":false}', checkSQL='null'}"},{"name":"body","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":[{\"parentId\":0,\"categoryId\":-1,\"categoryName\":\"全分类\",\"childCategoryList\":[{\"parentId\":-1,\"categoryId\":-1,\"categoryName\":\"全分类\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":101,\"categoryName\":\"文学\",\"childCategoryList\":[{\"parentId\":101,\"categoryId\":20001,\"categoryName\":\"小说\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":101,\"categoryId\":20002,\"categoryName\":\"文学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":101,\"categoryId\":20003,\"categoryName\":\"青春文学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":101,\"categoryId\":20004,\"categoryName\":\"传记\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":101,\"categoryId\":20024,\"categoryName\":\"动漫\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":101,\"categoryId\":-1,\"categoryName\":\"全分类\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":102,\"categoryName\":\"艺术\",\"childCategoryList\":[{\"parentId\":102,\"categoryId\":20005,\"categoryName\":\"艺术\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":102,\"categoryId\":20006,\"categoryName\":\"音乐\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":102,\"categoryId\":20007,\"categoryName\":\"摄影\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":102,\"categoryId\":20008,\"categoryName\":\"书法\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":102,\"categoryId\":20009,\"categoryName\":\"绘画\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":102,\"categoryId\":-1,\"categoryName\":\"全分类\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":104,\"categoryName\":\"童书\",\"childCategoryList\":[{\"parentId\":104,\"categoryId\":20053,\"categoryName\":\"动漫/卡通\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20054,\"categoryName\":\"历史/国学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20055,\"categoryName\":\"学前教育\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20056,\"categoryName\":\"儿童文学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20057,\"categoryName\":\"幼儿启蒙\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20058,\"categoryName\":\"手工/游戏\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20059,\"categoryName\":\"才艺培养\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20060,\"categoryName\":\"智力开发\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20061,\"categoryName\":\"科普/百科\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20062,\"categoryName\":\"励志/成长\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20063,\"categoryName\":\"少儿英语\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20068,\"categoryName\":\"幼儿心理学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20069,\"categoryName\":\"儿童绘本\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20070,\"categoryName\":\"美术/书法\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20071,\"categoryName\":\"玩具书\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20072,\"categoryName\":\"少儿期刊\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20073,\"categoryName\":\"AR/VR\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":-1,\"categoryName\":\"全分类\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":105,\"categoryName\":\"经管励志\",\"childCategoryList\":[{\"parentId\":105,\"categoryId\":20011,\"categoryName\":\"励志与成功\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":105,\"categoryId\":20012,\"categoryName\":\"管理\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":105,\"categoryId\":20013,\"categoryName\":\"经济\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":105,\"categoryId\":20014,\"categoryName\":\"金融与投资\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":105,\"categoryId\":-1,\"categoryName\":\"全分类\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":106,\"categoryName\":\"生活\",\"childCategoryList\":[{\"parentId\":106,\"categoryId\":20015,\"categoryName\":\"家教\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20016,\"categoryName\":\"育儿\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20017,\"categoryName\":\"旅游/地图\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20018,\"categoryName\":\"烹饪/美食\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20019,\"categoryName\":\"时尚/美妆\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20020,\"categoryName\":\"家居\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20021,\"categoryName\":\"婚恋与两性\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20022,\"categoryName\":\"娱乐/休闲\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20023,\"categoryName\":\"养生/保健\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20041,\"categoryName\":\"运动/健身\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":-1,\"categoryName\":\"全分类\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":107,\"categoryName\":\"人文社科\",\"childCategoryList\":[{\"parentId\":107,\"categoryId\":20025,\"categoryName\":\"历史\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20026,\"categoryName\":\"心理学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20027,\"categoryName\":\"政治/军事\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20028,\"categoryName\":\"国学/古籍\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20029,\"categoryName\":\"哲学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20030,\"categoryName\":\"法律\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20031,\"categoryName\":\"文化\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20032,\"categoryName\":\"社会科学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20033,\"categoryName\":\"科普读物\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20052,\"categoryName\":\"宗教\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":-1,\"categoryName\":\"全分类\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":108,\"categoryName\":\"科学技术\",\"childCategoryList\":[{\"parentId\":108,\"categoryId\":20034,\"categoryName\":\"计算机与互联网\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":20035,\"categoryName\":\"建筑\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":20036,\"categoryName\":\"医学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":20037,\"categoryName\":\"工业技术\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":20038,\"categoryName\":\"电子与通信\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":20039,\"categoryName\":\"农业/林业\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":20040,\"categoryName\":\"科学与自然\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":-1,\"categoryName\":\"全分类\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":109,\"categoryName\":\"教材教辅\",\"childCategoryList\":[{\"parentId\":109,\"categoryId\":20042,\"categoryName\":\"中小学教辅\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":109,\"categoryId\":20043,\"categoryName\":\"大中专教材教辅\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":109,\"categoryId\":20044,\"categoryName\":\"考试\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":109,\"categoryId\":20045,\"categoryName\":\"外语学习\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":109,\"categoryId\":20046,\"categoryName\":\"字典词典/工具书\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":109,\"categoryId\":20074,\"categoryName\":\"教师用书/教育理论\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":109,\"categoryId\":-1,\"categoryName\":\"全分类\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null}],\"encrypt\":false}"}],"start":1678785687347,"stop":1678785687347},{"name":"添加回写内容","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"rowNum","value":"19"},{"name":"cellNum","value":"5"},{"name":"body","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":[{\"parentId\":0,\"categoryId\":-1,\"categoryName\":\"全分类\",\"childCategoryList\":[{\"parentId\":-1,\"categoryId\":-1,\"categoryName\":\"全分类\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":101,\"categoryName\":\"文学\",\"childCategoryList\":[{\"parentId\":101,\"categoryId\":20001,\"categoryName\":\"小说\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":101,\"categoryId\":20002,\"categoryName\":\"文学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":101,\"categoryId\":20003,\"categoryName\":\"青春文学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":101,\"categoryId\":20004,\"categoryName\":\"传记\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":101,\"categoryId\":20024,\"categoryName\":\"动漫\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":101,\"categoryId\":-1,\"categoryName\":\"全分类\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":102,\"categoryName\":\"艺术\",\"childCategoryList\":[{\"parentId\":102,\"categoryId\":20005,\"categoryName\":\"艺术\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":102,\"categoryId\":20006,\"categoryName\":\"音乐\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":102,\"categoryId\":20007,\"categoryName\":\"摄影\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":102,\"categoryId\":20008,\"categoryName\":\"书法\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":102,\"categoryId\":20009,\"categoryName\":\"绘画\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":102,\"categoryId\":-1,\"categoryName\":\"全分类\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":104,\"categoryName\":\"童书\",\"childCategoryList\":[{\"parentId\":104,\"categoryId\":20053,\"categoryName\":\"动漫/卡通\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20054,\"categoryName\":\"历史/国学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20055,\"categoryName\":\"学前教育\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20056,\"categoryName\":\"儿童文学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20057,\"categoryName\":\"幼儿启蒙\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20058,\"categoryName\":\"手工/游戏\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20059,\"categoryName\":\"才艺培养\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20060,\"categoryName\":\"智力开发\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20061,\"categoryName\":\"科普/百科\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20062,\"categoryName\":\"励志/成长\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20063,\"categoryName\":\"少儿英语\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20068,\"categoryName\":\"幼儿心理学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20069,\"categoryName\":\"儿童绘本\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20070,\"categoryName\":\"美术/书法\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20071,\"categoryName\":\"玩具书\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20072,\"categoryName\":\"少儿期刊\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20073,\"categoryName\":\"AR/VR\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":-1,\"categoryName\":\"全分类\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":105,\"categoryName\":\"经管励志\",\"childCategoryList\":[{\"parentId\":105,\"categoryId\":20011,\"categoryName\":\"励志与成功\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":105,\"categoryId\":20012,\"categoryName\":\"管理\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":105,\"categoryId\":20013,\"categoryName\":\"经济\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":105,\"categoryId\":20014,\"categoryName\":\"金融与投资\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":105,\"categoryId\":-1,\"categoryName\":\"全分类\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":106,\"categoryName\":\"生活\",\"childCategoryList\":[{\"parentId\":106,\"categoryId\":20015,\"categoryName\":\"家教\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20016,\"categoryName\":\"育儿\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20017,\"categoryName\":\"旅游/地图\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20018,\"categoryName\":\"烹饪/美食\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20019,\"categoryName\":\"时尚/美妆\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20020,\"categoryName\":\"家居\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20021,\"categoryName\":\"婚恋与两性\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20022,\"categoryName\":\"娱乐/休闲\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20023,\"categoryName\":\"养生/保健\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20041,\"categoryName\":\"运动/健身\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":-1,\"categoryName\":\"全分类\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":107,\"categoryName\":\"人文社科\",\"childCategoryList\":[{\"parentId\":107,\"categoryId\":20025,\"categoryName\":\"历史\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20026,\"categoryName\":\"心理学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20027,\"categoryName\":\"政治/军事\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20028,\"categoryName\":\"国学/古籍\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20029,\"categoryName\":\"哲学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20030,\"categoryName\":\"法律\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20031,\"categoryName\":\"文化\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20032,\"categoryName\":\"社会科学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20033,\"categoryName\":\"科普读物\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20052,\"categoryName\":\"宗教\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":-1,\"categoryName\":\"全分类\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":108,\"categoryName\":\"科学技术\",\"childCategoryList\":[{\"parentId\":108,\"categoryId\":20034,\"categoryName\":\"计算机与互联网\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":20035,\"categoryName\":\"建筑\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":20036,\"categoryName\":\"医学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":20037,\"categoryName\":\"工业技术\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":20038,\"categoryName\":\"电子与通信\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":20039,\"categoryName\":\"农业/林业\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":20040,\"categoryName\":\"科学与自然\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":-1,\"categoryName\":\"全分类\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":109,\"categoryName\":\"教材教辅\",\"childCategoryList\":[{\"parentId\":109,\"categoryId\":20042,\"categoryName\":\"中小学教辅\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":109,\"categoryId\":20043,\"categoryName\":\"大中专教材教辅\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":109,\"categoryId\":20044,\"categoryName\":\"考试\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":109,\"categoryId\":20045,\"categoryName\":\"外语学习\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":109,\"categoryId\":20046,\"categoryName\":\"字典词典/工具书\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":109,\"categoryId\":20074,\"categoryName\":\"教师用书/教育理论\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":109,\"categoryId\":-1,\"categoryName\":\"全分类\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null}],\"encrypt\":false}"}],"start":1678785687347,"stop":1678785687347}],"attachments":[],"parameters":[{"name":"type","value":"phone"},{"name":"version","value":"1.1.1"},{"name":"arg1","value":"Case{id='19', desc='【选题洞察】', params='null', apiID='15', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"data\":[{\"parentId\":0,\"categoryId\":-1,\"categoryName\":\"全分类\",\"childCategoryList\":[{\"parentId\":-1,\"categoryId\":-1,\"categoryName\":\"全分类\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":101,\"categoryName\":\"文学\",\"childCategoryList\":[{\"parentId\":101,\"categoryId\":20001,\"categoryName\":\"小说\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":101,\"categoryId\":20002,\"categoryName\":\"文学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":101,\"categoryId\":20003,\"categoryName\":\"青春文学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":101,\"categoryId\":20004,\"categoryName\":\"传记\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":101,\"categoryId\":20024,\"categoryName\":\"动漫\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":102,\"categoryName\":\"艺术\",\"childCategoryList\":[{\"parentId\":102,\"categoryId\":20005,\"categoryName\":\"艺术\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":102,\"categoryId\":20006,\"categoryName\":\"音乐\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":102,\"categoryId\":20007,\"categoryName\":\"摄影\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":102,\"categoryId\":20008,\"categoryName\":\"书法\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":102,\"categoryId\":20009,\"categoryName\":\"绘画\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":104,\"categoryName\":\"童书\",\"childCategoryList\":[{\"parentId\":104,\"categoryId\":20010,\"categoryName\":\"童书\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20053,\"categoryName\":\"动漫/卡通\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20054,\"categoryName\":\"历史/国学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20055,\"categoryName\":\"学前教育\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20056,\"categoryName\":\"儿童文学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20057,\"categoryName\":\"幼儿启蒙\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20058,\"categoryName\":\"手工/游戏\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20059,\"categoryName\":\"才艺培养\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20060,\"categoryName\":\"智力开发\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20061,\"categoryName\":\"科普/百科\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20062,\"categoryName\":\"励志/成长\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20063,\"categoryName\":\"少儿英语\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20064,\"categoryName\":\"0-2岁\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20065,\"categoryName\":\"3-6岁\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20066,\"categoryName\":\"7-10岁\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20067,\"categoryName\":\"11-14岁\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20068,\"categoryName\":\"幼儿心理学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20069,\"categoryName\":\"儿童绘本\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20070,\"categoryName\":\"美术/书法\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20071,\"categoryName\":\"玩具书\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20072,\"categoryName\":\"少儿期刊\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20073,\"categoryName\":\"AR/VR\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":105,\"categoryName\":\"经管励志\",\"childCategoryList\":[{\"parentId\":105,\"categoryId\":20011,\"categoryName\":\"励志与成功\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":105,\"categoryId\":20012,\"categoryName\":\"管理\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":105,\"categoryId\":20013,\"categoryName\":\"经济\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":105,\"categoryId\":20014,\"categoryName\":\"金融与投资\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":106,\"categoryName\":\"生活\",\"childCategoryList\":[{\"parentId\":106,\"categoryId\":20015,\"categoryName\":\"家教\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20016,\"categoryName\":\"育儿\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20017,\"categoryName\":\"旅游/地图\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20018,\"categoryName\":\"烹饪/美食\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20019,\"categoryName\":\"时尚/美妆\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20020,\"categoryName\":\"家居\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20021,\"categoryName\":\"婚恋与两性\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20022,\"categoryName\":\"娱乐/休闲\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20023,\"categoryName\":\"养生/保健\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20041,\"categoryName\":\"运动/健身\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":107,\"categoryName\":\"人文社科\",\"childCategoryList\":[{\"parentId\":107,\"categoryId\":20025,\"categoryName\":\"历史\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20026,\"categoryName\":\"心理学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20027,\"categoryName\":\"政治/军事\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20028,\"categoryName\":\"国学/古籍\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20029,\"categoryName\":\"哲学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20030,\"categoryName\":\"法律\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20031,\"categoryName\":\"文化\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20032,\"categoryName\":\"社会科学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20033,\"categoryName\":\"科普读物\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20052,\"categoryName\":\"宗教\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":108,\"categoryName\":\"科学技术\",\"childCategoryList\":[{\"parentId\":108,\"categoryId\":20034,\"categoryName\":\"计算机与互联网\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":20035,\"categoryName\":\"建筑\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":20036,\"categoryName\":\"医学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":20037,\"categoryName\":\"工业技术\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":20038,\"categoryName\":\"电子与通信\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":20039,\"categoryName\":\"农业/林业\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":20040,\"categoryName\":\"科学与自然\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":109,\"categoryName\":\"教材教辅\",\"childCategoryList\":[{\"parentId\":109,\"categoryId\":20042,\"categoryName\":\"中小学教辅\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":109,\"categoryId\":20043,\"categoryName\":\"大中专教材教辅\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":109,\"categoryId\":20044,\"categoryName\":\"考试\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":109,\"categoryId\":20045,\"categoryName\":\"外语学习\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":109,\"categoryId\":20046,\"categoryName\":\"字典词典/工具书\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null}],\"encrypt\":false}', checkSQL='null'}"},{"name":"arg0","value":"com.lemon.pojo.API@61191222"}],"start":1678785687232,"stop":1678785687347}
\ No newline at end of file
{"uuid":"3027ba6b-ba76-475d-9533-5067b70ceba6","historyId":"773353764362084c20ac3edf3199ecf2","fullName":"com.lemon.cases.RaysDataCase.testListIncreaseTopic4Report","labels":[{"name":"package","value":"com.lemon.cases.RaysDataCase"},{"name":"testClass","value":"com.lemon.cases.RaysDataCase"},{"name":"testMethod","value":"testListIncreaseTopic4Report"},{"name":"parentSuite","value":"理工数传"},{"name":"suite","value":"睿思数据"},{"name":"subSuite","value":"com.lemon.cases.RaysDataCase"},{"name":"host","value":"Ray-MacBook-Pro-2.local"},{"name":"thread","value":"15239@Ray-MacBook-Pro-2.local.main(1)"},{"name":"framework","value":"testng"},{"name":"language","value":"java"}],"links":[],"name":"【选题洞察】潜力增长选题>新品贡献大","status":"passed","statusDetails":{"known":false,"muted":false,"flaky":false},"stage":"finished","description":"【选题洞察】潜力增长选题>新品贡献大","steps":[{"name":"参数化替换","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"source","value":"{\"currentPage\":1,\"numPerPage\":10,\"oneCategoryId\":-1,\"twoCategoryId\":-1,\"periodType\":\"month\",\"timeValue\":[\"2022-01-01 \",\" 2022-01-31\"],\"uuid\":\"TV5kex5r\",\"startMonth\":\"2022-01-01 \",\"endMonth\":\" 2022-01-31\",\"lastStartMonth\":\"2021-12-01\",\"lastEndMonth\":\"2021-12-31\",\"potentialSortType\":1}"}],"start":1678785688623,"stop":1678785688623},{"name":"参数化替换","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"source","value":"null"}],"start":1678785688623,"stop":1678785688623},{"name":"接口调用方法","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"api","value":"com.lemon.pojo.API@2519026b"},{"name":"cas","value":"Case{id='26', desc='【选题洞察】潜力增长选题>销售幅度大', params='{\"currentPage\":1,\"numPerPage\":10,\"oneCategoryId\":-1,\"twoCategoryId\":-1,\"periodType\":\"month\",\"timeValue\":[\"2022-01-01 \",\" 2022-01-31\"],\"uuid\":\"TV5kex5r\",\"startMonth\":\"2022-01-01 \",\"endMonth\":\" 2022-01-31\",\"lastStartMonth\":\"2021-12-01\",\"lastEndMonth\":\"2021-12-31\",\"potentialSortType\":1}', apiID='20', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"total\":38660,\"list\":[{\"topicId\":70745,\"topicName\":\"黄歇(前314-前238)\",\"salesQuantity\":1,\"salesPrice\":28.0000,\"increasePercent\":0.0000,\"bookDTOS\":[{\"topicId\":70745,\"bookId\":685818,\"bookName\":\"黄歇传\",\"bookUrl\":\"https://book.douban.com/subject/35347633/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/af366767f2435f3e62739340497052c5.jpg\"}]},{\"topicId\":22668,\"topicName\":\"脑发育不全\",\"salesQuantity\":80,\"salesPrice\":6880.0000,\"increasePercent\":0.0000,\"bookDTOS\":[{\"topicId\":22668,\"bookId\":579445,\"bookName\":\"儿童脑发育早期干预训练图谱\",\"bookUrl\":\"https://book.douban.com/subject/30810052/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/01ddb2f98d63324cb3879f675c8b447f.jpg\"}]},{\"topicId\":30915,\"topicName\":\"X线测量\",\"salesQuantity\":1,\"salesPrice\":130.0000,\"increasePercent\":0.0000,\"bookDTOS\":[{\"topicId\":30915,\"bookId\":658256,\"bookName\":\"现代X线头影测量放射学\",\"bookUrl\":\"https://book.douban.com/subject/30807161/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/615ed23cfb384449a1546073802ff40f.jpg\"}]},{\"topicId\":45466,\"topicName\":\"生存竞争\",\"salesQuantity\":2,\"salesPrice\":33.6000,\"increasePercent\":0.0000,\"bookDTOS\":[{\"topicId\":45466,\"bookId\":1136591,\"bookName\":\"野生动物的生存\",\"bookUrl\":\"https://book.douban.com/subject/33448749/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/10e11dac801e70dddc27167932169246.jpg\"}]},{\"topicId\":56074,\"topicName\":\"生产计划管理\",\"salesQuantity\":56,\"salesPrice\":3984.0000,\"increasePercent\":0.0000,\"bookDTOS\":[{\"topicId\":56074,\"bookId\":458112,\"bookName\":\"生产计划与管控\",\"bookUrl\":\"https://book.douban.com/subject/35589445/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/c4221f5ccb844fad3be78cf9c7df1a97.jpg\"},{\"topicId\":56074,\"bookId\":1108816,\"bookName\":\"生产计划与作业控制指南\",\"bookUrl\":\"https://book.douban.com/subject/35544006/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/a2dccc306afc092d3eaf1252b15cdffb.jpg\"}]},{\"topicId\":61711,\"topicName\":\"妇女劳动保护\",\"salesQuantity\":43,\"salesPrice\":1844.0000,\"increasePercent\":0.0000,\"bookDTOS\":[{\"topicId\":61711,\"bookId\":860448,\"bookName\":\"人力资源法律管理\",\"bookUrl\":\"https://book.douban.com/subject/26718716/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/4ace486bb45106bfb6633ae128c42981.jpg\"},{\"topicId\":61711,\"bookId\":1055252,\"bookName\":\"工会工作坊\",\"bookUrl\":\"https://book.douban.com/subject/33374409/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/2bc5721018243d5bbe6ae04cabcbf772.jpg\"},{\"topicId\":61711,\"bookId\":1262675,\"bookName\":\"女性劳动者权益法律保护\",\"bookUrl\":\"https://book.douban.com/subject/35626292/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/f2705c62d4ca4b71a9da256ed6b29b66.jpg\"}]},{\"topicId\":66084,\"topicName\":\"F.(1866~1924)\",\"salesQuantity\":2,\"salesPrice\":22.0000,\"increasePercent\":0.0000,\"bookDTOS\":[{\"topicId\":66084,\"bookId\":371671,\"bookName\":\"布索尼\",\"bookUrl\":\"https://book.douban.com/subject/2317465/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/b98089d93357fee1e825de1e3e4dc0f8.jpg\"}]},{\"topicId\":60415,\"topicName\":\"彼得·彼得森\",\"salesQuantity\":4,\"salesPrice\":236.0000,\"increasePercent\":0.0000,\"bookDTOS\":[{\"topicId\":60415,\"bookId\":710950,\"bookName\":\"彼得·彼得森传\",\"bookUrl\":\"https://book.douban.com/subject/35555599/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/f26b03d086a712aabb49203a06a1cd08.jpg\"}]},{\"topicId\":71424,\"topicName\":\"毕达哥拉斯(前580~前500)\",\"salesQuantity\":1,\"salesPrice\":22.0000,\"increasePercent\":0.0000,\"bookDTOS\":[{\"topicId\":71424,\"bookId\":794835,\"bookName\":\"毕达哥拉斯给我们讲述“数”的故事\",\"bookUrl\":\"https://book.douban.com/subject/4742309/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/8c8f81decc73dcb66294d1a1c394b43c.jpg\"}]},{\"topicId\":8648,\"topicName\":\"版图\",\"salesQuantity\":1011,\"salesPrice\":28141.0000,\"increasePercent\":0.0000,\"bookDTOS\":[{\"topicId\":8648,\"bookId\":968026,\"bookName\":\"国家版图知识读本\",\"bookUrl\":\"https://book.douban.com/subject/20282291/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/7f531813239b557d7c1aa13e211ec476.jpg\"},{\"topicId\":8648,\"bookId\":969157,\"bookName\":\"祖国在我心中\",\"bookUrl\":\"\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/8250c31bb8a313a9bc3ad29ce7006492.jpg\"},{\"topicId\":8648,\"bookId\":969164,\"bookName\":\"国家版图知识读本\",\"bookUrl\":\"https://book.douban.com/subject/35125062/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/3ec1352c654df7adbcd045f4e836d7c3.jpg\"}]}],\"pageNum\":1,\"pageSize\":10,\"size\":10,\"startRow\":1,\"endRow\":10,\"pages\":3866,\"prePage\":0,\"nextPage\":2,\"isFirstPage\":true,\"isLastPage\":false,\"hasPreviousPage\":false,\"hasNextPage\":true,\"navigatePages\":8,\"navigatepageNums\":[1,2,3,4,5,6,7,8],\"navigateFirstPage\":1,\"navigateLastPage\":8},\"encrypt\":false}', checkSQL='null'}"},{"name":"isAuthorization","value":"true"}],"start":1678785688623,"stop":1678785688729},{"name":"响应结果进行断言","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"cas","value":"Case{id='26', desc='【选题洞察】潜力增长选题>销售幅度大', params='{\"currentPage\":1,\"numPerPage\":10,\"oneCategoryId\":-1,\"twoCategoryId\":-1,\"periodType\":\"month\",\"timeValue\":[\"2022-01-01 \",\" 2022-01-31\"],\"uuid\":\"TV5kex5r\",\"startMonth\":\"2022-01-01 \",\"endMonth\":\" 2022-01-31\",\"lastStartMonth\":\"2021-12-01\",\"lastEndMonth\":\"2021-12-31\",\"potentialSortType\":1}', apiID='20', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"total\":38660,\"list\":[{\"topicId\":70745,\"topicName\":\"黄歇(前314-前238)\",\"salesQuantity\":1,\"salesPrice\":28.0000,\"increasePercent\":0.0000,\"bookDTOS\":[{\"topicId\":70745,\"bookId\":685818,\"bookName\":\"黄歇传\",\"bookUrl\":\"https://book.douban.com/subject/35347633/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/af366767f2435f3e62739340497052c5.jpg\"}]},{\"topicId\":22668,\"topicName\":\"脑发育不全\",\"salesQuantity\":80,\"salesPrice\":6880.0000,\"increasePercent\":0.0000,\"bookDTOS\":[{\"topicId\":22668,\"bookId\":579445,\"bookName\":\"儿童脑发育早期干预训练图谱\",\"bookUrl\":\"https://book.douban.com/subject/30810052/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/01ddb2f98d63324cb3879f675c8b447f.jpg\"}]},{\"topicId\":30915,\"topicName\":\"X线测量\",\"salesQuantity\":1,\"salesPrice\":130.0000,\"increasePercent\":0.0000,\"bookDTOS\":[{\"topicId\":30915,\"bookId\":658256,\"bookName\":\"现代X线头影测量放射学\",\"bookUrl\":\"https://book.douban.com/subject/30807161/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/615ed23cfb384449a1546073802ff40f.jpg\"}]},{\"topicId\":45466,\"topicName\":\"生存竞争\",\"salesQuantity\":2,\"salesPrice\":33.6000,\"increasePercent\":0.0000,\"bookDTOS\":[{\"topicId\":45466,\"bookId\":1136591,\"bookName\":\"野生动物的生存\",\"bookUrl\":\"https://book.douban.com/subject/33448749/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/10e11dac801e70dddc27167932169246.jpg\"}]},{\"topicId\":56074,\"topicName\":\"生产计划管理\",\"salesQuantity\":56,\"salesPrice\":3984.0000,\"increasePercent\":0.0000,\"bookDTOS\":[{\"topicId\":56074,\"bookId\":458112,\"bookName\":\"生产计划与管控\",\"bookUrl\":\"https://book.douban.com/subject/35589445/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/c4221f5ccb844fad3be78cf9c7df1a97.jpg\"},{\"topicId\":56074,\"bookId\":1108816,\"bookName\":\"生产计划与作业控制指南\",\"bookUrl\":\"https://book.douban.com/subject/35544006/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/a2dccc306afc092d3eaf1252b15cdffb.jpg\"}]},{\"topicId\":61711,\"topicName\":\"妇女劳动保护\",\"salesQuantity\":43,\"salesPrice\":1844.0000,\"increasePercent\":0.0000,\"bookDTOS\":[{\"topicId\":61711,\"bookId\":860448,\"bookName\":\"人力资源法律管理\",\"bookUrl\":\"https://book.douban.com/subject/26718716/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/4ace486bb45106bfb6633ae128c42981.jpg\"},{\"topicId\":61711,\"bookId\":1055252,\"bookName\":\"工会工作坊\",\"bookUrl\":\"https://book.douban.com/subject/33374409/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/2bc5721018243d5bbe6ae04cabcbf772.jpg\"},{\"topicId\":61711,\"bookId\":1262675,\"bookName\":\"女性劳动者权益法律保护\",\"bookUrl\":\"https://book.douban.com/subject/35626292/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/f2705c62d4ca4b71a9da256ed6b29b66.jpg\"}]},{\"topicId\":66084,\"topicName\":\"F.(1866~1924)\",\"salesQuantity\":2,\"salesPrice\":22.0000,\"increasePercent\":0.0000,\"bookDTOS\":[{\"topicId\":66084,\"bookId\":371671,\"bookName\":\"布索尼\",\"bookUrl\":\"https://book.douban.com/subject/2317465/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/b98089d93357fee1e825de1e3e4dc0f8.jpg\"}]},{\"topicId\":60415,\"topicName\":\"彼得·彼得森\",\"salesQuantity\":4,\"salesPrice\":236.0000,\"increasePercent\":0.0000,\"bookDTOS\":[{\"topicId\":60415,\"bookId\":710950,\"bookName\":\"彼得·彼得森传\",\"bookUrl\":\"https://book.douban.com/subject/35555599/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/f26b03d086a712aabb49203a06a1cd08.jpg\"}]},{\"topicId\":71424,\"topicName\":\"毕达哥拉斯(前580~前500)\",\"salesQuantity\":1,\"salesPrice\":22.0000,\"increasePercent\":0.0000,\"bookDTOS\":[{\"topicId\":71424,\"bookId\":794835,\"bookName\":\"毕达哥拉斯给我们讲述“数”的故事\",\"bookUrl\":\"https://book.douban.com/subject/4742309/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/8c8f81decc73dcb66294d1a1c394b43c.jpg\"}]},{\"topicId\":8648,\"topicName\":\"版图\",\"salesQuantity\":1011,\"salesPrice\":28141.0000,\"increasePercent\":0.0000,\"bookDTOS\":[{\"topicId\":8648,\"bookId\":968026,\"bookName\":\"国家版图知识读本\",\"bookUrl\":\"https://book.douban.com/subject/20282291/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/7f531813239b557d7c1aa13e211ec476.jpg\"},{\"topicId\":8648,\"bookId\":969157,\"bookName\":\"祖国在我心中\",\"bookUrl\":\"\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/8250c31bb8a313a9bc3ad29ce7006492.jpg\"},{\"topicId\":8648,\"bookId\":969164,\"bookName\":\"国家版图知识读本\",\"bookUrl\":\"https://book.douban.com/subject/35125062/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/3ec1352c654df7adbcd045f4e836d7c3.jpg\"}]}],\"pageNum\":1,\"pageSize\":10,\"size\":10,\"startRow\":1,\"endRow\":10,\"pages\":3866,\"prePage\":0,\"nextPage\":2,\"isFirstPage\":true,\"isLastPage\":false,\"hasPreviousPage\":false,\"hasNextPage\":true,\"navigatePages\":8,\"navigatepageNums\":[1,2,3,4,5,6,7,8],\"navigateFirstPage\":1,\"navigateLastPage\":8},\"encrypt\":false}', checkSQL='null'}"},{"name":"body","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"total\":0,\"list\":[],\"pageNum\":1,\"pageSize\":10,\"size\":0,\"startRow\":0,\"endRow\":0,\"pages\":0,\"prePage\":0,\"nextPage\":0,\"isFirstPage\":true,\"isLastPage\":true,\"hasPreviousPage\":false,\"hasNextPage\":false,\"navigatePages\":8,\"navigatepageNums\":[],\"navigateFirstPage\":0,\"navigateLastPage\":0},\"encrypt\":false}"}],"start":1678785688729,"stop":1678785688729},{"name":"添加回写内容","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"rowNum","value":"26"},{"name":"cellNum","value":"5"},{"name":"body","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"total\":0,\"list\":[],\"pageNum\":1,\"pageSize\":10,\"size\":0,\"startRow\":0,\"endRow\":0,\"pages\":0,\"prePage\":0,\"nextPage\":0,\"isFirstPage\":true,\"isLastPage\":true,\"hasPreviousPage\":false,\"hasNextPage\":false,\"navigatePages\":8,\"navigatepageNums\":[],\"navigateFirstPage\":0,\"navigateLastPage\":0},\"encrypt\":false}"}],"start":1678785688729,"stop":1678785688729}],"attachments":[],"parameters":[{"name":"type","value":"phone"},{"name":"version","value":"1.1.1"},{"name":"arg1","value":"Case{id='26', desc='【选题洞察】潜力增长选题>销售幅度大', params='{\"currentPage\":1,\"numPerPage\":10,\"oneCategoryId\":-1,\"twoCategoryId\":-1,\"periodType\":\"month\",\"timeValue\":[\"2022-01-01 \",\" 2022-01-31\"],\"uuid\":\"TV5kex5r\",\"startMonth\":\"2022-01-01 \",\"endMonth\":\" 2022-01-31\",\"lastStartMonth\":\"2021-12-01\",\"lastEndMonth\":\"2021-12-31\",\"potentialSortType\":1}', apiID='20', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"total\":38660,\"list\":[{\"topicId\":70745,\"topicName\":\"黄歇(前314-前238)\",\"salesQuantity\":1,\"salesPrice\":28.0000,\"increasePercent\":0.0000,\"bookDTOS\":[{\"topicId\":70745,\"bookId\":685818,\"bookName\":\"黄歇传\",\"bookUrl\":\"https://book.douban.com/subject/35347633/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/af366767f2435f3e62739340497052c5.jpg\"}]},{\"topicId\":22668,\"topicName\":\"脑发育不全\",\"salesQuantity\":80,\"salesPrice\":6880.0000,\"increasePercent\":0.0000,\"bookDTOS\":[{\"topicId\":22668,\"bookId\":579445,\"bookName\":\"儿童脑发育早期干预训练图谱\",\"bookUrl\":\"https://book.douban.com/subject/30810052/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/01ddb2f98d63324cb3879f675c8b447f.jpg\"}]},{\"topicId\":30915,\"topicName\":\"X线测量\",\"salesQuantity\":1,\"salesPrice\":130.0000,\"increasePercent\":0.0000,\"bookDTOS\":[{\"topicId\":30915,\"bookId\":658256,\"bookName\":\"现代X线头影测量放射学\",\"bookUrl\":\"https://book.douban.com/subject/30807161/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/615ed23cfb384449a1546073802ff40f.jpg\"}]},{\"topicId\":45466,\"topicName\":\"生存竞争\",\"salesQuantity\":2,\"salesPrice\":33.6000,\"increasePercent\":0.0000,\"bookDTOS\":[{\"topicId\":45466,\"bookId\":1136591,\"bookName\":\"野生动物的生存\",\"bookUrl\":\"https://book.douban.com/subject/33448749/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/10e11dac801e70dddc27167932169246.jpg\"}]},{\"topicId\":56074,\"topicName\":\"生产计划管理\",\"salesQuantity\":56,\"salesPrice\":3984.0000,\"increasePercent\":0.0000,\"bookDTOS\":[{\"topicId\":56074,\"bookId\":458112,\"bookName\":\"生产计划与管控\",\"bookUrl\":\"https://book.douban.com/subject/35589445/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/c4221f5ccb844fad3be78cf9c7df1a97.jpg\"},{\"topicId\":56074,\"bookId\":1108816,\"bookName\":\"生产计划与作业控制指南\",\"bookUrl\":\"https://book.douban.com/subject/35544006/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/a2dccc306afc092d3eaf1252b15cdffb.jpg\"}]},{\"topicId\":61711,\"topicName\":\"妇女劳动保护\",\"salesQuantity\":43,\"salesPrice\":1844.0000,\"increasePercent\":0.0000,\"bookDTOS\":[{\"topicId\":61711,\"bookId\":860448,\"bookName\":\"人力资源法律管理\",\"bookUrl\":\"https://book.douban.com/subject/26718716/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/4ace486bb45106bfb6633ae128c42981.jpg\"},{\"topicId\":61711,\"bookId\":1055252,\"bookName\":\"工会工作坊\",\"bookUrl\":\"https://book.douban.com/subject/33374409/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/2bc5721018243d5bbe6ae04cabcbf772.jpg\"},{\"topicId\":61711,\"bookId\":1262675,\"bookName\":\"女性劳动者权益法律保护\",\"bookUrl\":\"https://book.douban.com/subject/35626292/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/f2705c62d4ca4b71a9da256ed6b29b66.jpg\"}]},{\"topicId\":66084,\"topicName\":\"F.(1866~1924)\",\"salesQuantity\":2,\"salesPrice\":22.0000,\"increasePercent\":0.0000,\"bookDTOS\":[{\"topicId\":66084,\"bookId\":371671,\"bookName\":\"布索尼\",\"bookUrl\":\"https://book.douban.com/subject/2317465/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/b98089d93357fee1e825de1e3e4dc0f8.jpg\"}]},{\"topicId\":60415,\"topicName\":\"彼得·彼得森\",\"salesQuantity\":4,\"salesPrice\":236.0000,\"increasePercent\":0.0000,\"bookDTOS\":[{\"topicId\":60415,\"bookId\":710950,\"bookName\":\"彼得·彼得森传\",\"bookUrl\":\"https://book.douban.com/subject/35555599/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/f26b03d086a712aabb49203a06a1cd08.jpg\"}]},{\"topicId\":71424,\"topicName\":\"毕达哥拉斯(前580~前500)\",\"salesQuantity\":1,\"salesPrice\":22.0000,\"increasePercent\":0.0000,\"bookDTOS\":[{\"topicId\":71424,\"bookId\":794835,\"bookName\":\"毕达哥拉斯给我们讲述“数”的故事\",\"bookUrl\":\"https://book.douban.com/subject/4742309/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/8c8f81decc73dcb66294d1a1c394b43c.jpg\"}]},{\"topicId\":8648,\"topicName\":\"版图\",\"salesQuantity\":1011,\"salesPrice\":28141.0000,\"increasePercent\":0.0000,\"bookDTOS\":[{\"topicId\":8648,\"bookId\":968026,\"bookName\":\"国家版图知识读本\",\"bookUrl\":\"https://book.douban.com/subject/20282291/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/7f531813239b557d7c1aa13e211ec476.jpg\"},{\"topicId\":8648,\"bookId\":969157,\"bookName\":\"祖国在我心中\",\"bookUrl\":\"\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/8250c31bb8a313a9bc3ad29ce7006492.jpg\"},{\"topicId\":8648,\"bookId\":969164,\"bookName\":\"国家版图知识读本\",\"bookUrl\":\"https://book.douban.com/subject/35125062/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/3ec1352c654df7adbcd045f4e836d7c3.jpg\"}]}],\"pageNum\":1,\"pageSize\":10,\"size\":10,\"startRow\":1,\"endRow\":10,\"pages\":3866,\"prePage\":0,\"nextPage\":2,\"isFirstPage\":true,\"isLastPage\":false,\"hasPreviousPage\":false,\"hasNextPage\":true,\"navigatePages\":8,\"navigatepageNums\":[1,2,3,4,5,6,7,8],\"navigateFirstPage\":1,\"navigateLastPage\":8},\"encrypt\":false}', checkSQL='null'}"},{"name":"arg0","value":"com.lemon.pojo.API@2519026b"}],"start":1678785688623,"stop":1678785688729}
\ No newline at end of file
{"uuid":"3868fa45-9d16-47ce-a50e-88ef0c44bc7b","historyId":"6eb032c4cb2e132c426e366170a17134","fullName":"com.lemon.cases.RaysDataCase.testGetSubscriptList3","labels":[{"name":"package","value":"com.lemon.cases.RaysDataCase"},{"name":"testClass","value":"com.lemon.cases.RaysDataCase"},{"name":"testMethod","value":"testGetSubscriptList3"},{"name":"parentSuite","value":"理工数传"},{"name":"suite","value":"睿思数据"},{"name":"subSuite","value":"com.lemon.cases.RaysDataCase"},{"name":"host","value":"Ray-MacBook-Pro-2.local"},{"name":"thread","value":"15239@Ray-MacBook-Pro-2.local.main(1)"},{"name":"framework","value":"testng"},{"name":"language","value":"java"}],"links":[],"name":"获取我订阅的选题","status":"passed","statusDetails":{"known":false,"muted":false,"flaky":false},"stage":"finished","description":"获取我订阅的选题","steps":[{"name":"参数化替换","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"source","value":"null"}],"start":1678785687021,"stop":1678785687022},{"name":"参数化替换","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"source","value":"null"}],"start":1678785687022,"stop":1678785687022},{"name":"接口调用方法","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"api","value":"com.lemon.pojo.API@28babeca"},{"name":"cas","value":"Case{id='10', desc='获取我订阅的选题', params='null', apiID='6', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"data\":[{\"topicId\":369,\"topicName\":\"天才\",\"updateTime\":\"2022-11-09T07:37:24.000+00:00\"},{\"topicId\":1197,\"topicName\":\"艺术\",\"updateTime\":\"2022-11-09T07:37:24.000+00:00\"},{\"topicId\":3155,\"topicName\":\"中国\",\"updateTime\":\"2022-11-09T07:37:24.000+00:00\"},{\"topicId\":3541,\"topicName\":\"自然\",\"updateTime\":\"2022-11-09T07:37:24.000+00:00\"},{\"topicId\":10471,\"topicName\":\"评弹\",\"updateTime\":\"2022-11-09T07:37:24.000+00:00\"},{\"topicId\":10988,\"topicName\":\"晚唐\",\"updateTime\":\"2022-11-09T07:37:24.000+00:00\"},{\"topicId\":11224,\"topicName\":\"创意\",\"updateTime\":\"2022-11-09T07:37:24.000+00:00\"},{\"topicId\":11376,\"topicName\":\"深井\",\"updateTime\":\"2022-11-09T07:37:24.000+00:00\"},{\"topicId\":30350,\"topicName\":\"马达加斯加\",\"updateTime\":\"2022-11-09T07:37:24.000+00:00\"},{\"topicId\":30952,\"topicName\":\"军转民\",\"updateTime\":\"2022-11-09T07:37:24.000+00:00\"},{\"topicId\":33477,\"topicName\":\"资源利用\",\"updateTime\":\"2022-11-09T07:37:24.000+00:00\"},{\"topicId\":40859,\"topicName\":\"红四方面军\",\"updateTime\":\"2022-11-09T07:37:24.000+00:00\"},{\"topicId\":50045,\"topicName\":\"污染源调查\",\"updateTime\":\"2022-11-09T07:37:24.000+00:00\"}],\"encrypt\":false}', checkSQL='null'}"},{"name":"isAuthorization","value":"true"}],"start":1678785687022,"stop":1678785687229},{"name":"响应结果进行断言","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"cas","value":"Case{id='10', desc='获取我订阅的选题', params='null', apiID='6', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"data\":[{\"topicId\":369,\"topicName\":\"天才\",\"updateTime\":\"2022-11-09T07:37:24.000+00:00\"},{\"topicId\":1197,\"topicName\":\"艺术\",\"updateTime\":\"2022-11-09T07:37:24.000+00:00\"},{\"topicId\":3155,\"topicName\":\"中国\",\"updateTime\":\"2022-11-09T07:37:24.000+00:00\"},{\"topicId\":3541,\"topicName\":\"自然\",\"updateTime\":\"2022-11-09T07:37:24.000+00:00\"},{\"topicId\":10471,\"topicName\":\"评弹\",\"updateTime\":\"2022-11-09T07:37:24.000+00:00\"},{\"topicId\":10988,\"topicName\":\"晚唐\",\"updateTime\":\"2022-11-09T07:37:24.000+00:00\"},{\"topicId\":11224,\"topicName\":\"创意\",\"updateTime\":\"2022-11-09T07:37:24.000+00:00\"},{\"topicId\":11376,\"topicName\":\"深井\",\"updateTime\":\"2022-11-09T07:37:24.000+00:00\"},{\"topicId\":30350,\"topicName\":\"马达加斯加\",\"updateTime\":\"2022-11-09T07:37:24.000+00:00\"},{\"topicId\":30952,\"topicName\":\"军转民\",\"updateTime\":\"2022-11-09T07:37:24.000+00:00\"},{\"topicId\":33477,\"topicName\":\"资源利用\",\"updateTime\":\"2022-11-09T07:37:24.000+00:00\"},{\"topicId\":40859,\"topicName\":\"红四方面军\",\"updateTime\":\"2022-11-09T07:37:24.000+00:00\"},{\"topicId\":50045,\"topicName\":\"污染源调查\",\"updateTime\":\"2022-11-09T07:37:24.000+00:00\"}],\"encrypt\":false}', checkSQL='null'}"},{"name":"body","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":[{\"topicId\":1197,\"topicName\":\"动力\",\"status\":100,\"updateTime\":\"2023-03-13T11:05:04.000+00:00\"},{\"topicId\":3155,\"topicName\":\"艺术心理学\",\"status\":100,\"updateTime\":\"2023-03-13T11:09:48.000+00:00\"},{\"topicId\":11224,\"topicName\":\"本科生\",\"status\":100,\"updateTime\":\"2023-03-13T11:08:40.000+00:00\"},{\"topicId\":11376,\"topicName\":\"证据法\",\"status\":100,\"updateTime\":\"2023-03-13T11:01:43.000+00:00\"},{\"topicId\":40859,\"topicName\":\"普及本\",\"status\":0,\"updateTime\":\"2022-11-18T08:58:09.000+00:00\"},{\"topicId\":108285,\"topicName\":\"袁隆平\",\"status\":100,\"updateTime\":\"2023-03-13T11:09:44.000+00:00\"}],\"encrypt\":false}"}],"start":1678785687229,"stop":1678785687229},{"name":"添加回写内容","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"rowNum","value":"10"},{"name":"cellNum","value":"5"},{"name":"body","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":[{\"topicId\":1197,\"topicName\":\"动力\",\"status\":100,\"updateTime\":\"2023-03-13T11:05:04.000+00:00\"},{\"topicId\":3155,\"topicName\":\"艺术心理学\",\"status\":100,\"updateTime\":\"2023-03-13T11:09:48.000+00:00\"},{\"topicId\":11224,\"topicName\":\"本科生\",\"status\":100,\"updateTime\":\"2023-03-13T11:08:40.000+00:00\"},{\"topicId\":11376,\"topicName\":\"证据法\",\"status\":100,\"updateTime\":\"2023-03-13T11:01:43.000+00:00\"},{\"topicId\":40859,\"topicName\":\"普及本\",\"status\":0,\"updateTime\":\"2022-11-18T08:58:09.000+00:00\"},{\"topicId\":108285,\"topicName\":\"袁隆平\",\"status\":100,\"updateTime\":\"2023-03-13T11:09:44.000+00:00\"}],\"encrypt\":false}"}],"start":1678785687229,"stop":1678785687229}],"attachments":[],"parameters":[{"name":"type","value":"phone"},{"name":"version","value":"1.1.1"},{"name":"arg1","value":"Case{id='10', desc='获取我订阅的选题', params='null', apiID='6', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"data\":[{\"topicId\":369,\"topicName\":\"天才\",\"updateTime\":\"2022-11-09T07:37:24.000+00:00\"},{\"topicId\":1197,\"topicName\":\"艺术\",\"updateTime\":\"2022-11-09T07:37:24.000+00:00\"},{\"topicId\":3155,\"topicName\":\"中国\",\"updateTime\":\"2022-11-09T07:37:24.000+00:00\"},{\"topicId\":3541,\"topicName\":\"自然\",\"updateTime\":\"2022-11-09T07:37:24.000+00:00\"},{\"topicId\":10471,\"topicName\":\"评弹\",\"updateTime\":\"2022-11-09T07:37:24.000+00:00\"},{\"topicId\":10988,\"topicName\":\"晚唐\",\"updateTime\":\"2022-11-09T07:37:24.000+00:00\"},{\"topicId\":11224,\"topicName\":\"创意\",\"updateTime\":\"2022-11-09T07:37:24.000+00:00\"},{\"topicId\":11376,\"topicName\":\"深井\",\"updateTime\":\"2022-11-09T07:37:24.000+00:00\"},{\"topicId\":30350,\"topicName\":\"马达加斯加\",\"updateTime\":\"2022-11-09T07:37:24.000+00:00\"},{\"topicId\":30952,\"topicName\":\"军转民\",\"updateTime\":\"2022-11-09T07:37:24.000+00:00\"},{\"topicId\":33477,\"topicName\":\"资源利用\",\"updateTime\":\"2022-11-09T07:37:24.000+00:00\"},{\"topicId\":40859,\"topicName\":\"红四方面军\",\"updateTime\":\"2022-11-09T07:37:24.000+00:00\"},{\"topicId\":50045,\"topicName\":\"污染源调查\",\"updateTime\":\"2022-11-09T07:37:24.000+00:00\"}],\"encrypt\":false}', checkSQL='null'}"},{"name":"arg0","value":"com.lemon.pojo.API@28babeca"}],"start":1678785687021,"stop":1678785687229}
\ No newline at end of file
{"uuid":"3b613eec-25e9-4afd-997b-23c2482f1b00","historyId":"63b35b5f2792fcb8c9084d5bc117101","fullName":"com.lemon.cases.RaysDataCase.testAAAAALogin","labels":[{"name":"package","value":"com.lemon.cases.RaysDataCase"},{"name":"testClass","value":"com.lemon.cases.RaysDataCase"},{"name":"testMethod","value":"testAAAAALogin"},{"name":"parentSuite","value":"理工数传"},{"name":"suite","value":"睿思数据"},{"name":"subSuite","value":"com.lemon.cases.RaysDataCase"},{"name":"host","value":"Ray-MacBook-Pro-2.local"},{"name":"thread","value":"15239@Ray-MacBook-Pro-2.local.main(1)"},{"name":"framework","value":"testng"},{"name":"language","value":"java"}],"links":[],"name":"登录睿思数据","status":"passed","statusDetails":{"known":false,"muted":false,"flaky":false},"stage":"finished","description":"登录睿思数据","steps":[{"name":"参数化替换","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"source","value":"{\"loginAccount\":\"18696191160\",\"loginPwd\":\"b433f7ac20ae895cc169906858d09a0c\",\"remember\":1}"}],"start":1678785683265,"stop":1678785683265},{"name":"参数化替换","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"source","value":"null"}],"start":1678785683265,"stop":1678785683265},{"name":"接口调用方法","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"api","value":"com.lemon.pojo.API@13803a94"},{"name":"cas","value":"Case{id='1', desc='登录:正确账号+正确密码', params='{\"loginAccount\":\"18696191160\",\"loginPwd\":\"b433f7ac20ae895cc169906858d09a0c\",\"remember\":1}', apiID='2', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"data\":\"937b85e0f9284b24bc453d44f1436f15\",\"encrypt\":false}', checkSQL='null'}"},{"name":"isAuthorization","value":"false"}],"start":1678785683266,"stop":1678785683778},{"name":"响应结果进行断言","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"cas","value":"Case{id='1', desc='登录:正确账号+正确密码', params='{\"loginAccount\":\"18696191160\",\"loginPwd\":\"b433f7ac20ae895cc169906858d09a0c\",\"remember\":1}', apiID='2', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"data\":\"937b85e0f9284b24bc453d44f1436f15\",\"encrypt\":false}', checkSQL='null'}"},{"name":"body","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":\"75cebd61e05240b8a8ef02e65c2fa417\",\"encrypt\":false}"}],"start":1678785683862,"stop":1678785683862},{"name":"添加回写内容","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"rowNum","value":"1"},{"name":"cellNum","value":"5"},{"name":"body","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":\"75cebd61e05240b8a8ef02e65c2fa417\",\"encrypt\":false}"}],"start":1678785683862,"stop":1678785683862}],"attachments":[],"parameters":[{"name":"type","value":"phone"},{"name":"version","value":"1.1.1"},{"name":"arg1","value":"Case{id='1', desc='登录:正确账号+正确密码', params='{\"loginAccount\":\"18696191160\",\"loginPwd\":\"b433f7ac20ae895cc169906858d09a0c\",\"remember\":1}', apiID='2', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"data\":\"937b85e0f9284b24bc453d44f1436f15\",\"encrypt\":false}', checkSQL='null'}"},{"name":"arg0","value":"com.lemon.pojo.API@13803a94"}],"start":1678785683262,"stop":1678785683863}
\ No newline at end of file
{"uuid":"41f93327-2f72-4d9d-b65c-e2d3bb20714e","historyId":"6512c2d66240a2b0bdd8d5902000aa1d","fullName":"com.lemon.cases.RaysDataCase.testGetCategoryInfoList","labels":[{"name":"package","value":"com.lemon.cases.RaysDataCase"},{"name":"testClass","value":"com.lemon.cases.RaysDataCase"},{"name":"testMethod","value":"testGetCategoryInfoList"},{"name":"parentSuite","value":"理工数传"},{"name":"suite","value":"睿思数据"},{"name":"subSuite","value":"com.lemon.cases.RaysDataCase"},{"name":"host","value":"Ray-MacBook-Pro-2.local"},{"name":"thread","value":"15239@Ray-MacBook-Pro-2.local.main(1)"},{"name":"framework","value":"testng"},{"name":"language","value":"java"}],"links":[],"name":"获取主页图书数据1","status":"passed","statusDetails":{"known":false,"muted":false,"flaky":false},"stage":"finished","description":"获取主页图书数据1","steps":[{"name":"参数化替换","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"source","value":"null"}],"start":1678785684792,"stop":1678785684792},{"name":"参数化替换","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"source","value":"null"}],"start":1678785684792,"stop":1678785684792},{"name":"接口调用方法","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"api","value":"com.lemon.pojo.API@778a1250"},{"name":"cas","value":"Case{id='17', desc='【选题洞察】选择行业分类', params='null', apiID='13', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"data\":[{\"parentId\":0,\"categoryId\":-1,\"categoryName\":\"全分类\",\"childCategoryList\":[{\"parentId\":-1,\"categoryId\":-1,\"categoryName\":\"全分类\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":101,\"categoryName\":\"文学\",\"childCategoryList\":[{\"parentId\":101,\"categoryId\":20001,\"categoryName\":\"小说\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":101,\"categoryId\":20002,\"categoryName\":\"文学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":101,\"categoryId\":20003,\"categoryName\":\"青春文学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":101,\"categoryId\":20004,\"categoryName\":\"传记\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":101,\"categoryId\":20024,\"categoryName\":\"动漫\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":102,\"categoryName\":\"艺术\",\"childCategoryList\":[{\"parentId\":102,\"categoryId\":20005,\"categoryName\":\"艺术\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":102,\"categoryId\":20006,\"categoryName\":\"音乐\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":102,\"categoryId\":20007,\"categoryName\":\"摄影\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":102,\"categoryId\":20008,\"categoryName\":\"书法\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":102,\"categoryId\":20009,\"categoryName\":\"绘画\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":104,\"categoryName\":\"童书\",\"childCategoryList\":[{\"parentId\":104,\"categoryId\":20010,\"categoryName\":\"童书\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20053,\"categoryName\":\"动漫/卡通\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20054,\"categoryName\":\"历史/国学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20055,\"categoryName\":\"学前教育\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20056,\"categoryName\":\"儿童文学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20057,\"categoryName\":\"幼儿启蒙\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20058,\"categoryName\":\"手工/游戏\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20059,\"categoryName\":\"才艺培养\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20060,\"categoryName\":\"智力开发\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20061,\"categoryName\":\"科普/百科\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20062,\"categoryName\":\"励志/成长\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20063,\"categoryName\":\"少儿英语\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20064,\"categoryName\":\"0-2岁\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20065,\"categoryName\":\"3-6岁\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20066,\"categoryName\":\"7-10岁\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20067,\"categoryName\":\"11-14岁\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20068,\"categoryName\":\"幼儿心理学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20069,\"categoryName\":\"儿童绘本\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20070,\"categoryName\":\"美术/书法\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20071,\"categoryName\":\"玩具书\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20072,\"categoryName\":\"少儿期刊\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20073,\"categoryName\":\"AR/VR\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":105,\"categoryName\":\"经管励志\",\"childCategoryList\":[{\"parentId\":105,\"categoryId\":20011,\"categoryName\":\"励志与成功\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":105,\"categoryId\":20012,\"categoryName\":\"管理\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":105,\"categoryId\":20013,\"categoryName\":\"经济\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":105,\"categoryId\":20014,\"categoryName\":\"金融与投资\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":106,\"categoryName\":\"生活\",\"childCategoryList\":[{\"parentId\":106,\"categoryId\":20015,\"categoryName\":\"家教\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20016,\"categoryName\":\"育儿\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20017,\"categoryName\":\"旅游/地图\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20018,\"categoryName\":\"烹饪/美食\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20019,\"categoryName\":\"时尚/美妆\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20020,\"categoryName\":\"家居\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20021,\"categoryName\":\"婚恋与两性\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20022,\"categoryName\":\"娱乐/休闲\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20023,\"categoryName\":\"养生/保健\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20041,\"categoryName\":\"运动/健身\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":107,\"categoryName\":\"人文社科\",\"childCategoryList\":[{\"parentId\":107,\"categoryId\":20025,\"categoryName\":\"历史\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20026,\"categoryName\":\"心理学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20027,\"categoryName\":\"政治/军事\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20028,\"categoryName\":\"国学/古籍\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20029,\"categoryName\":\"哲学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20030,\"categoryName\":\"法律\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20031,\"categoryName\":\"文化\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20032,\"categoryName\":\"社会科学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20033,\"categoryName\":\"科普读物\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20052,\"categoryName\":\"宗教\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":108,\"categoryName\":\"科学技术\",\"childCategoryList\":[{\"parentId\":108,\"categoryId\":20034,\"categoryName\":\"计算机与互联网\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":20035,\"categoryName\":\"建筑\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":20036,\"categoryName\":\"医学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":20037,\"categoryName\":\"工业技术\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":20038,\"categoryName\":\"电子与通信\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":20039,\"categoryName\":\"农业/林业\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":20040,\"categoryName\":\"科学与自然\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":109,\"categoryName\":\"教材教辅\",\"childCategoryList\":[{\"parentId\":109,\"categoryId\":20042,\"categoryName\":\"中小学教辅\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":109,\"categoryId\":20043,\"categoryName\":\"大中专教材教辅\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":109,\"categoryId\":20044,\"categoryName\":\"考试\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":109,\"categoryId\":20045,\"categoryName\":\"外语学习\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":109,\"categoryId\":20046,\"categoryName\":\"字典词典/工具书\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null}],\"encrypt\":false}', checkSQL='null'}"},{"name":"isAuthorization","value":"true"}],"start":1678785684792,"stop":1678785684893},{"name":"响应结果进行断言","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"cas","value":"Case{id='17', desc='【选题洞察】选择行业分类', params='null', apiID='13', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"data\":[{\"parentId\":0,\"categoryId\":-1,\"categoryName\":\"全分类\",\"childCategoryList\":[{\"parentId\":-1,\"categoryId\":-1,\"categoryName\":\"全分类\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":101,\"categoryName\":\"文学\",\"childCategoryList\":[{\"parentId\":101,\"categoryId\":20001,\"categoryName\":\"小说\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":101,\"categoryId\":20002,\"categoryName\":\"文学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":101,\"categoryId\":20003,\"categoryName\":\"青春文学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":101,\"categoryId\":20004,\"categoryName\":\"传记\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":101,\"categoryId\":20024,\"categoryName\":\"动漫\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":102,\"categoryName\":\"艺术\",\"childCategoryList\":[{\"parentId\":102,\"categoryId\":20005,\"categoryName\":\"艺术\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":102,\"categoryId\":20006,\"categoryName\":\"音乐\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":102,\"categoryId\":20007,\"categoryName\":\"摄影\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":102,\"categoryId\":20008,\"categoryName\":\"书法\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":102,\"categoryId\":20009,\"categoryName\":\"绘画\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":104,\"categoryName\":\"童书\",\"childCategoryList\":[{\"parentId\":104,\"categoryId\":20010,\"categoryName\":\"童书\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20053,\"categoryName\":\"动漫/卡通\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20054,\"categoryName\":\"历史/国学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20055,\"categoryName\":\"学前教育\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20056,\"categoryName\":\"儿童文学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20057,\"categoryName\":\"幼儿启蒙\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20058,\"categoryName\":\"手工/游戏\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20059,\"categoryName\":\"才艺培养\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20060,\"categoryName\":\"智力开发\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20061,\"categoryName\":\"科普/百科\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20062,\"categoryName\":\"励志/成长\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20063,\"categoryName\":\"少儿英语\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20064,\"categoryName\":\"0-2岁\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20065,\"categoryName\":\"3-6岁\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20066,\"categoryName\":\"7-10岁\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20067,\"categoryName\":\"11-14岁\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20068,\"categoryName\":\"幼儿心理学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20069,\"categoryName\":\"儿童绘本\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20070,\"categoryName\":\"美术/书法\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20071,\"categoryName\":\"玩具书\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20072,\"categoryName\":\"少儿期刊\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20073,\"categoryName\":\"AR/VR\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":105,\"categoryName\":\"经管励志\",\"childCategoryList\":[{\"parentId\":105,\"categoryId\":20011,\"categoryName\":\"励志与成功\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":105,\"categoryId\":20012,\"categoryName\":\"管理\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":105,\"categoryId\":20013,\"categoryName\":\"经济\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":105,\"categoryId\":20014,\"categoryName\":\"金融与投资\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":106,\"categoryName\":\"生活\",\"childCategoryList\":[{\"parentId\":106,\"categoryId\":20015,\"categoryName\":\"家教\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20016,\"categoryName\":\"育儿\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20017,\"categoryName\":\"旅游/地图\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20018,\"categoryName\":\"烹饪/美食\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20019,\"categoryName\":\"时尚/美妆\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20020,\"categoryName\":\"家居\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20021,\"categoryName\":\"婚恋与两性\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20022,\"categoryName\":\"娱乐/休闲\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20023,\"categoryName\":\"养生/保健\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20041,\"categoryName\":\"运动/健身\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":107,\"categoryName\":\"人文社科\",\"childCategoryList\":[{\"parentId\":107,\"categoryId\":20025,\"categoryName\":\"历史\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20026,\"categoryName\":\"心理学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20027,\"categoryName\":\"政治/军事\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20028,\"categoryName\":\"国学/古籍\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20029,\"categoryName\":\"哲学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20030,\"categoryName\":\"法律\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20031,\"categoryName\":\"文化\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20032,\"categoryName\":\"社会科学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20033,\"categoryName\":\"科普读物\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20052,\"categoryName\":\"宗教\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":108,\"categoryName\":\"科学技术\",\"childCategoryList\":[{\"parentId\":108,\"categoryId\":20034,\"categoryName\":\"计算机与互联网\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":20035,\"categoryName\":\"建筑\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":20036,\"categoryName\":\"医学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":20037,\"categoryName\":\"工业技术\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":20038,\"categoryName\":\"电子与通信\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":20039,\"categoryName\":\"农业/林业\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":20040,\"categoryName\":\"科学与自然\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":109,\"categoryName\":\"教材教辅\",\"childCategoryList\":[{\"parentId\":109,\"categoryId\":20042,\"categoryName\":\"中小学教辅\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":109,\"categoryId\":20043,\"categoryName\":\"大中专教材教辅\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":109,\"categoryId\":20044,\"categoryName\":\"考试\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":109,\"categoryId\":20045,\"categoryName\":\"外语学习\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":109,\"categoryId\":20046,\"categoryName\":\"字典词典/工具书\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null}],\"encrypt\":false}', checkSQL='null'}"},{"name":"body","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":[{\"parentId\":0,\"categoryId\":-1,\"categoryName\":\"全分类\",\"childCategoryList\":[{\"parentId\":-1,\"categoryId\":-1,\"categoryName\":\"全分类\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":101,\"categoryName\":\"文学\",\"childCategoryList\":[{\"parentId\":101,\"categoryId\":20001,\"categoryName\":\"小说\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":101,\"categoryId\":20002,\"categoryName\":\"文学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":101,\"categoryId\":20003,\"categoryName\":\"青春文学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":101,\"categoryId\":20004,\"categoryName\":\"传记\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":101,\"categoryId\":20024,\"categoryName\":\"动漫\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":101,\"categoryId\":-1,\"categoryName\":\"全分类\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":102,\"categoryName\":\"艺术\",\"childCategoryList\":[{\"parentId\":102,\"categoryId\":20005,\"categoryName\":\"艺术\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":102,\"categoryId\":20006,\"categoryName\":\"音乐\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":102,\"categoryId\":20007,\"categoryName\":\"摄影\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":102,\"categoryId\":20008,\"categoryName\":\"书法\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":102,\"categoryId\":20009,\"categoryName\":\"绘画\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":102,\"categoryId\":-1,\"categoryName\":\"全分类\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":104,\"categoryName\":\"童书\",\"childCategoryList\":[{\"parentId\":104,\"categoryId\":20053,\"categoryName\":\"动漫/卡通\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20054,\"categoryName\":\"历史/国学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20055,\"categoryName\":\"学前教育\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20056,\"categoryName\":\"儿童文学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20057,\"categoryName\":\"幼儿启蒙\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20058,\"categoryName\":\"手工/游戏\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20059,\"categoryName\":\"才艺培养\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20060,\"categoryName\":\"智力开发\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20061,\"categoryName\":\"科普/百科\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20062,\"categoryName\":\"励志/成长\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20063,\"categoryName\":\"少儿英语\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20068,\"categoryName\":\"幼儿心理学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20069,\"categoryName\":\"儿童绘本\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20070,\"categoryName\":\"美术/书法\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20071,\"categoryName\":\"玩具书\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20072,\"categoryName\":\"少儿期刊\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20073,\"categoryName\":\"AR/VR\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":-1,\"categoryName\":\"全分类\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":105,\"categoryName\":\"经管励志\",\"childCategoryList\":[{\"parentId\":105,\"categoryId\":20011,\"categoryName\":\"励志与成功\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":105,\"categoryId\":20012,\"categoryName\":\"管理\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":105,\"categoryId\":20013,\"categoryName\":\"经济\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":105,\"categoryId\":20014,\"categoryName\":\"金融与投资\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":105,\"categoryId\":-1,\"categoryName\":\"全分类\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":106,\"categoryName\":\"生活\",\"childCategoryList\":[{\"parentId\":106,\"categoryId\":20015,\"categoryName\":\"家教\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20016,\"categoryName\":\"育儿\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20017,\"categoryName\":\"旅游/地图\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20018,\"categoryName\":\"烹饪/美食\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20019,\"categoryName\":\"时尚/美妆\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20020,\"categoryName\":\"家居\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20021,\"categoryName\":\"婚恋与两性\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20022,\"categoryName\":\"娱乐/休闲\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20023,\"categoryName\":\"养生/保健\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20041,\"categoryName\":\"运动/健身\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":-1,\"categoryName\":\"全分类\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":107,\"categoryName\":\"人文社科\",\"childCategoryList\":[{\"parentId\":107,\"categoryId\":20025,\"categoryName\":\"历史\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20026,\"categoryName\":\"心理学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20027,\"categoryName\":\"政治/军事\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20028,\"categoryName\":\"国学/古籍\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20029,\"categoryName\":\"哲学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20030,\"categoryName\":\"法律\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20031,\"categoryName\":\"文化\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20032,\"categoryName\":\"社会科学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20033,\"categoryName\":\"科普读物\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20052,\"categoryName\":\"宗教\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":-1,\"categoryName\":\"全分类\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":108,\"categoryName\":\"科学技术\",\"childCategoryList\":[{\"parentId\":108,\"categoryId\":20034,\"categoryName\":\"计算机与互联网\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":20035,\"categoryName\":\"建筑\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":20036,\"categoryName\":\"医学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":20037,\"categoryName\":\"工业技术\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":20038,\"categoryName\":\"电子与通信\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":20039,\"categoryName\":\"农业/林业\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":20040,\"categoryName\":\"科学与自然\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":-1,\"categoryName\":\"全分类\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":109,\"categoryName\":\"教材教辅\",\"childCategoryList\":[{\"parentId\":109,\"categoryId\":20042,\"categoryName\":\"中小学教辅\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":109,\"categoryId\":20043,\"categoryName\":\"大中专教材教辅\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":109,\"categoryId\":20044,\"categoryName\":\"考试\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":109,\"categoryId\":20045,\"categoryName\":\"外语学习\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":109,\"categoryId\":20046,\"categoryName\":\"字典词典/工具书\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":109,\"categoryId\":20074,\"categoryName\":\"教师用书/教育理论\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":109,\"categoryId\":-1,\"categoryName\":\"全分类\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null}],\"encrypt\":false}"}],"start":1678785684894,"stop":1678785684895},{"name":"添加回写内容","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"rowNum","value":"17"},{"name":"cellNum","value":"5"},{"name":"body","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":[{\"parentId\":0,\"categoryId\":-1,\"categoryName\":\"全分类\",\"childCategoryList\":[{\"parentId\":-1,\"categoryId\":-1,\"categoryName\":\"全分类\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":101,\"categoryName\":\"文学\",\"childCategoryList\":[{\"parentId\":101,\"categoryId\":20001,\"categoryName\":\"小说\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":101,\"categoryId\":20002,\"categoryName\":\"文学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":101,\"categoryId\":20003,\"categoryName\":\"青春文学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":101,\"categoryId\":20004,\"categoryName\":\"传记\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":101,\"categoryId\":20024,\"categoryName\":\"动漫\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":101,\"categoryId\":-1,\"categoryName\":\"全分类\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":102,\"categoryName\":\"艺术\",\"childCategoryList\":[{\"parentId\":102,\"categoryId\":20005,\"categoryName\":\"艺术\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":102,\"categoryId\":20006,\"categoryName\":\"音乐\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":102,\"categoryId\":20007,\"categoryName\":\"摄影\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":102,\"categoryId\":20008,\"categoryName\":\"书法\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":102,\"categoryId\":20009,\"categoryName\":\"绘画\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":102,\"categoryId\":-1,\"categoryName\":\"全分类\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":104,\"categoryName\":\"童书\",\"childCategoryList\":[{\"parentId\":104,\"categoryId\":20053,\"categoryName\":\"动漫/卡通\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20054,\"categoryName\":\"历史/国学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20055,\"categoryName\":\"学前教育\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20056,\"categoryName\":\"儿童文学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20057,\"categoryName\":\"幼儿启蒙\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20058,\"categoryName\":\"手工/游戏\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20059,\"categoryName\":\"才艺培养\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20060,\"categoryName\":\"智力开发\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20061,\"categoryName\":\"科普/百科\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20062,\"categoryName\":\"励志/成长\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20063,\"categoryName\":\"少儿英语\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20068,\"categoryName\":\"幼儿心理学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20069,\"categoryName\":\"儿童绘本\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20070,\"categoryName\":\"美术/书法\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20071,\"categoryName\":\"玩具书\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20072,\"categoryName\":\"少儿期刊\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20073,\"categoryName\":\"AR/VR\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":-1,\"categoryName\":\"全分类\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":105,\"categoryName\":\"经管励志\",\"childCategoryList\":[{\"parentId\":105,\"categoryId\":20011,\"categoryName\":\"励志与成功\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":105,\"categoryId\":20012,\"categoryName\":\"管理\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":105,\"categoryId\":20013,\"categoryName\":\"经济\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":105,\"categoryId\":20014,\"categoryName\":\"金融与投资\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":105,\"categoryId\":-1,\"categoryName\":\"全分类\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":106,\"categoryName\":\"生活\",\"childCategoryList\":[{\"parentId\":106,\"categoryId\":20015,\"categoryName\":\"家教\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20016,\"categoryName\":\"育儿\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20017,\"categoryName\":\"旅游/地图\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20018,\"categoryName\":\"烹饪/美食\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20019,\"categoryName\":\"时尚/美妆\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20020,\"categoryName\":\"家居\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20021,\"categoryName\":\"婚恋与两性\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20022,\"categoryName\":\"娱乐/休闲\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20023,\"categoryName\":\"养生/保健\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20041,\"categoryName\":\"运动/健身\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":-1,\"categoryName\":\"全分类\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":107,\"categoryName\":\"人文社科\",\"childCategoryList\":[{\"parentId\":107,\"categoryId\":20025,\"categoryName\":\"历史\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20026,\"categoryName\":\"心理学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20027,\"categoryName\":\"政治/军事\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20028,\"categoryName\":\"国学/古籍\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20029,\"categoryName\":\"哲学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20030,\"categoryName\":\"法律\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20031,\"categoryName\":\"文化\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20032,\"categoryName\":\"社会科学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20033,\"categoryName\":\"科普读物\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20052,\"categoryName\":\"宗教\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":-1,\"categoryName\":\"全分类\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":108,\"categoryName\":\"科学技术\",\"childCategoryList\":[{\"parentId\":108,\"categoryId\":20034,\"categoryName\":\"计算机与互联网\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":20035,\"categoryName\":\"建筑\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":20036,\"categoryName\":\"医学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":20037,\"categoryName\":\"工业技术\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":20038,\"categoryName\":\"电子与通信\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":20039,\"categoryName\":\"农业/林业\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":20040,\"categoryName\":\"科学与自然\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":-1,\"categoryName\":\"全分类\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":109,\"categoryName\":\"教材教辅\",\"childCategoryList\":[{\"parentId\":109,\"categoryId\":20042,\"categoryName\":\"中小学教辅\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":109,\"categoryId\":20043,\"categoryName\":\"大中专教材教辅\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":109,\"categoryId\":20044,\"categoryName\":\"考试\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":109,\"categoryId\":20045,\"categoryName\":\"外语学习\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":109,\"categoryId\":20046,\"categoryName\":\"字典词典/工具书\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":109,\"categoryId\":20074,\"categoryName\":\"教师用书/教育理论\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":109,\"categoryId\":-1,\"categoryName\":\"全分类\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null}],\"encrypt\":false}"}],"start":1678785684895,"stop":1678785684895}],"attachments":[],"parameters":[{"name":"type","value":"phone"},{"name":"version","value":"1.1.1"},{"name":"arg1","value":"Case{id='17', desc='【选题洞察】选择行业分类', params='null', apiID='13', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"data\":[{\"parentId\":0,\"categoryId\":-1,\"categoryName\":\"全分类\",\"childCategoryList\":[{\"parentId\":-1,\"categoryId\":-1,\"categoryName\":\"全分类\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":101,\"categoryName\":\"文学\",\"childCategoryList\":[{\"parentId\":101,\"categoryId\":20001,\"categoryName\":\"小说\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":101,\"categoryId\":20002,\"categoryName\":\"文学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":101,\"categoryId\":20003,\"categoryName\":\"青春文学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":101,\"categoryId\":20004,\"categoryName\":\"传记\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":101,\"categoryId\":20024,\"categoryName\":\"动漫\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":102,\"categoryName\":\"艺术\",\"childCategoryList\":[{\"parentId\":102,\"categoryId\":20005,\"categoryName\":\"艺术\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":102,\"categoryId\":20006,\"categoryName\":\"音乐\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":102,\"categoryId\":20007,\"categoryName\":\"摄影\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":102,\"categoryId\":20008,\"categoryName\":\"书法\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":102,\"categoryId\":20009,\"categoryName\":\"绘画\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":104,\"categoryName\":\"童书\",\"childCategoryList\":[{\"parentId\":104,\"categoryId\":20010,\"categoryName\":\"童书\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20053,\"categoryName\":\"动漫/卡通\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20054,\"categoryName\":\"历史/国学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20055,\"categoryName\":\"学前教育\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20056,\"categoryName\":\"儿童文学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20057,\"categoryName\":\"幼儿启蒙\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20058,\"categoryName\":\"手工/游戏\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20059,\"categoryName\":\"才艺培养\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20060,\"categoryName\":\"智力开发\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20061,\"categoryName\":\"科普/百科\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20062,\"categoryName\":\"励志/成长\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20063,\"categoryName\":\"少儿英语\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20064,\"categoryName\":\"0-2岁\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20065,\"categoryName\":\"3-6岁\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20066,\"categoryName\":\"7-10岁\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20067,\"categoryName\":\"11-14岁\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20068,\"categoryName\":\"幼儿心理学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20069,\"categoryName\":\"儿童绘本\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20070,\"categoryName\":\"美术/书法\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20071,\"categoryName\":\"玩具书\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20072,\"categoryName\":\"少儿期刊\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":104,\"categoryId\":20073,\"categoryName\":\"AR/VR\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":105,\"categoryName\":\"经管励志\",\"childCategoryList\":[{\"parentId\":105,\"categoryId\":20011,\"categoryName\":\"励志与成功\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":105,\"categoryId\":20012,\"categoryName\":\"管理\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":105,\"categoryId\":20013,\"categoryName\":\"经济\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":105,\"categoryId\":20014,\"categoryName\":\"金融与投资\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":106,\"categoryName\":\"生活\",\"childCategoryList\":[{\"parentId\":106,\"categoryId\":20015,\"categoryName\":\"家教\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20016,\"categoryName\":\"育儿\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20017,\"categoryName\":\"旅游/地图\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20018,\"categoryName\":\"烹饪/美食\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20019,\"categoryName\":\"时尚/美妆\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20020,\"categoryName\":\"家居\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20021,\"categoryName\":\"婚恋与两性\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20022,\"categoryName\":\"娱乐/休闲\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20023,\"categoryName\":\"养生/保健\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":106,\"categoryId\":20041,\"categoryName\":\"运动/健身\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":107,\"categoryName\":\"人文社科\",\"childCategoryList\":[{\"parentId\":107,\"categoryId\":20025,\"categoryName\":\"历史\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20026,\"categoryName\":\"心理学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20027,\"categoryName\":\"政治/军事\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20028,\"categoryName\":\"国学/古籍\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20029,\"categoryName\":\"哲学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20030,\"categoryName\":\"法律\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20031,\"categoryName\":\"文化\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20032,\"categoryName\":\"社会科学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20033,\"categoryName\":\"科普读物\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":107,\"categoryId\":20052,\"categoryName\":\"宗教\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":108,\"categoryName\":\"科学技术\",\"childCategoryList\":[{\"parentId\":108,\"categoryId\":20034,\"categoryName\":\"计算机与互联网\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":20035,\"categoryName\":\"建筑\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":20036,\"categoryName\":\"医学\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":20037,\"categoryName\":\"工业技术\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":20038,\"categoryName\":\"电子与通信\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":20039,\"categoryName\":\"农业/林业\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":108,\"categoryId\":20040,\"categoryName\":\"科学与自然\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null},{\"parentId\":0,\"categoryId\":109,\"categoryName\":\"教材教辅\",\"childCategoryList\":[{\"parentId\":109,\"categoryId\":20042,\"categoryName\":\"中小学教辅\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":109,\"categoryId\":20043,\"categoryName\":\"大中专教材教辅\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":109,\"categoryId\":20044,\"categoryName\":\"考试\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":109,\"categoryId\":20045,\"categoryName\":\"外语学习\",\"childCategoryList\":[],\"categoryCount\":null},{\"parentId\":109,\"categoryId\":20046,\"categoryName\":\"字典词典/工具书\",\"childCategoryList\":[],\"categoryCount\":null}],\"categoryCount\":null}],\"encrypt\":false}', checkSQL='null'}"},{"name":"arg0","value":"com.lemon.pojo.API@778a1250"}],"start":1678785684792,"stop":1678785684895}
\ No newline at end of file
{"uuid":"47734887-f348-4ed7-beee-ad4e72034f92","historyId":"fafc26da6a6d102727003020730ac0a0","fullName":"com.lemon.cases.RaysDataCase.testGetHomePageTopicChart","labels":[{"name":"package","value":"com.lemon.cases.RaysDataCase"},{"name":"testClass","value":"com.lemon.cases.RaysDataCase"},{"name":"testMethod","value":"testGetHomePageTopicChart"},{"name":"parentSuite","value":"理工数传"},{"name":"suite","value":"睿思数据"},{"name":"subSuite","value":"com.lemon.cases.RaysDataCase"},{"name":"host","value":"Ray-MacBook-Pro-2.local"},{"name":"thread","value":"15239@Ray-MacBook-Pro-2.local.main(1)"},{"name":"framework","value":"testng"},{"name":"language","value":"java"}],"links":[],"name":"获取我的主页1","status":"passed","statusDetails":{"known":false,"muted":false,"flaky":false},"stage":"finished","description":"获取我的主页1","steps":[{"name":"参数化替换","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"source","value":"null"}],"start":1678785686067,"stop":1678785686067},{"name":"参数化替换","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"source","value":"null"}],"start":1678785686067,"stop":1678785686067},{"name":"接口调用方法","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"api","value":"com.lemon.pojo.API@168ad26f"},{"name":"cas","value":"Case{id='12', desc='获取主页面信息2', params='null', apiID='8', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"data\":[{\"createDate\":\"2022-11-02\",\"salesPrice\":0,\"salesQuantity\":0,\"interactPopularity\":0},{\"createDate\":\"2022-11-03\",\"salesPrice\":0,\"salesQuantity\":0,\"interactPopularity\":0},{\"createDate\":\"2022-11-04\",\"salesPrice\":0,\"salesQuantity\":0,\"interactPopularity\":0},{\"createDate\":\"2022-11-05\",\"salesPrice\":0,\"salesQuantity\":0,\"interactPopularity\":0},{\"createDate\":\"2022-11-06\",\"salesPrice\":0,\"salesQuantity\":0,\"interactPopularity\":0},{\"createDate\":\"2022-11-07\",\"salesPrice\":0,\"salesQuantity\":0,\"interactPopularity\":0},{\"createDate\":\"2022-11-08\",\"salesPrice\":0,\"salesQuantity\":0,\"interactPopularity\":0}],\"encrypt\":false}', checkSQL='null'}"},{"name":"isAuthorization","value":"true"}],"start":1678785686067,"stop":1678785686260},{"name":"响应结果进行断言","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"cas","value":"Case{id='12', desc='获取主页面信息2', params='null', apiID='8', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"data\":[{\"createDate\":\"2022-11-02\",\"salesPrice\":0,\"salesQuantity\":0,\"interactPopularity\":0},{\"createDate\":\"2022-11-03\",\"salesPrice\":0,\"salesQuantity\":0,\"interactPopularity\":0},{\"createDate\":\"2022-11-04\",\"salesPrice\":0,\"salesQuantity\":0,\"interactPopularity\":0},{\"createDate\":\"2022-11-05\",\"salesPrice\":0,\"salesQuantity\":0,\"interactPopularity\":0},{\"createDate\":\"2022-11-06\",\"salesPrice\":0,\"salesQuantity\":0,\"interactPopularity\":0},{\"createDate\":\"2022-11-07\",\"salesPrice\":0,\"salesQuantity\":0,\"interactPopularity\":0},{\"createDate\":\"2022-11-08\",\"salesPrice\":0,\"salesQuantity\":0,\"interactPopularity\":0}],\"encrypt\":false}', checkSQL='null'}"},{"name":"body","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":[{\"createDate\":\"2022-08-01\",\"salesPrice\":404.0000,\"salesQuantity\":6,\"interactPopularity\":null},{\"createDate\":\"2022-09-01\",\"salesPrice\":830.6000,\"salesQuantity\":14,\"interactPopularity\":null},{\"createDate\":\"2022-10-01\",\"salesPrice\":20879.8000,\"salesQuantity\":271,\"interactPopularity\":null},{\"createDate\":\"2022-11-01\",\"salesPrice\":156757.8000,\"salesQuantity\":2012,\"interactPopularity\":null},{\"createDate\":\"2022-12-01\",\"salesPrice\":687.8000,\"salesQuantity\":11,\"interactPopularity\":null},{\"createDate\":\"2023-01-01\",\"salesPrice\":228.0000,\"salesQuantity\":5,\"interactPopularity\":null}],\"encrypt\":false}"}],"start":1678785686261,"stop":1678785686261},{"name":"添加回写内容","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"rowNum","value":"12"},{"name":"cellNum","value":"5"},{"name":"body","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":[{\"createDate\":\"2022-08-01\",\"salesPrice\":404.0000,\"salesQuantity\":6,\"interactPopularity\":null},{\"createDate\":\"2022-09-01\",\"salesPrice\":830.6000,\"salesQuantity\":14,\"interactPopularity\":null},{\"createDate\":\"2022-10-01\",\"salesPrice\":20879.8000,\"salesQuantity\":271,\"interactPopularity\":null},{\"createDate\":\"2022-11-01\",\"salesPrice\":156757.8000,\"salesQuantity\":2012,\"interactPopularity\":null},{\"createDate\":\"2022-12-01\",\"salesPrice\":687.8000,\"salesQuantity\":11,\"interactPopularity\":null},{\"createDate\":\"2023-01-01\",\"salesPrice\":228.0000,\"salesQuantity\":5,\"interactPopularity\":null}],\"encrypt\":false}"}],"start":1678785686261,"stop":1678785686261}],"attachments":[],"parameters":[{"name":"type","value":"phone"},{"name":"version","value":"1.1.1"},{"name":"arg1","value":"Case{id='12', desc='获取主页面信息2', params='null', apiID='8', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"data\":[{\"createDate\":\"2022-11-02\",\"salesPrice\":0,\"salesQuantity\":0,\"interactPopularity\":0},{\"createDate\":\"2022-11-03\",\"salesPrice\":0,\"salesQuantity\":0,\"interactPopularity\":0},{\"createDate\":\"2022-11-04\",\"salesPrice\":0,\"salesQuantity\":0,\"interactPopularity\":0},{\"createDate\":\"2022-11-05\",\"salesPrice\":0,\"salesQuantity\":0,\"interactPopularity\":0},{\"createDate\":\"2022-11-06\",\"salesPrice\":0,\"salesQuantity\":0,\"interactPopularity\":0},{\"createDate\":\"2022-11-07\",\"salesPrice\":0,\"salesQuantity\":0,\"interactPopularity\":0},{\"createDate\":\"2022-11-08\",\"salesPrice\":0,\"salesQuantity\":0,\"interactPopularity\":0}],\"encrypt\":false}', checkSQL='null'}"},{"name":"arg0","value":"com.lemon.pojo.API@168ad26f"}],"start":1678785686067,"stop":1678785686261}
\ No newline at end of file
{"uuid":"54ae0f4f-b863-4458-8556-cde575c5c370","historyId":"fa7eedd3ffc214f7ec365c8ab6238f62","fullName":"com.lemon.cases.RaysDataCase.testListHeatTopic4Report","labels":[{"name":"package","value":"com.lemon.cases.RaysDataCase"},{"name":"testClass","value":"com.lemon.cases.RaysDataCase"},{"name":"testMethod","value":"testListHeatTopic4Report"},{"name":"parentSuite","value":"理工数传"},{"name":"suite","value":"睿思数据"},{"name":"subSuite","value":"com.lemon.cases.RaysDataCase"},{"name":"host","value":"Ray-MacBook-Pro-2.local"},{"name":"thread","value":"15239@Ray-MacBook-Pro-2.local.main(1)"},{"name":"framework","value":"testng"},{"name":"language","value":"java"}],"links":[],"name":"【选题洞察】潜力增长选题","status":"passed","statusDetails":{"known":false,"muted":false,"flaky":false},"stage":"finished","description":"【选题洞察】潜力增长选题","steps":[{"name":"参数化替换","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"source","value":"{\"currentPage\":1,\"numPerPage\":10,\"oneCategoryId\":-1,\"twoCategoryId\":-1,\"periodType\":\"month\",\"timeValue\":[\"2022-01-01 \",\" 2022-01-31\"],\"uuid\":\"TV5kex5r\",\"startMonth\":\"2022-01-01 \",\"endMonth\":\" 2022-01-31\",\"potentialSortType\":1}"}],"start":1678785688373,"stop":1678785688373},{"name":"参数化替换","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"source","value":"null"}],"start":1678785688373,"stop":1678785688373},{"name":"接口调用方法","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"api","value":"com.lemon.pojo.API@4d464510"},{"name":"cas","value":"Case{id='23', desc='【选题洞察】潜力增长选题>竞品少综合热度高', params='{\"currentPage\":1,\"numPerPage\":10,\"oneCategoryId\":-1,\"twoCategoryId\":-1,\"periodType\":\"month\",\"timeValue\":[\"2022-01-01 \",\" 2022-01-31\"],\"uuid\":\"TV5kex5r\",\"startMonth\":\"2022-01-01 \",\"endMonth\":\" 2022-01-31\",\"potentialSortType\":1}', apiID='18', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"total\":38565,\"list\":[{\"topicId\":16467,\"topicName\":\"教程\",\"internetPopularity\":6314167.4000,\"comprehensivePopularity\":3157086.2000,\"avgSalesQuantity\":5.00000000,\"bookAmount\":1,\"commentScore\":10.00,\"bookDTOS\":[{\"topicId\":16467,\"bookId\":210341,\"bookName\":\"视唱教程\",\"bookUrl\":\"https://book.douban.com/subject/30912785/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/ed0bf968c7f79f1179b48015548bc2cd.jpg\"}]},{\"topicId\":6801,\"topicName\":\"后期\",\"internetPopularity\":2725851.8000,\"comprehensivePopularity\":1362927.4000,\"avgSalesQuantity\":3.00000000,\"bookAmount\":1,\"commentScore\":9.60,\"bookDTOS\":[{\"topicId\":6801,\"bookId\":547037,\"bookName\":\"影视后期制作技术\",\"bookUrl\":\"https://book.douban.com/subject/3517801/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/4c454cfc5224714e3130b03d655aba10.jpg\"}]},{\"topicId\":156,\"topicName\":\"天文\",\"internetPopularity\":2328386.2000,\"comprehensivePopularity\":1164195.6000,\"avgSalesQuantity\":5.00000000,\"bookAmount\":1,\"commentScore\":null,\"bookDTOS\":[{\"topicId\":156,\"bookId\":461046,\"bookName\":\"漫画十万个为什么\",\"bookUrl\":\"https://book.douban.com/subject/30715321/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/75f6dda677e694e6ada4c56711bfe047.jpg\"}]},{\"topicId\":562,\"topicName\":\"PS\",\"internetPopularity\":1739844.8000,\"comprehensivePopularity\":869922.9000,\"avgSalesQuantity\":1.00000000,\"bookAmount\":1,\"commentScore\":10.00,\"bookDTOS\":[{\"topicId\":562,\"bookId\":872017,\"bookName\":\"设计+制作+印刷+商业模板+PS+InDesign实例教程\",\"bookUrl\":\"https://book.douban.com/subject/35557580/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/a0c57c0adcc2496ba5b6b7c1281b1956.jpg\"}]},{\"topicId\":18402,\"topicName\":\"新人\",\"internetPopularity\":1230502.4000,\"comprehensivePopularity\":615469.2000,\"avgSalesQuantity\":436.00000000,\"bookAmount\":1,\"commentScore\":8.80,\"bookDTOS\":[{\"topicId\":18402,\"bookId\":887328,\"bookName\":\"进击的智人\",\"bookUrl\":\"https://book.douban.com/subject/30383694/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/034c92a15ecc0d5b31d3f75b0ee450ee.jpg\"}]},{\"topicId\":15174,\"topicName\":\"体验\",\"internetPopularity\":925434.8000,\"comprehensivePopularity\":462720.9000,\"avgSalesQuantity\":7.00000000,\"bookAmount\":1,\"commentScore\":null,\"bookDTOS\":[{\"topicId\":15174,\"bookId\":641839,\"bookName\":\"体验心理学\",\"bookUrl\":\"https://book.douban.com/subject/30134769/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/77787a5b2df31e0abe356ccc9e029596.jpg\"}]},{\"topicId\":3409,\"topicName\":\"插画\",\"internetPopularity\":842379.4000,\"comprehensivePopularity\":421190.2000,\"avgSalesQuantity\":1.00000000,\"bookAmount\":1,\"commentScore\":7.70,\"bookDTOS\":[{\"topicId\":3409,\"bookId\":477181,\"bookName\":\"漫画插画\",\"bookUrl\":\"https://book.douban.com/subject/6903553/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/4ce562b40bb64aaff1d651d450aa8aad.jpg\"}]},{\"topicId\":14745,\"topicName\":\"风景\",\"internetPopularity\":552433.4000,\"comprehensivePopularity\":276217.7000,\"avgSalesQuantity\":2.00000000,\"bookAmount\":1,\"commentScore\":null,\"bookDTOS\":[{\"topicId\":14745,\"bookId\":883867,\"bookName\":\"经典图案\",\"bookUrl\":\"https://book.douban.com/subject/10541848/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/4aaf55f44d66a8573e63defe037ebf50.jpg\"}]},{\"topicId\":17462,\"topicName\":\"韩语\",\"internetPopularity\":549097.2000,\"comprehensivePopularity\":274549.1000,\"avgSalesQuantity\":1.00000000,\"bookAmount\":1,\"commentScore\":9.80,\"bookDTOS\":[{\"topicId\":17462,\"bookId\":1023481,\"bookName\":\"韩语40音记忆卡片\",\"bookUrl\":\"https://book.douban.com/subject/30886959/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/ccfe7761c321035bbad6cc3158773886.jpg\"}]},{\"topicId\":9688,\"topicName\":\"中药\",\"internetPopularity\":480905.4000,\"comprehensivePopularity\":240463.2000,\"avgSalesQuantity\":21.00000000,\"bookAmount\":1,\"commentScore\":null,\"bookDTOS\":[{\"topicId\":9688,\"bookId\":424591,\"bookName\":\"中草药配对与禁忌\",\"bookUrl\":\"https://book.douban.com/subject/30173171/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/5e8460c9a03601b76db96f8cac8d24e9.jpg\"}]}],\"pageNum\":1,\"pageSize\":10,\"size\":10,\"startRow\":1,\"endRow\":10,\"pages\":3857,\"prePage\":0,\"nextPage\":2,\"isFirstPage\":true,\"isLastPage\":false,\"hasPreviousPage\":false,\"hasNextPage\":true,\"navigatePages\":8,\"navigatepageNums\":[1,2,3,4,5,6,7,8],\"navigateFirstPage\":1,\"navigateLastPage\":8},\"encrypt\":false}', checkSQL='null'}"},{"name":"isAuthorization","value":"true"}],"start":1678785688373,"stop":1678785688498},{"name":"响应结果进行断言","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"cas","value":"Case{id='23', desc='【选题洞察】潜力增长选题>竞品少综合热度高', params='{\"currentPage\":1,\"numPerPage\":10,\"oneCategoryId\":-1,\"twoCategoryId\":-1,\"periodType\":\"month\",\"timeValue\":[\"2022-01-01 \",\" 2022-01-31\"],\"uuid\":\"TV5kex5r\",\"startMonth\":\"2022-01-01 \",\"endMonth\":\" 2022-01-31\",\"potentialSortType\":1}', apiID='18', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"total\":38565,\"list\":[{\"topicId\":16467,\"topicName\":\"教程\",\"internetPopularity\":6314167.4000,\"comprehensivePopularity\":3157086.2000,\"avgSalesQuantity\":5.00000000,\"bookAmount\":1,\"commentScore\":10.00,\"bookDTOS\":[{\"topicId\":16467,\"bookId\":210341,\"bookName\":\"视唱教程\",\"bookUrl\":\"https://book.douban.com/subject/30912785/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/ed0bf968c7f79f1179b48015548bc2cd.jpg\"}]},{\"topicId\":6801,\"topicName\":\"后期\",\"internetPopularity\":2725851.8000,\"comprehensivePopularity\":1362927.4000,\"avgSalesQuantity\":3.00000000,\"bookAmount\":1,\"commentScore\":9.60,\"bookDTOS\":[{\"topicId\":6801,\"bookId\":547037,\"bookName\":\"影视后期制作技术\",\"bookUrl\":\"https://book.douban.com/subject/3517801/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/4c454cfc5224714e3130b03d655aba10.jpg\"}]},{\"topicId\":156,\"topicName\":\"天文\",\"internetPopularity\":2328386.2000,\"comprehensivePopularity\":1164195.6000,\"avgSalesQuantity\":5.00000000,\"bookAmount\":1,\"commentScore\":null,\"bookDTOS\":[{\"topicId\":156,\"bookId\":461046,\"bookName\":\"漫画十万个为什么\",\"bookUrl\":\"https://book.douban.com/subject/30715321/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/75f6dda677e694e6ada4c56711bfe047.jpg\"}]},{\"topicId\":562,\"topicName\":\"PS\",\"internetPopularity\":1739844.8000,\"comprehensivePopularity\":869922.9000,\"avgSalesQuantity\":1.00000000,\"bookAmount\":1,\"commentScore\":10.00,\"bookDTOS\":[{\"topicId\":562,\"bookId\":872017,\"bookName\":\"设计+制作+印刷+商业模板+PS+InDesign实例教程\",\"bookUrl\":\"https://book.douban.com/subject/35557580/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/a0c57c0adcc2496ba5b6b7c1281b1956.jpg\"}]},{\"topicId\":18402,\"topicName\":\"新人\",\"internetPopularity\":1230502.4000,\"comprehensivePopularity\":615469.2000,\"avgSalesQuantity\":436.00000000,\"bookAmount\":1,\"commentScore\":8.80,\"bookDTOS\":[{\"topicId\":18402,\"bookId\":887328,\"bookName\":\"进击的智人\",\"bookUrl\":\"https://book.douban.com/subject/30383694/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/034c92a15ecc0d5b31d3f75b0ee450ee.jpg\"}]},{\"topicId\":15174,\"topicName\":\"体验\",\"internetPopularity\":925434.8000,\"comprehensivePopularity\":462720.9000,\"avgSalesQuantity\":7.00000000,\"bookAmount\":1,\"commentScore\":null,\"bookDTOS\":[{\"topicId\":15174,\"bookId\":641839,\"bookName\":\"体验心理学\",\"bookUrl\":\"https://book.douban.com/subject/30134769/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/77787a5b2df31e0abe356ccc9e029596.jpg\"}]},{\"topicId\":3409,\"topicName\":\"插画\",\"internetPopularity\":842379.4000,\"comprehensivePopularity\":421190.2000,\"avgSalesQuantity\":1.00000000,\"bookAmount\":1,\"commentScore\":7.70,\"bookDTOS\":[{\"topicId\":3409,\"bookId\":477181,\"bookName\":\"漫画插画\",\"bookUrl\":\"https://book.douban.com/subject/6903553/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/4ce562b40bb64aaff1d651d450aa8aad.jpg\"}]},{\"topicId\":14745,\"topicName\":\"风景\",\"internetPopularity\":552433.4000,\"comprehensivePopularity\":276217.7000,\"avgSalesQuantity\":2.00000000,\"bookAmount\":1,\"commentScore\":null,\"bookDTOS\":[{\"topicId\":14745,\"bookId\":883867,\"bookName\":\"经典图案\",\"bookUrl\":\"https://book.douban.com/subject/10541848/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/4aaf55f44d66a8573e63defe037ebf50.jpg\"}]},{\"topicId\":17462,\"topicName\":\"韩语\",\"internetPopularity\":549097.2000,\"comprehensivePopularity\":274549.1000,\"avgSalesQuantity\":1.00000000,\"bookAmount\":1,\"commentScore\":9.80,\"bookDTOS\":[{\"topicId\":17462,\"bookId\":1023481,\"bookName\":\"韩语40音记忆卡片\",\"bookUrl\":\"https://book.douban.com/subject/30886959/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/ccfe7761c321035bbad6cc3158773886.jpg\"}]},{\"topicId\":9688,\"topicName\":\"中药\",\"internetPopularity\":480905.4000,\"comprehensivePopularity\":240463.2000,\"avgSalesQuantity\":21.00000000,\"bookAmount\":1,\"commentScore\":null,\"bookDTOS\":[{\"topicId\":9688,\"bookId\":424591,\"bookName\":\"中草药配对与禁忌\",\"bookUrl\":\"https://book.douban.com/subject/30173171/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/5e8460c9a03601b76db96f8cac8d24e9.jpg\"}]}],\"pageNum\":1,\"pageSize\":10,\"size\":10,\"startRow\":1,\"endRow\":10,\"pages\":3857,\"prePage\":0,\"nextPage\":2,\"isFirstPage\":true,\"isLastPage\":false,\"hasPreviousPage\":false,\"hasNextPage\":true,\"navigatePages\":8,\"navigatepageNums\":[1,2,3,4,5,6,7,8],\"navigateFirstPage\":1,\"navigateLastPage\":8},\"encrypt\":false}', checkSQL='null'}"},{"name":"body","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"total\":0,\"list\":[],\"pageNum\":1,\"pageSize\":10,\"size\":0,\"startRow\":0,\"endRow\":0,\"pages\":0,\"prePage\":0,\"nextPage\":0,\"isFirstPage\":true,\"isLastPage\":true,\"hasPreviousPage\":false,\"hasNextPage\":false,\"navigatePages\":8,\"navigatepageNums\":[],\"navigateFirstPage\":0,\"navigateLastPage\":0},\"encrypt\":false}"}],"start":1678785688498,"stop":1678785688498},{"name":"添加回写内容","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"rowNum","value":"23"},{"name":"cellNum","value":"5"},{"name":"body","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"total\":0,\"list\":[],\"pageNum\":1,\"pageSize\":10,\"size\":0,\"startRow\":0,\"endRow\":0,\"pages\":0,\"prePage\":0,\"nextPage\":0,\"isFirstPage\":true,\"isLastPage\":true,\"hasPreviousPage\":false,\"hasNextPage\":false,\"navigatePages\":8,\"navigatepageNums\":[],\"navigateFirstPage\":0,\"navigateLastPage\":0},\"encrypt\":false}"}],"start":1678785688498,"stop":1678785688498}],"attachments":[],"parameters":[{"name":"type","value":"phone"},{"name":"version","value":"1.1.1"},{"name":"arg1","value":"Case{id='23', desc='【选题洞察】潜力增长选题>竞品少综合热度高', params='{\"currentPage\":1,\"numPerPage\":10,\"oneCategoryId\":-1,\"twoCategoryId\":-1,\"periodType\":\"month\",\"timeValue\":[\"2022-01-01 \",\" 2022-01-31\"],\"uuid\":\"TV5kex5r\",\"startMonth\":\"2022-01-01 \",\"endMonth\":\" 2022-01-31\",\"potentialSortType\":1}', apiID='18', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"total\":38565,\"list\":[{\"topicId\":16467,\"topicName\":\"教程\",\"internetPopularity\":6314167.4000,\"comprehensivePopularity\":3157086.2000,\"avgSalesQuantity\":5.00000000,\"bookAmount\":1,\"commentScore\":10.00,\"bookDTOS\":[{\"topicId\":16467,\"bookId\":210341,\"bookName\":\"视唱教程\",\"bookUrl\":\"https://book.douban.com/subject/30912785/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/ed0bf968c7f79f1179b48015548bc2cd.jpg\"}]},{\"topicId\":6801,\"topicName\":\"后期\",\"internetPopularity\":2725851.8000,\"comprehensivePopularity\":1362927.4000,\"avgSalesQuantity\":3.00000000,\"bookAmount\":1,\"commentScore\":9.60,\"bookDTOS\":[{\"topicId\":6801,\"bookId\":547037,\"bookName\":\"影视后期制作技术\",\"bookUrl\":\"https://book.douban.com/subject/3517801/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/4c454cfc5224714e3130b03d655aba10.jpg\"}]},{\"topicId\":156,\"topicName\":\"天文\",\"internetPopularity\":2328386.2000,\"comprehensivePopularity\":1164195.6000,\"avgSalesQuantity\":5.00000000,\"bookAmount\":1,\"commentScore\":null,\"bookDTOS\":[{\"topicId\":156,\"bookId\":461046,\"bookName\":\"漫画十万个为什么\",\"bookUrl\":\"https://book.douban.com/subject/30715321/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/75f6dda677e694e6ada4c56711bfe047.jpg\"}]},{\"topicId\":562,\"topicName\":\"PS\",\"internetPopularity\":1739844.8000,\"comprehensivePopularity\":869922.9000,\"avgSalesQuantity\":1.00000000,\"bookAmount\":1,\"commentScore\":10.00,\"bookDTOS\":[{\"topicId\":562,\"bookId\":872017,\"bookName\":\"设计+制作+印刷+商业模板+PS+InDesign实例教程\",\"bookUrl\":\"https://book.douban.com/subject/35557580/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/a0c57c0adcc2496ba5b6b7c1281b1956.jpg\"}]},{\"topicId\":18402,\"topicName\":\"新人\",\"internetPopularity\":1230502.4000,\"comprehensivePopularity\":615469.2000,\"avgSalesQuantity\":436.00000000,\"bookAmount\":1,\"commentScore\":8.80,\"bookDTOS\":[{\"topicId\":18402,\"bookId\":887328,\"bookName\":\"进击的智人\",\"bookUrl\":\"https://book.douban.com/subject/30383694/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/034c92a15ecc0d5b31d3f75b0ee450ee.jpg\"}]},{\"topicId\":15174,\"topicName\":\"体验\",\"internetPopularity\":925434.8000,\"comprehensivePopularity\":462720.9000,\"avgSalesQuantity\":7.00000000,\"bookAmount\":1,\"commentScore\":null,\"bookDTOS\":[{\"topicId\":15174,\"bookId\":641839,\"bookName\":\"体验心理学\",\"bookUrl\":\"https://book.douban.com/subject/30134769/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/77787a5b2df31e0abe356ccc9e029596.jpg\"}]},{\"topicId\":3409,\"topicName\":\"插画\",\"internetPopularity\":842379.4000,\"comprehensivePopularity\":421190.2000,\"avgSalesQuantity\":1.00000000,\"bookAmount\":1,\"commentScore\":7.70,\"bookDTOS\":[{\"topicId\":3409,\"bookId\":477181,\"bookName\":\"漫画插画\",\"bookUrl\":\"https://book.douban.com/subject/6903553/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/4ce562b40bb64aaff1d651d450aa8aad.jpg\"}]},{\"topicId\":14745,\"topicName\":\"风景\",\"internetPopularity\":552433.4000,\"comprehensivePopularity\":276217.7000,\"avgSalesQuantity\":2.00000000,\"bookAmount\":1,\"commentScore\":null,\"bookDTOS\":[{\"topicId\":14745,\"bookId\":883867,\"bookName\":\"经典图案\",\"bookUrl\":\"https://book.douban.com/subject/10541848/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/4aaf55f44d66a8573e63defe037ebf50.jpg\"}]},{\"topicId\":17462,\"topicName\":\"韩语\",\"internetPopularity\":549097.2000,\"comprehensivePopularity\":274549.1000,\"avgSalesQuantity\":1.00000000,\"bookAmount\":1,\"commentScore\":9.80,\"bookDTOS\":[{\"topicId\":17462,\"bookId\":1023481,\"bookName\":\"韩语40音记忆卡片\",\"bookUrl\":\"https://book.douban.com/subject/30886959/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/ccfe7761c321035bbad6cc3158773886.jpg\"}]},{\"topicId\":9688,\"topicName\":\"中药\",\"internetPopularity\":480905.4000,\"comprehensivePopularity\":240463.2000,\"avgSalesQuantity\":21.00000000,\"bookAmount\":1,\"commentScore\":null,\"bookDTOS\":[{\"topicId\":9688,\"bookId\":424591,\"bookName\":\"中草药配对与禁忌\",\"bookUrl\":\"https://book.douban.com/subject/30173171/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/5e8460c9a03601b76db96f8cac8d24e9.jpg\"}]}],\"pageNum\":1,\"pageSize\":10,\"size\":10,\"startRow\":1,\"endRow\":10,\"pages\":3857,\"prePage\":0,\"nextPage\":2,\"isFirstPage\":true,\"isLastPage\":false,\"hasPreviousPage\":false,\"hasNextPage\":true,\"navigatePages\":8,\"navigatepageNums\":[1,2,3,4,5,6,7,8],\"navigateFirstPage\":1,\"navigateLastPage\":8},\"encrypt\":false}', checkSQL='null'}"},{"name":"arg0","value":"com.lemon.pojo.API@4d464510"}],"start":1678785688372,"stop":1678785688498}
\ No newline at end of file
{"uuid":"645fde05-1acb-4dcd-87da-edd1305866fa","historyId":"f4f9df3ec66f5305c5fda649ab2eda45","fullName":"com.lemon.cases.RaysDataCase.testGetLoginInfo","labels":[{"name":"package","value":"com.lemon.cases.RaysDataCase"},{"name":"testClass","value":"com.lemon.cases.RaysDataCase"},{"name":"testMethod","value":"testGetLoginInfo"},{"name":"parentSuite","value":"理工数传"},{"name":"suite","value":"睿思数据"},{"name":"subSuite","value":"com.lemon.cases.RaysDataCase"},{"name":"host","value":"Ray-MacBook-Pro-2.local"},{"name":"thread","value":"15239@Ray-MacBook-Pro-2.local.main(1)"},{"name":"framework","value":"testng"},{"name":"language","value":"java"}],"links":[],"name":"获取用户信息","status":"passed","statusDetails":{"known":false,"muted":false,"flaky":false},"stage":"finished","description":"获取用户信息","steps":[{"name":"参数化替换","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"source","value":"null"}],"start":1678785686654,"stop":1678785686654},{"name":"参数化替换","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"source","value":"null"}],"start":1678785686654,"stop":1678785686654},{"name":"接口调用方法","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"api","value":"com.lemon.pojo.API@b4732dc"},{"name":"cas","value":"Case{id='7', desc='获取用户登录信息', params='null', apiID='3', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"id\":14,\"parentId\":0,\"name\":\"夏斌\",\"headUrl\":\"https://rays7file.5rs.me/upload/jpg/5af176bf779860005e6db69e9340124e微信图片_20220216173202.jpg\",\"phone\":\"18696191160\",\"agencyId\":12,\"agencyType\":1,\"agencyTypeName\":\"出版社\",\"agencyName\":\"理工数传\",\"agencyLogo\":\"https://rays7file.5rs.me/upload/jpg/cdefc9b6733f52a4ac2c35e72fc37068微信图片_20200724154001.jpg\",\"publishId\":9,\"remember\":null,\"publishList\":[{\"publishId\":9,\"publishName\":\"长江出版社\",\"publishProfile\":null,\"publishtypeId\":8,\"publishtypeName\":\"[\\\"科技类\\\"]\",\"updateTime\":\"2022-09-02T12:36:26.000+00:00\",\"status\":1}],\"publishName\":\"长江出版社\",\"publishtypeId\":8,\"publishtypeName\":\"[\\\"科技类\\\"]\",\"isDefaultPwd\":false,\"menuList\":[{\"id\":2,\"parentId\":0,\"menuCode\":\"AUTHOR_SEARCH\",\"menuName\":\"作者查询\",\"sourceType\":1},{\"id\":1,\"parentId\":0,\"menuCode\":\"BOOK_SEARCH\",\"menuName\":\"图书查询\",\"sourceType\":1},{\"id\":5,\"parentId\":0,\"menuCode\":\"COMPETITION_ANALYSIS\",\"menuName\":\"竞争分析\",\"sourceType\":1},{\"id\":14,\"parentId\":5,\"menuCode\":\"COMPETITION_BOOK\",\"menuName\":\"竞品图书\",\"sourceType\":1},{\"id\":13,\"parentId\":5,\"menuCode\":\"COMPETITION_CUSTOM\",\"menuName\":\"自定义对比\",\"sourceType\":1},{\"id\":12,\"parentId\":5,\"menuCode\":\"COMPETITION_SIMILAR_PUBLISH\",\"menuName\":\"同类社对比\",\"sourceType\":1},{\"id\":7,\"parentId\":0,\"menuCode\":\"MARKET_ANALYSIS\",\"menuName\":\"市场风向\",\"sourceType\":1},{\"id\":19,\"parentId\":7,\"menuCode\":\"MARKET_NEW_TREND\",\"menuName\":\"新品趋势\",\"sourceType\":1},{\"id\":17,\"parentId\":7,\"menuCode\":\"MARKET_SALE_TREND\",\"menuName\":\"销售趋势\",\"sourceType\":1},{\"id\":18,\"parentId\":7,\"menuCode\":\"MARKET_TOP_LIST\",\"menuName\":\"在售榜单\",\"sourceType\":1},{\"id\":4,\"parentId\":0,\"menuCode\":\"OUR_ANALYSIS\",\"menuName\":\"本社分析\",\"sourceType\":1},{\"id\":10,\"parentId\":4,\"menuCode\":\"OUR_BOOK_LIST\",\"menuName\":\"本社图书\",\"sourceType\":1},{\"id\":8,\"parentId\":4,\"menuCode\":\"OUR_DATA_OVERVIEW\",\"menuName\":\"本社数据概览\",\"sourceType\":1},{\"id\":11,\"parentId\":4,\"menuCode\":\"OUR_READER_EVALUATION\",\"menuName\":\"读者口碑\",\"sourceType\":1},{\"id\":9,\"parentId\":4,\"menuCode\":\"OUR_SALE_TREND\",\"menuName\":\"本社销售趋势\",\"sourceType\":1},{\"id\":21,\"parentId\":7,\"menuCode\":\"PUBLICATION_SCHEDULE\",\"menuName\":\"行业出版时间表\",\"sourceType\":1},{\"id\":6,\"parentId\":0,\"menuCode\":\"READER_ANALYSIS\",\"menuName\":\"读者洞察\",\"sourceType\":1},{\"id\":15,\"parentId\":6,\"menuCode\":\"READER_PORTRAIT\",\"menuName\":\"读者画像\",\"sourceType\":1},{\"id\":16,\"parentId\":6,\"menuCode\":\"READER_PREFERENCE\",\"menuName\":\"内容偏好\",\"sourceType\":1},{\"id\":20,\"parentId\":7,\"menuCode\":\"WEEKLY_NEW_BOOK\",\"menuName\":\"每周新书快报\",\"sourceType\":1}],\"ip\":null,\"hasRectifyBookInfoPermission\":0},\"encrypt\":false}', checkSQL='null'}"},{"name":"isAuthorization","value":"true"}],"start":1678785686654,"stop":1678785686767},{"name":"响应结果进行断言","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"cas","value":"Case{id='7', desc='获取用户登录信息', params='null', apiID='3', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"id\":14,\"parentId\":0,\"name\":\"夏斌\",\"headUrl\":\"https://rays7file.5rs.me/upload/jpg/5af176bf779860005e6db69e9340124e微信图片_20220216173202.jpg\",\"phone\":\"18696191160\",\"agencyId\":12,\"agencyType\":1,\"agencyTypeName\":\"出版社\",\"agencyName\":\"理工数传\",\"agencyLogo\":\"https://rays7file.5rs.me/upload/jpg/cdefc9b6733f52a4ac2c35e72fc37068微信图片_20200724154001.jpg\",\"publishId\":9,\"remember\":null,\"publishList\":[{\"publishId\":9,\"publishName\":\"长江出版社\",\"publishProfile\":null,\"publishtypeId\":8,\"publishtypeName\":\"[\\\"科技类\\\"]\",\"updateTime\":\"2022-09-02T12:36:26.000+00:00\",\"status\":1}],\"publishName\":\"长江出版社\",\"publishtypeId\":8,\"publishtypeName\":\"[\\\"科技类\\\"]\",\"isDefaultPwd\":false,\"menuList\":[{\"id\":2,\"parentId\":0,\"menuCode\":\"AUTHOR_SEARCH\",\"menuName\":\"作者查询\",\"sourceType\":1},{\"id\":1,\"parentId\":0,\"menuCode\":\"BOOK_SEARCH\",\"menuName\":\"图书查询\",\"sourceType\":1},{\"id\":5,\"parentId\":0,\"menuCode\":\"COMPETITION_ANALYSIS\",\"menuName\":\"竞争分析\",\"sourceType\":1},{\"id\":14,\"parentId\":5,\"menuCode\":\"COMPETITION_BOOK\",\"menuName\":\"竞品图书\",\"sourceType\":1},{\"id\":13,\"parentId\":5,\"menuCode\":\"COMPETITION_CUSTOM\",\"menuName\":\"自定义对比\",\"sourceType\":1},{\"id\":12,\"parentId\":5,\"menuCode\":\"COMPETITION_SIMILAR_PUBLISH\",\"menuName\":\"同类社对比\",\"sourceType\":1},{\"id\":7,\"parentId\":0,\"menuCode\":\"MARKET_ANALYSIS\",\"menuName\":\"市场风向\",\"sourceType\":1},{\"id\":19,\"parentId\":7,\"menuCode\":\"MARKET_NEW_TREND\",\"menuName\":\"新品趋势\",\"sourceType\":1},{\"id\":17,\"parentId\":7,\"menuCode\":\"MARKET_SALE_TREND\",\"menuName\":\"销售趋势\",\"sourceType\":1},{\"id\":18,\"parentId\":7,\"menuCode\":\"MARKET_TOP_LIST\",\"menuName\":\"在售榜单\",\"sourceType\":1},{\"id\":4,\"parentId\":0,\"menuCode\":\"OUR_ANALYSIS\",\"menuName\":\"本社分析\",\"sourceType\":1},{\"id\":10,\"parentId\":4,\"menuCode\":\"OUR_BOOK_LIST\",\"menuName\":\"本社图书\",\"sourceType\":1},{\"id\":8,\"parentId\":4,\"menuCode\":\"OUR_DATA_OVERVIEW\",\"menuName\":\"本社数据概览\",\"sourceType\":1},{\"id\":11,\"parentId\":4,\"menuCode\":\"OUR_READER_EVALUATION\",\"menuName\":\"读者口碑\",\"sourceType\":1},{\"id\":9,\"parentId\":4,\"menuCode\":\"OUR_SALE_TREND\",\"menuName\":\"本社销售趋势\",\"sourceType\":1},{\"id\":21,\"parentId\":7,\"menuCode\":\"PUBLICATION_SCHEDULE\",\"menuName\":\"行业出版时间表\",\"sourceType\":1},{\"id\":6,\"parentId\":0,\"menuCode\":\"READER_ANALYSIS\",\"menuName\":\"读者洞察\",\"sourceType\":1},{\"id\":15,\"parentId\":6,\"menuCode\":\"READER_PORTRAIT\",\"menuName\":\"读者画像\",\"sourceType\":1},{\"id\":16,\"parentId\":6,\"menuCode\":\"READER_PREFERENCE\",\"menuName\":\"内容偏好\",\"sourceType\":1},{\"id\":20,\"parentId\":7,\"menuCode\":\"WEEKLY_NEW_BOOK\",\"menuName\":\"每周新书快报\",\"sourceType\":1}],\"ip\":null,\"hasRectifyBookInfoPermission\":0},\"encrypt\":false}', checkSQL='null'}"},{"name":"body","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"id\":14,\"parentId\":0,\"name\":\"夏斌\",\"headUrl\":\"https://rays7file.5rs.me/upload/jpg/5af176bf779860005e6db69e9340124e微信图片_20220216173202.jpg\",\"phone\":\"18696191160\",\"agencyId\":12,\"agencyType\":1,\"agencyTypeName\":\"出版社\",\"agencyName\":\"理工数传\",\"agencyLogo\":\"https://rays7file.5rs.me/upload/jpg/cdefc9b6733f52a4ac2c35e72fc37068微信图片_20200724154001.jpg\",\"publishId\":9,\"remember\":null,\"publishList\":[{\"publishId\":9,\"publishName\":\"长江出版社\",\"publishProfile\":null,\"publishtypeId\":8,\"publishtypeName\":\"[\\\"科技类\\\"]\",\"updateTime\":\"2022-09-02T12:36:26.000+00:00\",\"status\":1}],\"publishName\":\"长江出版社\",\"publishtypeId\":8,\"publishtypeName\":\"[\\\"科技类\\\"]\",\"isDefaultPwd\":false,\"menuList\":[{\"id\":2,\"parentId\":0,\"menuCode\":\"AUTHOR_SEARCH\",\"menuName\":\"作者查询\",\"sourceType\":1},{\"id\":1,\"parentId\":0,\"menuCode\":\"BOOK_SEARCH\",\"menuName\":\"图书查询\",\"sourceType\":1},{\"id\":5,\"parentId\":0,\"menuCode\":\"COMPETITION_ANALYSIS\",\"menuName\":\"竞争分析\",\"sourceType\":1},{\"id\":14,\"parentId\":5,\"menuCode\":\"COMPETITION_BOOK\",\"menuName\":\"竞品图书\",\"sourceType\":1},{\"id\":13,\"parentId\":5,\"menuCode\":\"COMPETITION_CUSTOM\",\"menuName\":\"自定义对比\",\"sourceType\":1},{\"id\":12,\"parentId\":5,\"menuCode\":\"COMPETITION_SIMILAR_PUBLISH\",\"menuName\":\"同类社对比\",\"sourceType\":1},{\"id\":7,\"parentId\":0,\"menuCode\":\"MARKET_ANALYSIS\",\"menuName\":\"市场风向\",\"sourceType\":1},{\"id\":19,\"parentId\":7,\"menuCode\":\"MARKET_NEW_TREND\",\"menuName\":\"新品趋势\",\"sourceType\":1},{\"id\":17,\"parentId\":7,\"menuCode\":\"MARKET_SALE_TREND\",\"menuName\":\"销售趋势\",\"sourceType\":1},{\"id\":18,\"parentId\":7,\"menuCode\":\"MARKET_TOP_LIST\",\"menuName\":\"在售榜单\",\"sourceType\":1},{\"id\":4,\"parentId\":0,\"menuCode\":\"OUR_ANALYSIS\",\"menuName\":\"本社分析\",\"sourceType\":1},{\"id\":10,\"parentId\":4,\"menuCode\":\"OUR_BOOK_LIST\",\"menuName\":\"本社图书\",\"sourceType\":1},{\"id\":8,\"parentId\":4,\"menuCode\":\"OUR_DATA_OVERVIEW\",\"menuName\":\"本社数据概览\",\"sourceType\":1},{\"id\":11,\"parentId\":4,\"menuCode\":\"OUR_READER_EVALUATION\",\"menuName\":\"读者口碑\",\"sourceType\":1},{\"id\":9,\"parentId\":4,\"menuCode\":\"OUR_SALE_TREND\",\"menuName\":\"本社销售趋势\",\"sourceType\":1},{\"id\":21,\"parentId\":7,\"menuCode\":\"PUBLICATION_SCHEDULE\",\"menuName\":\"行业出版时间表\",\"sourceType\":1},{\"id\":6,\"parentId\":0,\"menuCode\":\"READER_ANALYSIS\",\"menuName\":\"读者洞察\",\"sourceType\":1},{\"id\":15,\"parentId\":6,\"menuCode\":\"READER_PORTRAIT\",\"menuName\":\"读者画像\",\"sourceType\":1},{\"id\":16,\"parentId\":6,\"menuCode\":\"READER_PREFERENCE\",\"menuName\":\"内容偏好\",\"sourceType\":1},{\"id\":20,\"parentId\":7,\"menuCode\":\"WEEKLY_NEW_BOOK\",\"menuName\":\"每周新书快报\",\"sourceType\":1}],\"ip\":null,\"hasRectifyBookInfoPermission\":0},\"encrypt\":false}"}],"start":1678785686767,"stop":1678785686768},{"name":"添加回写内容","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"rowNum","value":"7"},{"name":"cellNum","value":"5"},{"name":"body","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"id\":14,\"parentId\":0,\"name\":\"夏斌\",\"headUrl\":\"https://rays7file.5rs.me/upload/jpg/5af176bf779860005e6db69e9340124e微信图片_20220216173202.jpg\",\"phone\":\"18696191160\",\"agencyId\":12,\"agencyType\":1,\"agencyTypeName\":\"出版社\",\"agencyName\":\"理工数传\",\"agencyLogo\":\"https://rays7file.5rs.me/upload/jpg/cdefc9b6733f52a4ac2c35e72fc37068微信图片_20200724154001.jpg\",\"publishId\":9,\"remember\":null,\"publishList\":[{\"publishId\":9,\"publishName\":\"长江出版社\",\"publishProfile\":null,\"publishtypeId\":8,\"publishtypeName\":\"[\\\"科技类\\\"]\",\"updateTime\":\"2022-09-02T12:36:26.000+00:00\",\"status\":1}],\"publishName\":\"长江出版社\",\"publishtypeId\":8,\"publishtypeName\":\"[\\\"科技类\\\"]\",\"isDefaultPwd\":false,\"menuList\":[{\"id\":2,\"parentId\":0,\"menuCode\":\"AUTHOR_SEARCH\",\"menuName\":\"作者查询\",\"sourceType\":1},{\"id\":1,\"parentId\":0,\"menuCode\":\"BOOK_SEARCH\",\"menuName\":\"图书查询\",\"sourceType\":1},{\"id\":5,\"parentId\":0,\"menuCode\":\"COMPETITION_ANALYSIS\",\"menuName\":\"竞争分析\",\"sourceType\":1},{\"id\":14,\"parentId\":5,\"menuCode\":\"COMPETITION_BOOK\",\"menuName\":\"竞品图书\",\"sourceType\":1},{\"id\":13,\"parentId\":5,\"menuCode\":\"COMPETITION_CUSTOM\",\"menuName\":\"自定义对比\",\"sourceType\":1},{\"id\":12,\"parentId\":5,\"menuCode\":\"COMPETITION_SIMILAR_PUBLISH\",\"menuName\":\"同类社对比\",\"sourceType\":1},{\"id\":7,\"parentId\":0,\"menuCode\":\"MARKET_ANALYSIS\",\"menuName\":\"市场风向\",\"sourceType\":1},{\"id\":19,\"parentId\":7,\"menuCode\":\"MARKET_NEW_TREND\",\"menuName\":\"新品趋势\",\"sourceType\":1},{\"id\":17,\"parentId\":7,\"menuCode\":\"MARKET_SALE_TREND\",\"menuName\":\"销售趋势\",\"sourceType\":1},{\"id\":18,\"parentId\":7,\"menuCode\":\"MARKET_TOP_LIST\",\"menuName\":\"在售榜单\",\"sourceType\":1},{\"id\":4,\"parentId\":0,\"menuCode\":\"OUR_ANALYSIS\",\"menuName\":\"本社分析\",\"sourceType\":1},{\"id\":10,\"parentId\":4,\"menuCode\":\"OUR_BOOK_LIST\",\"menuName\":\"本社图书\",\"sourceType\":1},{\"id\":8,\"parentId\":4,\"menuCode\":\"OUR_DATA_OVERVIEW\",\"menuName\":\"本社数据概览\",\"sourceType\":1},{\"id\":11,\"parentId\":4,\"menuCode\":\"OUR_READER_EVALUATION\",\"menuName\":\"读者口碑\",\"sourceType\":1},{\"id\":9,\"parentId\":4,\"menuCode\":\"OUR_SALE_TREND\",\"menuName\":\"本社销售趋势\",\"sourceType\":1},{\"id\":21,\"parentId\":7,\"menuCode\":\"PUBLICATION_SCHEDULE\",\"menuName\":\"行业出版时间表\",\"sourceType\":1},{\"id\":6,\"parentId\":0,\"menuCode\":\"READER_ANALYSIS\",\"menuName\":\"读者洞察\",\"sourceType\":1},{\"id\":15,\"parentId\":6,\"menuCode\":\"READER_PORTRAIT\",\"menuName\":\"读者画像\",\"sourceType\":1},{\"id\":16,\"parentId\":6,\"menuCode\":\"READER_PREFERENCE\",\"menuName\":\"内容偏好\",\"sourceType\":1},{\"id\":20,\"parentId\":7,\"menuCode\":\"WEEKLY_NEW_BOOK\",\"menuName\":\"每周新书快报\",\"sourceType\":1}],\"ip\":null,\"hasRectifyBookInfoPermission\":0},\"encrypt\":false}"}],"start":1678785686768,"stop":1678785686768},{"name":"添加回写内容","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"rowNum","value":"7"},{"name":"cellNum","value":"6"},{"name":"body","value":"Pass"}],"start":1678785686768,"stop":1678785686768}],"attachments":[],"parameters":[{"name":"type","value":"phone"},{"name":"version","value":"1.1.1"},{"name":"arg1","value":"Case{id='7', desc='获取用户登录信息', params='null', apiID='3', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"id\":14,\"parentId\":0,\"name\":\"夏斌\",\"headUrl\":\"https://rays7file.5rs.me/upload/jpg/5af176bf779860005e6db69e9340124e微信图片_20220216173202.jpg\",\"phone\":\"18696191160\",\"agencyId\":12,\"agencyType\":1,\"agencyTypeName\":\"出版社\",\"agencyName\":\"理工数传\",\"agencyLogo\":\"https://rays7file.5rs.me/upload/jpg/cdefc9b6733f52a4ac2c35e72fc37068微信图片_20200724154001.jpg\",\"publishId\":9,\"remember\":null,\"publishList\":[{\"publishId\":9,\"publishName\":\"长江出版社\",\"publishProfile\":null,\"publishtypeId\":8,\"publishtypeName\":\"[\\\"科技类\\\"]\",\"updateTime\":\"2022-09-02T12:36:26.000+00:00\",\"status\":1}],\"publishName\":\"长江出版社\",\"publishtypeId\":8,\"publishtypeName\":\"[\\\"科技类\\\"]\",\"isDefaultPwd\":false,\"menuList\":[{\"id\":2,\"parentId\":0,\"menuCode\":\"AUTHOR_SEARCH\",\"menuName\":\"作者查询\",\"sourceType\":1},{\"id\":1,\"parentId\":0,\"menuCode\":\"BOOK_SEARCH\",\"menuName\":\"图书查询\",\"sourceType\":1},{\"id\":5,\"parentId\":0,\"menuCode\":\"COMPETITION_ANALYSIS\",\"menuName\":\"竞争分析\",\"sourceType\":1},{\"id\":14,\"parentId\":5,\"menuCode\":\"COMPETITION_BOOK\",\"menuName\":\"竞品图书\",\"sourceType\":1},{\"id\":13,\"parentId\":5,\"menuCode\":\"COMPETITION_CUSTOM\",\"menuName\":\"自定义对比\",\"sourceType\":1},{\"id\":12,\"parentId\":5,\"menuCode\":\"COMPETITION_SIMILAR_PUBLISH\",\"menuName\":\"同类社对比\",\"sourceType\":1},{\"id\":7,\"parentId\":0,\"menuCode\":\"MARKET_ANALYSIS\",\"menuName\":\"市场风向\",\"sourceType\":1},{\"id\":19,\"parentId\":7,\"menuCode\":\"MARKET_NEW_TREND\",\"menuName\":\"新品趋势\",\"sourceType\":1},{\"id\":17,\"parentId\":7,\"menuCode\":\"MARKET_SALE_TREND\",\"menuName\":\"销售趋势\",\"sourceType\":1},{\"id\":18,\"parentId\":7,\"menuCode\":\"MARKET_TOP_LIST\",\"menuName\":\"在售榜单\",\"sourceType\":1},{\"id\":4,\"parentId\":0,\"menuCode\":\"OUR_ANALYSIS\",\"menuName\":\"本社分析\",\"sourceType\":1},{\"id\":10,\"parentId\":4,\"menuCode\":\"OUR_BOOK_LIST\",\"menuName\":\"本社图书\",\"sourceType\":1},{\"id\":8,\"parentId\":4,\"menuCode\":\"OUR_DATA_OVERVIEW\",\"menuName\":\"本社数据概览\",\"sourceType\":1},{\"id\":11,\"parentId\":4,\"menuCode\":\"OUR_READER_EVALUATION\",\"menuName\":\"读者口碑\",\"sourceType\":1},{\"id\":9,\"parentId\":4,\"menuCode\":\"OUR_SALE_TREND\",\"menuName\":\"本社销售趋势\",\"sourceType\":1},{\"id\":21,\"parentId\":7,\"menuCode\":\"PUBLICATION_SCHEDULE\",\"menuName\":\"行业出版时间表\",\"sourceType\":1},{\"id\":6,\"parentId\":0,\"menuCode\":\"READER_ANALYSIS\",\"menuName\":\"读者洞察\",\"sourceType\":1},{\"id\":15,\"parentId\":6,\"menuCode\":\"READER_PORTRAIT\",\"menuName\":\"读者画像\",\"sourceType\":1},{\"id\":16,\"parentId\":6,\"menuCode\":\"READER_PREFERENCE\",\"menuName\":\"内容偏好\",\"sourceType\":1},{\"id\":20,\"parentId\":7,\"menuCode\":\"WEEKLY_NEW_BOOK\",\"menuName\":\"每周新书快报\",\"sourceType\":1}],\"ip\":null,\"hasRectifyBookInfoPermission\":0},\"encrypt\":false}', checkSQL='null'}"},{"name":"arg0","value":"com.lemon.pojo.API@b4732dc"}],"start":1678785686654,"stop":1678785686769}
\ No newline at end of file
{"uuid":"6481fd8f-707b-4ba3-8077-2568abdf17ff","historyId":"19dd388fcfe2614391b5dc3dfcf59fe5","fullName":"com.lemon.cases.RaysDataCase.testAAAAALogin","labels":[{"name":"package","value":"com.lemon.cases.RaysDataCase"},{"name":"testClass","value":"com.lemon.cases.RaysDataCase"},{"name":"testMethod","value":"testAAAAALogin"},{"name":"parentSuite","value":"理工数传"},{"name":"suite","value":"睿思数据"},{"name":"subSuite","value":"com.lemon.cases.RaysDataCase"},{"name":"host","value":"Ray-MacBook-Pro-2.local"},{"name":"thread","value":"15239@Ray-MacBook-Pro-2.local.main(1)"},{"name":"framework","value":"testng"},{"name":"language","value":"java"}],"links":[],"name":"登录睿思数据","status":"passed","statusDetails":{"known":false,"muted":false,"flaky":false},"stage":"finished","description":"登录睿思数据","steps":[{"name":"参数化替换","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"source","value":"{\"loginAccount\":\"18696191160\",\"loginPwd\":\"b433f7ac20ae895cc169906858d09a0c\",\"remember\":null}"}],"start":1678785684559,"stop":1678785684559},{"name":"参数化替换","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"source","value":"null"}],"start":1678785684560,"stop":1678785684560},{"name":"接口调用方法","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"api","value":"com.lemon.pojo.API@13803a94"},{"name":"cas","value":"Case{id='6', desc='登录:是否记住密码为空', params='{\"loginAccount\":\"18696191160\",\"loginPwd\":\"b433f7ac20ae895cc169906858d09a0c\",\"remember\":null}', apiID='2', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"data\":\"f03d36538788418eb5ad29ce0554d68a\",\"encrypt\":false}', checkSQL='null'}"},{"name":"isAuthorization","value":"false"}],"start":1678785684560,"stop":1678785684785},{"name":"响应结果进行断言","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"cas","value":"Case{id='6', desc='登录:是否记住密码为空', params='{\"loginAccount\":\"18696191160\",\"loginPwd\":\"b433f7ac20ae895cc169906858d09a0c\",\"remember\":null}', apiID='2', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"data\":\"f03d36538788418eb5ad29ce0554d68a\",\"encrypt\":false}', checkSQL='null'}"},{"name":"body","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":\"c806a2e6d818452b8c2a988d5cf56b93\",\"encrypt\":false}"}],"start":1678785684786,"stop":1678785684786},{"name":"添加回写内容","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"rowNum","value":"6"},{"name":"cellNum","value":"5"},{"name":"body","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":\"c806a2e6d818452b8c2a988d5cf56b93\",\"encrypt\":false}"}],"start":1678785684786,"stop":1678785684786}],"attachments":[],"parameters":[{"name":"type","value":"phone"},{"name":"version","value":"1.1.1"},{"name":"arg1","value":"Case{id='6', desc='登录:是否记住密码为空', params='{\"loginAccount\":\"18696191160\",\"loginPwd\":\"b433f7ac20ae895cc169906858d09a0c\",\"remember\":null}', apiID='2', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"data\":\"f03d36538788418eb5ad29ce0554d68a\",\"encrypt\":false}', checkSQL='null'}"},{"name":"arg0","value":"com.lemon.pojo.API@13803a94"}],"start":1678785684559,"stop":1678785684786}
\ No newline at end of file
{"uuid":"68b5a65a-73e7-4b98-b939-0a8775c42c5e","historyId":"dc411f8d1a24b8ba6a5a054d744f744a","fullName":"com.lemon.cases.PayCase.testPay","labels":[{"name":"package","value":"com.lemon.cases.PayCase"},{"name":"testClass","value":"com.lemon.cases.PayCase"},{"name":"testMethod","value":"testPay"},{"name":"parentSuite","value":"理工数传"},{"name":"suite","value":"RAYS支付"},{"name":"subSuite","value":"com.lemon.cases.PayCase"},{"name":"host","value":"Ray-MacBook-Pro-2.local"},{"name":"thread","value":"15239@Ray-MacBook-Pro-2.local.main(1)"},{"name":"framework","value":"testng"},{"name":"language","value":"java"}],"links":[],"name":"testPay","status":"passed","statusDetails":{"known":false,"muted":false,"flaky":false},"stage":"finished","description":"创建支付订单","steps":[{"name":"响应结果断言","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"expectValue","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"officialAccountsId\":65842,\"payAccounts\":65967,\"officialAccountsName\":\"小蓝书高中生服务平台\",\"domain\":\"weixin65842.rayshbjy.com\",\"payDomain\":\"wechat65842.rayshbjy.com\",\"manageDomain\":\"wechat65842.rayshbjy.com\",\"icon\":\"https://oss.5rs.me/oss/uploadfe/jpg/3c1aa1fa65912a1a2673bc6ca05039d2.jpg\",\"description\":\"小蓝书携手一线教研专家,为全国高中生提供一站式服务:教育资讯、新高考选科工具,优质图书、课程推荐,专家、学霸交流等。\",\"iosAlipayOpen\":0,\"payMchId\":\"1521882781\",\"currentPagePay\":0,\"phoneAuthOpen\":0,\"payMethod\":1}}"},{"name":"body","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"officialAccountsId\":65842,\"payAccounts\":65967,\"officialAccountsName\":\"小蓝书高中生服务平台\",\"domain\":\"weixin65842.rayshbjy.com\",\"payDomain\":\"wechat65842.rayshbjy.com\",\"manageDomain\":\"wechat65842.rayshbjy.com\",\"icon\":\"https://oss.5rs.me/oss/uploadfe/jpg/3c1aa1fa65912a1a2673bc6ca05039d2.jpg\",\"description\":\"小蓝书携手一线教研专家,为全国高中生提供一站式服务:教育资讯、新高考选科工具,优质图书、课程推荐,专家、学霸交流等。\",\"iosAlipayOpen\":0,\"payMchId\":\"1521882781\",\"currentPagePay\":0,\"phoneAuthOpen\":0,\"payMethod\":1}}"}],"start":1678785690113,"stop":1678785690114}],"attachments":[],"parameters":[{"name":"arg3","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"officialAccountsId\":65842,\"payAccounts\":65967,\"officialAccountsName\":\"小蓝书高中生服务平台\",\"domain\":\"weixin65842.rayshbjy.com\",\"payDomain\":\"wechat65842.rayshbjy.com\",\"manageDomain\":\"wechat65842.rayshbjy.com\",\"icon\":\"https://oss.5rs.me/oss/uploadfe/jpg/3c1aa1fa65912a1a2673bc6ca05039d2.jpg\",\"description\":\"小蓝书携手一线教研专家,为全国高中生提供一站式服务:教育资讯、新高考选科工具,优质图书、课程推荐,专家、学霸交流等。\",\"iosAlipayOpen\":0,\"payMchId\":\"1521882781\",\"currentPagePay\":0,\"phoneAuthOpen\":0,\"payMethod\":1}}"},{"name":"arg2","value":"https://weixin65842.rayshbjy.com/channelcenter/v1.0/accountSetting/getOpreateManageInfo?officialAccountsId=65842"},{"name":"type","value":"phone"},{"name":"version","value":"1.1.1"},{"name":"arg1","value":"小蓝书跳小蓝书"},{"name":"arg0","value":"4"}],"start":1678785689768,"stop":1678785690114}
\ No newline at end of file
{"uuid":"6ca73660-c298-4a6b-9eb4-19b5adf407d2","historyId":"cd514cf088ce59bfb95a1314b46550fd","fullName":"com.lemon.cases.PayCase.testPay","labels":[{"name":"package","value":"com.lemon.cases.PayCase"},{"name":"testClass","value":"com.lemon.cases.PayCase"},{"name":"testMethod","value":"testPay"},{"name":"parentSuite","value":"理工数传"},{"name":"suite","value":"RAYS支付"},{"name":"subSuite","value":"com.lemon.cases.PayCase"},{"name":"host","value":"Ray-MacBook-Pro-2.local"},{"name":"thread","value":"15239@Ray-MacBook-Pro-2.local.main(1)"},{"name":"framework","value":"testng"},{"name":"language","value":"java"}],"links":[],"name":"testPay","status":"passed","statusDetails":{"known":false,"muted":false,"flaky":false},"stage":"finished","description":"创建支付订单","steps":[{"name":"响应结果断言","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"expectValue","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"officialAccountsId\":65750,\"payAccounts\":23,\"officialAccountsName\":\"上海教育出版社有限公司\",\"domain\":\"weixin65750.rayswdcb.com\",\"payDomain\":\"weixin23.5rs.me\",\"manageDomain\":\"wechat75903.rayswang.com\",\"icon\":\"https://oss.5rs.me/oss/uploadfe/jpg/a7684e17ab41c8e43e7576e7321b8a77.jpg\",\"description\":\"上海教育出版社有限公司\",\"iosAlipayOpen\":0,\"payMchId\":\"1639325477\",\"currentPagePay\":0,\"phoneAuthOpen\":0,\"payMethod\":1}}"},{"name":"body","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"officialAccountsId\":65750,\"payAccounts\":23,\"officialAccountsName\":\"上海教育出版社有限公司\",\"domain\":\"weixin65750.rayswdcb.com\",\"payDomain\":\"weixin23.5rs.me\",\"manageDomain\":\"wechat75903.rayswang.com\",\"icon\":\"https://oss.5rs.me/oss/uploadfe/jpg/a7684e17ab41c8e43e7576e7321b8a77.jpg\",\"description\":\"上海教育出版社有限公司\",\"iosAlipayOpen\":0,\"payMchId\":\"1639325477\",\"currentPagePay\":0,\"phoneAuthOpen\":0,\"payMethod\":1}}"}],"start":1678785689765,"stop":1678785689765}],"attachments":[],"parameters":[{"name":"arg3","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"officialAccountsId\":65750,\"payAccounts\":23,\"officialAccountsName\":\"上海教育出版社有限公司\",\"domain\":\"weixin65750.rayswdcb.com\",\"payDomain\":\"weixin23.5rs.me\",\"manageDomain\":\"wechat75903.rayswang.com\",\"icon\":\"https://oss.5rs.me/oss/uploadfe/jpg/a7684e17ab41c8e43e7576e7321b8a77.jpg\",\"description\":\"上海教育出版社有限公司\",\"iosAlipayOpen\":0,\"payMchId\":\"1639325477\",\"currentPagePay\":0,\"phoneAuthOpen\":0,\"payMethod\":1}}"},{"name":"arg2","value":"https://weixin65750.rayswdcb.com/channelcenter/v1.0/accountSetting/getOpreateManageInfo?officialAccountsId=65750"},{"name":"type","value":"phone"},{"name":"version","value":"1.1.1"},{"name":"arg1","value":"上海教育跳RAYS"},{"name":"arg0","value":"3"}],"start":1678785689402,"stop":1678785689765}
\ No newline at end of file
{"uuid":"73d95d57-e80b-45a7-8c2c-8a487bae9eaa","historyId":"4e7f31681f35477aa692d4eb8e1deded","fullName":"com.lemon.cases.RaysDataCase.testGetCompeteTopicList","labels":[{"name":"package","value":"com.lemon.cases.RaysDataCase"},{"name":"testClass","value":"com.lemon.cases.RaysDataCase"},{"name":"testMethod","value":"testGetCompeteTopicList"},{"name":"parentSuite","value":"理工数传"},{"name":"suite","value":"睿思数据"},{"name":"subSuite","value":"com.lemon.cases.RaysDataCase"},{"name":"host","value":"Ray-MacBook-Pro-2.local"},{"name":"thread","value":"15239@Ray-MacBook-Pro-2.local.main(1)"},{"name":"framework","value":"testng"},{"name":"language","value":"java"}],"links":[],"name":"【选题洞察】选题竞争态势","status":"passed","statusDetails":{"known":false,"muted":false,"flaky":false},"stage":"finished","description":"【选题洞察】选题竞争态势","steps":[{"name":"参数化替换","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"source","value":"{\"oneCategoryId\":-1,\"twoCategoryId\":-1,\"currentPage\":1,\"numPerPage\":10,\"periodType\":\"month\",\"timeValue\":[\"2022-01-01\",\"2022-01-31\"],\"uuid\":\"V0jV-HOO\",\"startMonth\":\"2022-01-01\",\"endMonth\":\"2022-01-31\",\"userId\":14,\"oneCategoryName\":\"全分类\",\"twoCategoryName\":\"全分类\",\"createTime\":\"2022-11-09 15:56:42\",\"competeSortType\":2}"}],"start":1678785685109,"stop":1678785685110},{"name":"参数化替换","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"source","value":"null"}],"start":1678785685110,"stop":1678785685110},{"name":"接口调用方法","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"api","value":"com.lemon.pojo.API@7f3ca64a"},{"name":"cas","value":"Case{id='22', desc='【选题洞察】选题竞争态势>按销售册数', params='{\"oneCategoryId\":-1,\"twoCategoryId\":-1,\"currentPage\":1,\"numPerPage\":10,\"periodType\":\"month\",\"timeValue\":[\"2022-01-01\",\"2022-01-31\"],\"uuid\":\"V0jV-HOO\",\"startMonth\":\"2022-01-01\",\"endMonth\":\"2022-01-31\",\"userId\":14,\"oneCategoryName\":\"全分类\",\"twoCategoryName\":\"全分类\",\"createTime\":\"2022-11-09 15:56:42\",\"competeSortType\":2}', apiID='17', expectValue='null', checkSQL='null'}"},{"name":"isAuthorization","value":"true"}],"start":1678785685110,"stop":1678785685507},{"name":"响应结果进行断言","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"cas","value":"Case{id='22', desc='【选题洞察】选题竞争态势>按销售册数', params='{\"oneCategoryId\":-1,\"twoCategoryId\":-1,\"currentPage\":1,\"numPerPage\":10,\"periodType\":\"month\",\"timeValue\":[\"2022-01-01\",\"2022-01-31\"],\"uuid\":\"V0jV-HOO\",\"startMonth\":\"2022-01-01\",\"endMonth\":\"2022-01-31\",\"userId\":14,\"oneCategoryName\":\"全分类\",\"twoCategoryName\":\"全分类\",\"createTime\":\"2022-11-09 15:56:42\",\"competeSortType\":2}', apiID='17', expectValue='null', checkSQL='null'}"},{"name":"body","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"competeTopicDTOS\":null,\"maxBookAmount\":null,\"minBookAmount\":null,\"maxInternetPopularity\":null,\"minInternetPopularity\":null,\"maxSalesQuantity\":null,\"minSalesQuantity\":null},\"encrypt\":false}"}],"start":1678785685507,"stop":1678785685507},{"name":"添加回写内容","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"rowNum","value":"22"},{"name":"cellNum","value":"5"},{"name":"body","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"competeTopicDTOS\":null,\"maxBookAmount\":null,\"minBookAmount\":null,\"maxInternetPopularity\":null,\"minInternetPopularity\":null,\"maxSalesQuantity\":null,\"minSalesQuantity\":null},\"encrypt\":false}"}],"start":1678785685507,"stop":1678785685507}],"attachments":[],"parameters":[{"name":"type","value":"phone"},{"name":"version","value":"1.1.1"},{"name":"arg1","value":"Case{id='22', desc='【选题洞察】选题竞争态势>按销售册数', params='{\"oneCategoryId\":-1,\"twoCategoryId\":-1,\"currentPage\":1,\"numPerPage\":10,\"periodType\":\"month\",\"timeValue\":[\"2022-01-01\",\"2022-01-31\"],\"uuid\":\"V0jV-HOO\",\"startMonth\":\"2022-01-01\",\"endMonth\":\"2022-01-31\",\"userId\":14,\"oneCategoryName\":\"全分类\",\"twoCategoryName\":\"全分类\",\"createTime\":\"2022-11-09 15:56:42\",\"competeSortType\":2}', apiID='17', expectValue='null', checkSQL='null'}"},{"name":"arg0","value":"com.lemon.pojo.API@7f3ca64a"}],"start":1678785685109,"stop":1678785685507}
\ No newline at end of file
{"uuid":"75edb7eb-000d-47f5-8879-941957e9ae56","name":"com.lemon.cases.RaysDataCase","children":["3b613eec-25e9-4afd-997b-23c2482f1b00","ff2a6c5e-060d-40b9-a553-ae4ba962aa34","b80c5688-f8ed-4878-b15a-9f131c89e558","9ec336ab-6bc2-4048-a9df-e2376fccc192","117dc2d8-5bc8-4b57-b1d5-db4486f23f94","6481fd8f-707b-4ba3-8077-2568abdf17ff","41f93327-2f72-4d9d-b65c-e2d3bb20714e","79493acf-5eef-4b8e-b849-c2bd8d0a0f19","73d95d57-e80b-45a7-8c2c-8a487bae9eaa","c69a1cdc-2589-4d16-8659-ab071656edab","9c13108f-7c58-45ab-aefd-7bc7f6b1c82a","cfc94350-16ac-4724-98a3-dfbeb91d724d","47734887-f348-4ed7-beee-ad4e72034f92","a047256e-f978-4844-9487-b466a56a8a0f","7fa3c5d4-ff6e-4576-aba2-97ce87b57df1","c44b35af-50d7-4fd4-9fa9-f4223fbf0546","645fde05-1acb-4dcd-87da-edd1305866fa","c2f81092-f653-459b-adc4-3c7beb8980fe","aa9f4860-eda8-420a-9071-da6a3aef35ae","3868fa45-9d16-47ce-a50e-88ef0c44bc7b","28975414-3ad3-4d6f-bc98-bae9393659fe","9689091b-799d-4d36-b257-0f6742c35051","54ae0f4f-b863-4458-8556-cde575c5c370","8d803a9a-7d14-4df1-a457-2db9b8593c21","3027ba6b-ba76-475d-9533-5067b70ceba6","93beb90a-6b52-4253-997e-30e41dd5a22a","945e4540-0813-441a-8461-4f899f787d2d"],"befores":[],"afters":[],"start":1678785682724,"stop":1678785688990}
\ No newline at end of file
{"uuid":"79493acf-5eef-4b8e-b849-c2bd8d0a0f19","historyId":"ca0377c60151eb210625484ae09b9e1d","fullName":"com.lemon.cases.RaysDataCase.testGetCompeteTopicList","labels":[{"name":"package","value":"com.lemon.cases.RaysDataCase"},{"name":"testClass","value":"com.lemon.cases.RaysDataCase"},{"name":"testMethod","value":"testGetCompeteTopicList"},{"name":"parentSuite","value":"理工数传"},{"name":"suite","value":"睿思数据"},{"name":"subSuite","value":"com.lemon.cases.RaysDataCase"},{"name":"host","value":"Ray-MacBook-Pro-2.local"},{"name":"thread","value":"15239@Ray-MacBook-Pro-2.local.main(1)"},{"name":"framework","value":"testng"},{"name":"language","value":"java"}],"links":[],"name":"【选题洞察】选题竞争态势","status":"passed","statusDetails":{"known":false,"muted":false,"flaky":false},"stage":"finished","description":"【选题洞察】选题竞争态势","steps":[{"name":"参数化替换","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"source","value":"{\"oneCategoryId\":-1,\"twoCategoryId\":-1,\"currentPage\":1,\"numPerPage\":10,\"periodType\":\"month\",\"timeValue\":[\"2022-01-01 \",\" 2022-01-31\"],\"uuid\":\"TV5kex5r\",\"startMonth\":\"2022-01-01 \",\"endMonth\":\" 2022-01-31\",\"competeSortType\":1}"}],"start":1678785684899,"stop":1678785684899},{"name":"参数化替换","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"source","value":"null"}],"start":1678785684900,"stop":1678785684900},{"name":"接口调用方法","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"api","value":"com.lemon.pojo.API@7f3ca64a"},{"name":"cas","value":"Case{id='21', desc='【选题洞察】选题竞争态势>按互联网热度', params='{\"oneCategoryId\":-1,\"twoCategoryId\":-1,\"currentPage\":1,\"numPerPage\":10,\"periodType\":\"month\",\"timeValue\":[\"2022-01-01 \",\" 2022-01-31\"],\"uuid\":\"TV5kex5r\",\"startMonth\":\"2022-01-01 \",\"endMonth\":\" 2022-01-31\",\"competeSortType\":1}', apiID='17', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"competeTopicDTOS\":[{\"topicId\":1281,\"topicName\":\"汉语\",\"internetPopularity\":73,\"salesQuantity\":122,\"bookAmount\":143},{\"topicId\":3843,\"topicName\":\"心理\",\"internetPopularity\":181,\"salesQuantity\":16,\"bookAmount\":6},{\"topicId\":18184,\"topicName\":\"美国\",\"internetPopularity\":171,\"salesQuantity\":114,\"bookAmount\":127},{\"topicId\":4362,\"topicName\":\"考试\",\"internetPopularity\":164,\"salesQuantity\":12,\"bookAmount\":10},{\"topicId\":6412,\"topicName\":\"绘画\",\"internetPopularity\":142,\"salesQuantity\":55,\"bookAmount\":69},{\"topicId\":23054,\"topicName\":\"图画故事\",\"internetPopularity\":13,\"salesQuantity\":169,\"bookAmount\":195},{\"topicId\":12816,\"topicName\":\"速算\",\"internetPopularity\":67,\"salesQuantity\":153,\"bookAmount\":94},{\"topicId\":6929,\"topicName\":\"投资\",\"internetPopularity\":122,\"salesQuantity\":77,\"bookAmount\":71},{\"topicId\":3345,\"topicName\":\"地理\",\"internetPopularity\":116,\"salesQuantity\":79,\"bookAmount\":63},{\"topicId\":34839,\"topicName\":\"阅读教学\",\"internetPopularity\":30,\"salesQuantity\":134,\"bookAmount\":97},{\"topicId\":29981,\"topicName\":\"散文集\",\"internetPopularity\":34,\"salesQuantity\":142,\"bookAmount\":161},{\"topicId\":10782,\"topicName\":\"童话\",\"internetPopularity\":75,\"salesQuantity\":177,\"bookAmount\":159},{\"topicId\":10273,\"topicName\":\"恋爱\",\"internetPopularity\":106,\"salesQuantity\":43,\"bookAmount\":38},{\"topicId\":34,\"topicName\":\"工作\",\"internetPopularity\":96,\"salesQuantity\":59,\"bookAmount\":61},{\"topicId\":14117,\"topicName\":\"学习\",\"internetPopularity\":197,\"salesQuantity\":6,\"bookAmount\":2},{\"topicId\":19493,\"topicName\":\"经济\",\"internetPopularity\":146,\"salesQuantity\":30,\"bookAmount\":40},{\"topicId\":23590,\"topicName\":\"短篇小说\",\"internetPopularity\":56,\"salesQuantity\":138,\"bookAmount\":133},{\"topicId\":53545,\"topicName\":\"儿童文学\",\"internetPopularity\":60,\"salesQuantity\":157,\"bookAmount\":167},{\"topicId\":2092,\"topicName\":\"生活\",\"internetPopularity\":199,\"salesQuantity\":53,\"bookAmount\":49},{\"topicId\":8754,\"topicName\":\"漫画\",\"internetPopularity\":86,\"salesQuantity\":140,\"bookAmount\":137},{\"topicId\":7735,\"topicName\":\"法国\",\"internetPopularity\":89,\"salesQuantity\":124,\"bookAmount\":93},{\"topicId\":55096,\"topicName\":\"教学参考资料\",\"internetPopularity\":18,\"salesQuantity\":173,\"bookAmount\":153},{\"topicId\":19258,\"topicName\":\"宇宙\",\"internetPopularity\":114,\"salesQuantity\":75,\"bookAmount\":65},{\"topicId\":13374,\"topicName\":\"历史\",\"internetPopularity\":195,\"salesQuantity\":83,\"bookAmount\":91},{\"topicId\":21823,\"topicName\":\"基本知识\",\"internetPopularity\":20,\"salesQuantity\":100,\"bookAmount\":147},{\"topicId\":27712,\"topicName\":\"学前教育\",\"internetPopularity\":62,\"salesQuantity\":175,\"bookAmount\":187},{\"topicId\":2113,\"topicName\":\"大学\",\"internetPopularity\":156,\"salesQuantity\":38,\"bookAmount\":17},{\"topicId\":3147,\"topicName\":\"化学\",\"internetPopularity\":98,\"salesQuantity\":67,\"bookAmount\":59},{\"topicId\":46417,\"topicName\":\"小学数学课\",\"internetPopularity\":16,\"salesQuantity\":181,\"bookAmount\":165},{\"topicId\":3155,\"topicName\":\"中国\",\"internetPopularity\":167,\"salesQuantity\":199,\"bookAmount\":200},{\"topicId\":49491,\"topicName\":\"作文课\",\"internetPopularity\":26,\"salesQuantity\":155,\"bookAmount\":145},{\"topicId\":18260,\"topicName\":\"犯罪\",\"internetPopularity\":138,\"salesQuantity\":2,\"bookAmount\":18},{\"topicId\":21594,\"topicName\":\"少儿读物\",\"internetPopularity\":21,\"salesQuantity\":146,\"bookAmount\":135},{\"topicId\":10331,\"topicName\":\"校园\",\"internetPopularity\":112,\"salesQuantity\":57,\"bookAmount\":24},{\"topicId\":7008,\"topicName\":\"研究\",\"internetPopularity\":77,\"salesQuantity\":120,\"bookAmount\":191},{\"topicId\":13671,\"topicName\":\"知识\",\"internetPopularity\":200,\"salesQuantity\":39,\"bookAmount\":43},{\"topicId\":19821,\"topicName\":\"普及读物\",\"internetPopularity\":23,\"salesQuantity\":102,\"bookAmount\":103},{\"topicId\":17264,\"topicName\":\"游戏\",\"internetPopularity\":189,\"salesQuantity\":45,\"bookAmount\":47},{\"topicId\":7281,\"topicName\":\"情感\",\"internetPopularity\":177,\"salesQuantity\":22,\"bookAmount\":30},{\"topicId\":54386,\"topicName\":\"程序设计\",\"internetPopularity\":66,\"salesQuantity\":85,\"bookAmount\":99},{\"topicId\":47219,\"topicName\":\"儿童故事\",\"internetPopularity\":54,\"salesQuantity\":171,\"bookAmount\":185},{\"topicId\":13172,\"topicName\":\"教育\",\"internetPopularity\":191,\"salesQuantity\":41,\"bookAmount\":53},{\"topicId\":9846,\"topicName\":\"物理\",\"internetPopularity\":140,\"salesQuantity\":49,\"bookAmount\":28},{\"topicId\":4215,\"topicName\":\"案件\",\"internetPopularity\":160,\"salesQuantity\":10,\"bookAmount\":16},{\"topicId\":48505,\"topicName\":\"中学数学课\",\"internetPopularity\":17,\"salesQuantity\":159,\"bookAmount\":155},{\"topicId\":8573,\"topicName\":\"楷书\",\"internetPopularity\":79,\"salesQuantity\":95,\"bookAmount\":107},{\"topicId\":2943,\"topicName\":\"科学\",\"internetPopularity\":193,\"salesQuantity\":18,\"bookAmount\":20},{\"topicId\":48005,\"topicName\":\"连环画\",\"internetPopularity\":64,\"salesQuantity\":110,\"bookAmount\":131},{\"topicId\":54150,\"topicName\":\"数学课\",\"internetPopularity\":38,\"salesQuantity\":123,\"bookAmount\":95},{\"topicId\":397,\"topicName\":\"数学\",\"internetPopularity\":108,\"salesQuantity\":104,\"bookAmount\":89},{\"topicId\":1422,\"topicName\":\"爱情\",\"internetPopularity\":100,\"salesQuantity\":32,\"bookAmount\":42},{\"topicId\":3217,\"topicName\":\"人物\",\"internetPopularity\":158,\"salesQuantity\":36,\"bookAmount\":45},{\"topicId\":12957,\"topicName\":\"高中\",\"internetPopularity\":132,\"salesQuantity\":167,\"bookAmount\":177},{\"topicId\":27805,\"topicName\":\"资格考试\",\"internetPopularity\":40,\"salesQuantity\":130,\"bookAmount\":117},{\"topicId\":16800,\"topicName\":\"动画\",\"internetPopularity\":187,\"salesQuantity\":81,\"bookAmount\":77},{\"topicId\":10915,\"topicName\":\"英语\",\"internetPopularity\":185,\"salesQuantity\":185,\"bookAmount\":181},{\"topicId\":37796,\"topicName\":\"长篇小说\",\"internetPopularity\":37,\"salesQuantity\":196,\"bookAmount\":197},{\"topicId\":25254,\"topicName\":\"科学知识\",\"internetPopularity\":58,\"salesQuantity\":144,\"bookAmount\":109},{\"topicId\":24233,\"topicName\":\"智力游戏\",\"internetPopularity\":50,\"salesQuantity\":116,\"bookAmount\":139},{\"topicId\":41387,\"topicName\":\"高等学校\",\"internetPopularity\":14,\"salesQuantity\":148,\"bookAmount\":183},{\"topicId\":4269,\"topicName\":\"健康\",\"internetPopularity\":179,\"salesQuantity\":24,\"bookAmount\":34},{\"topicId\":1197,\"topicName\":\"艺术\",\"internetPopularity\":148,\"salesQuantity\":61,\"bookAmount\":73},{\"topicId\":3247,\"topicName\":\"金融\",\"internetPopularity\":134,\"salesQuantity\":47,\"bookAmount\":67},{\"topicId\":8370,\"topicName\":\"汽车\",\"internetPopularity\":102,\"salesQuantity\":71,\"bookAmount\":85},{\"topicId\":35763,\"topicName\":\"通俗读物\",\"internetPopularity\":15,\"salesQuantity\":152,\"bookAmount\":169},{\"topicId\":40885,\"topicName\":\"小说集\",\"internetPopularity\":28,\"salesQuantity\":126,\"bookAmount\":149},{\"topicId\":181,\"topicName\":\"汉字\",\"internetPopularity\":84,\"salesQuantity\":108,\"bookAmount\":111},{\"topicId\":39608,\"topicName\":\"儿童小说\",\"internetPopularity\":19,\"salesQuantity\":161,\"bookAmount\":151},{\"topicId\":17848,\"topicName\":\"高考\",\"internetPopularity\":154,\"salesQuantity\":51,\"bookAmount\":32},{\"topicId\":21688,\"topicName\":\"心理学\",\"internetPopularity\":128,\"salesQuantity\":87,\"bookAmount\":79},{\"topicId\":8636,\"topicName\":\"实验\",\"internetPopularity\":110,\"salesQuantity\":89,\"bookAmount\":75},{\"topicId\":12990,\"topicName\":\"文学\",\"internetPopularity\":152,\"salesQuantity\":63,\"bookAmount\":57},{\"topicId\":11206,\"topicName\":\"文化\",\"internetPopularity\":175,\"salesQuantity\":73,\"bookAmount\":81},{\"topicId\":454,\"topicName\":\"生物\",\"internetPopularity\":162,\"salesQuantity\":28,\"bookAmount\":37},{\"topicId\":31694,\"topicName\":\"小学语文课\",\"internetPopularity\":32,\"salesQuantity\":189,\"bookAmount\":157},{\"topicId\":14544,\"topicName\":\"英国\",\"internetPopularity\":93,\"salesQuantity\":150,\"bookAmount\":123},{\"topicId\":11989,\"topicName\":\"课程\",\"internetPopularity\":118,\"salesQuantity\":97,\"bookAmount\":83},{\"topicId\":3798,\"topicName\":\"设计\",\"internetPopularity\":144,\"salesQuantity\":69,\"bookAmount\":88},{\"topicId\":726,\"topicName\":\"旅游\",\"internetPopularity\":104,\"salesQuantity\":26,\"bookAmount\":51},{\"topicId\":16088,\"topicName\":\"生命\",\"internetPopularity\":150,\"salesQuantity\":4,\"bookAmount\":4},{\"topicId\":11224,\"topicName\":\"创意\",\"internetPopularity\":124,\"salesQuantity\":8,\"bookAmount\":12},{\"topicId\":49627,\"topicName\":\"作品集\",\"internetPopularity\":81,\"salesQuantity\":193,\"bookAmount\":189},{\"topicId\":50907,\"topicName\":\"企业管理\",\"internetPopularity\":71,\"salesQuantity\":91,\"bookAmount\":121},{\"topicId\":14044,\"topicName\":\"诗集\",\"internetPopularity\":52,\"salesQuantity\":106,\"bookAmount\":119},{\"topicId\":17373,\"topicName\":\"日本\",\"internetPopularity\":94,\"salesQuantity\":98,\"bookAmount\":92},{\"topicId\":10719,\"topicName\":\"机械\",\"internetPopularity\":120,\"salesQuantity\":34,\"bookAmount\":26},{\"topicId\":10208,\"topicName\":\"初中\",\"internetPopularity\":91,\"salesQuantity\":191,\"bookAmount\":193},{\"topicId\":50144,\"topicName\":\"阅读课\",\"internetPopularity\":42,\"salesQuantity\":187,\"bookAmount\":129},{\"topicId\":47841,\"topicName\":\"习题集\",\"internetPopularity\":44,\"salesQuantity\":195,\"bookAmount\":171},{\"topicId\":5345,\"topicName\":\"传记\",\"internetPopularity\":69,\"salesQuantity\":93,\"bookAmount\":115},{\"topicId\":38626,\"topicName\":\"中篇小说\",\"internetPopularity\":36,\"salesQuantity\":132,\"bookAmount\":141},{\"topicId\":28644,\"topicName\":\"中学物理课\",\"internetPopularity\":24,\"salesQuantity\":128,\"bookAmount\":101},{\"topicId\":18661,\"topicName\":\"音乐\",\"internetPopularity\":173,\"salesQuantity\":65,\"bookAmount\":55},{\"topicId\":39654,\"topicName\":\"中国历史\",\"internetPopularity\":88,\"salesQuantity\":118,\"bookAmount\":113},{\"topicId\":231,\"topicName\":\"手工\",\"internetPopularity\":126,\"salesQuantity\":20,\"bookAmount\":8},{\"topicId\":8175,\"topicName\":\"商业\",\"internetPopularity\":136,\"salesQuantity\":14,\"bookAmount\":22},{\"topicId\":28918,\"topicName\":\"中学语文课\",\"internetPopularity\":22,\"salesQuantity\":136,\"bookAmount\":105},{\"topicId\":26874,\"topicName\":\"英语课\",\"internetPopularity\":46,\"salesQuantity\":179,\"bookAmount\":173},{\"topicId\":54014,\"topicName\":\"儿童读物\",\"internetPopularity\":48,\"salesQuantity\":163,\"bookAmount\":163},{\"topicId\":3327,\"topicName\":\"小学\",\"internetPopularity\":82,\"salesQuantity\":200,\"bookAmount\":196}],\"maxBookAmount\":200,\"minBookAmount\":1,\"maxInternetPopularity\":200,\"minInternetPopularity\":1,\"maxSalesQuantity\":200,\"minSalesQuantity\":1},\"encrypt\":false}', checkSQL='null'}"},{"name":"isAuthorization","value":"true"}],"start":1678785684900,"stop":1678785685106},{"name":"响应结果进行断言","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"cas","value":"Case{id='21', desc='【选题洞察】选题竞争态势>按互联网热度', params='{\"oneCategoryId\":-1,\"twoCategoryId\":-1,\"currentPage\":1,\"numPerPage\":10,\"periodType\":\"month\",\"timeValue\":[\"2022-01-01 \",\" 2022-01-31\"],\"uuid\":\"TV5kex5r\",\"startMonth\":\"2022-01-01 \",\"endMonth\":\" 2022-01-31\",\"competeSortType\":1}', apiID='17', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"competeTopicDTOS\":[{\"topicId\":1281,\"topicName\":\"汉语\",\"internetPopularity\":73,\"salesQuantity\":122,\"bookAmount\":143},{\"topicId\":3843,\"topicName\":\"心理\",\"internetPopularity\":181,\"salesQuantity\":16,\"bookAmount\":6},{\"topicId\":18184,\"topicName\":\"美国\",\"internetPopularity\":171,\"salesQuantity\":114,\"bookAmount\":127},{\"topicId\":4362,\"topicName\":\"考试\",\"internetPopularity\":164,\"salesQuantity\":12,\"bookAmount\":10},{\"topicId\":6412,\"topicName\":\"绘画\",\"internetPopularity\":142,\"salesQuantity\":55,\"bookAmount\":69},{\"topicId\":23054,\"topicName\":\"图画故事\",\"internetPopularity\":13,\"salesQuantity\":169,\"bookAmount\":195},{\"topicId\":12816,\"topicName\":\"速算\",\"internetPopularity\":67,\"salesQuantity\":153,\"bookAmount\":94},{\"topicId\":6929,\"topicName\":\"投资\",\"internetPopularity\":122,\"salesQuantity\":77,\"bookAmount\":71},{\"topicId\":3345,\"topicName\":\"地理\",\"internetPopularity\":116,\"salesQuantity\":79,\"bookAmount\":63},{\"topicId\":34839,\"topicName\":\"阅读教学\",\"internetPopularity\":30,\"salesQuantity\":134,\"bookAmount\":97},{\"topicId\":29981,\"topicName\":\"散文集\",\"internetPopularity\":34,\"salesQuantity\":142,\"bookAmount\":161},{\"topicId\":10782,\"topicName\":\"童话\",\"internetPopularity\":75,\"salesQuantity\":177,\"bookAmount\":159},{\"topicId\":10273,\"topicName\":\"恋爱\",\"internetPopularity\":106,\"salesQuantity\":43,\"bookAmount\":38},{\"topicId\":34,\"topicName\":\"工作\",\"internetPopularity\":96,\"salesQuantity\":59,\"bookAmount\":61},{\"topicId\":14117,\"topicName\":\"学习\",\"internetPopularity\":197,\"salesQuantity\":6,\"bookAmount\":2},{\"topicId\":19493,\"topicName\":\"经济\",\"internetPopularity\":146,\"salesQuantity\":30,\"bookAmount\":40},{\"topicId\":23590,\"topicName\":\"短篇小说\",\"internetPopularity\":56,\"salesQuantity\":138,\"bookAmount\":133},{\"topicId\":53545,\"topicName\":\"儿童文学\",\"internetPopularity\":60,\"salesQuantity\":157,\"bookAmount\":167},{\"topicId\":2092,\"topicName\":\"生活\",\"internetPopularity\":199,\"salesQuantity\":53,\"bookAmount\":49},{\"topicId\":8754,\"topicName\":\"漫画\",\"internetPopularity\":86,\"salesQuantity\":140,\"bookAmount\":137},{\"topicId\":7735,\"topicName\":\"法国\",\"internetPopularity\":89,\"salesQuantity\":124,\"bookAmount\":93},{\"topicId\":55096,\"topicName\":\"教学参考资料\",\"internetPopularity\":18,\"salesQuantity\":173,\"bookAmount\":153},{\"topicId\":19258,\"topicName\":\"宇宙\",\"internetPopularity\":114,\"salesQuantity\":75,\"bookAmount\":65},{\"topicId\":13374,\"topicName\":\"历史\",\"internetPopularity\":195,\"salesQuantity\":83,\"bookAmount\":91},{\"topicId\":21823,\"topicName\":\"基本知识\",\"internetPopularity\":20,\"salesQuantity\":100,\"bookAmount\":147},{\"topicId\":27712,\"topicName\":\"学前教育\",\"internetPopularity\":62,\"salesQuantity\":175,\"bookAmount\":187},{\"topicId\":2113,\"topicName\":\"大学\",\"internetPopularity\":156,\"salesQuantity\":38,\"bookAmount\":17},{\"topicId\":3147,\"topicName\":\"化学\",\"internetPopularity\":98,\"salesQuantity\":67,\"bookAmount\":59},{\"topicId\":46417,\"topicName\":\"小学数学课\",\"internetPopularity\":16,\"salesQuantity\":181,\"bookAmount\":165},{\"topicId\":3155,\"topicName\":\"中国\",\"internetPopularity\":167,\"salesQuantity\":199,\"bookAmount\":200},{\"topicId\":49491,\"topicName\":\"作文课\",\"internetPopularity\":26,\"salesQuantity\":155,\"bookAmount\":145},{\"topicId\":18260,\"topicName\":\"犯罪\",\"internetPopularity\":138,\"salesQuantity\":2,\"bookAmount\":18},{\"topicId\":21594,\"topicName\":\"少儿读物\",\"internetPopularity\":21,\"salesQuantity\":146,\"bookAmount\":135},{\"topicId\":10331,\"topicName\":\"校园\",\"internetPopularity\":112,\"salesQuantity\":57,\"bookAmount\":24},{\"topicId\":7008,\"topicName\":\"研究\",\"internetPopularity\":77,\"salesQuantity\":120,\"bookAmount\":191},{\"topicId\":13671,\"topicName\":\"知识\",\"internetPopularity\":200,\"salesQuantity\":39,\"bookAmount\":43},{\"topicId\":19821,\"topicName\":\"普及读物\",\"internetPopularity\":23,\"salesQuantity\":102,\"bookAmount\":103},{\"topicId\":17264,\"topicName\":\"游戏\",\"internetPopularity\":189,\"salesQuantity\":45,\"bookAmount\":47},{\"topicId\":7281,\"topicName\":\"情感\",\"internetPopularity\":177,\"salesQuantity\":22,\"bookAmount\":30},{\"topicId\":54386,\"topicName\":\"程序设计\",\"internetPopularity\":66,\"salesQuantity\":85,\"bookAmount\":99},{\"topicId\":47219,\"topicName\":\"儿童故事\",\"internetPopularity\":54,\"salesQuantity\":171,\"bookAmount\":185},{\"topicId\":13172,\"topicName\":\"教育\",\"internetPopularity\":191,\"salesQuantity\":41,\"bookAmount\":53},{\"topicId\":9846,\"topicName\":\"物理\",\"internetPopularity\":140,\"salesQuantity\":49,\"bookAmount\":28},{\"topicId\":4215,\"topicName\":\"案件\",\"internetPopularity\":160,\"salesQuantity\":10,\"bookAmount\":16},{\"topicId\":48505,\"topicName\":\"中学数学课\",\"internetPopularity\":17,\"salesQuantity\":159,\"bookAmount\":155},{\"topicId\":8573,\"topicName\":\"楷书\",\"internetPopularity\":79,\"salesQuantity\":95,\"bookAmount\":107},{\"topicId\":2943,\"topicName\":\"科学\",\"internetPopularity\":193,\"salesQuantity\":18,\"bookAmount\":20},{\"topicId\":48005,\"topicName\":\"连环画\",\"internetPopularity\":64,\"salesQuantity\":110,\"bookAmount\":131},{\"topicId\":54150,\"topicName\":\"数学课\",\"internetPopularity\":38,\"salesQuantity\":123,\"bookAmount\":95},{\"topicId\":397,\"topicName\":\"数学\",\"internetPopularity\":108,\"salesQuantity\":104,\"bookAmount\":89},{\"topicId\":1422,\"topicName\":\"爱情\",\"internetPopularity\":100,\"salesQuantity\":32,\"bookAmount\":42},{\"topicId\":3217,\"topicName\":\"人物\",\"internetPopularity\":158,\"salesQuantity\":36,\"bookAmount\":45},{\"topicId\":12957,\"topicName\":\"高中\",\"internetPopularity\":132,\"salesQuantity\":167,\"bookAmount\":177},{\"topicId\":27805,\"topicName\":\"资格考试\",\"internetPopularity\":40,\"salesQuantity\":130,\"bookAmount\":117},{\"topicId\":16800,\"topicName\":\"动画\",\"internetPopularity\":187,\"salesQuantity\":81,\"bookAmount\":77},{\"topicId\":10915,\"topicName\":\"英语\",\"internetPopularity\":185,\"salesQuantity\":185,\"bookAmount\":181},{\"topicId\":37796,\"topicName\":\"长篇小说\",\"internetPopularity\":37,\"salesQuantity\":196,\"bookAmount\":197},{\"topicId\":25254,\"topicName\":\"科学知识\",\"internetPopularity\":58,\"salesQuantity\":144,\"bookAmount\":109},{\"topicId\":24233,\"topicName\":\"智力游戏\",\"internetPopularity\":50,\"salesQuantity\":116,\"bookAmount\":139},{\"topicId\":41387,\"topicName\":\"高等学校\",\"internetPopularity\":14,\"salesQuantity\":148,\"bookAmount\":183},{\"topicId\":4269,\"topicName\":\"健康\",\"internetPopularity\":179,\"salesQuantity\":24,\"bookAmount\":34},{\"topicId\":1197,\"topicName\":\"艺术\",\"internetPopularity\":148,\"salesQuantity\":61,\"bookAmount\":73},{\"topicId\":3247,\"topicName\":\"金融\",\"internetPopularity\":134,\"salesQuantity\":47,\"bookAmount\":67},{\"topicId\":8370,\"topicName\":\"汽车\",\"internetPopularity\":102,\"salesQuantity\":71,\"bookAmount\":85},{\"topicId\":35763,\"topicName\":\"通俗读物\",\"internetPopularity\":15,\"salesQuantity\":152,\"bookAmount\":169},{\"topicId\":40885,\"topicName\":\"小说集\",\"internetPopularity\":28,\"salesQuantity\":126,\"bookAmount\":149},{\"topicId\":181,\"topicName\":\"汉字\",\"internetPopularity\":84,\"salesQuantity\":108,\"bookAmount\":111},{\"topicId\":39608,\"topicName\":\"儿童小说\",\"internetPopularity\":19,\"salesQuantity\":161,\"bookAmount\":151},{\"topicId\":17848,\"topicName\":\"高考\",\"internetPopularity\":154,\"salesQuantity\":51,\"bookAmount\":32},{\"topicId\":21688,\"topicName\":\"心理学\",\"internetPopularity\":128,\"salesQuantity\":87,\"bookAmount\":79},{\"topicId\":8636,\"topicName\":\"实验\",\"internetPopularity\":110,\"salesQuantity\":89,\"bookAmount\":75},{\"topicId\":12990,\"topicName\":\"文学\",\"internetPopularity\":152,\"salesQuantity\":63,\"bookAmount\":57},{\"topicId\":11206,\"topicName\":\"文化\",\"internetPopularity\":175,\"salesQuantity\":73,\"bookAmount\":81},{\"topicId\":454,\"topicName\":\"生物\",\"internetPopularity\":162,\"salesQuantity\":28,\"bookAmount\":37},{\"topicId\":31694,\"topicName\":\"小学语文课\",\"internetPopularity\":32,\"salesQuantity\":189,\"bookAmount\":157},{\"topicId\":14544,\"topicName\":\"英国\",\"internetPopularity\":93,\"salesQuantity\":150,\"bookAmount\":123},{\"topicId\":11989,\"topicName\":\"课程\",\"internetPopularity\":118,\"salesQuantity\":97,\"bookAmount\":83},{\"topicId\":3798,\"topicName\":\"设计\",\"internetPopularity\":144,\"salesQuantity\":69,\"bookAmount\":88},{\"topicId\":726,\"topicName\":\"旅游\",\"internetPopularity\":104,\"salesQuantity\":26,\"bookAmount\":51},{\"topicId\":16088,\"topicName\":\"生命\",\"internetPopularity\":150,\"salesQuantity\":4,\"bookAmount\":4},{\"topicId\":11224,\"topicName\":\"创意\",\"internetPopularity\":124,\"salesQuantity\":8,\"bookAmount\":12},{\"topicId\":49627,\"topicName\":\"作品集\",\"internetPopularity\":81,\"salesQuantity\":193,\"bookAmount\":189},{\"topicId\":50907,\"topicName\":\"企业管理\",\"internetPopularity\":71,\"salesQuantity\":91,\"bookAmount\":121},{\"topicId\":14044,\"topicName\":\"诗集\",\"internetPopularity\":52,\"salesQuantity\":106,\"bookAmount\":119},{\"topicId\":17373,\"topicName\":\"日本\",\"internetPopularity\":94,\"salesQuantity\":98,\"bookAmount\":92},{\"topicId\":10719,\"topicName\":\"机械\",\"internetPopularity\":120,\"salesQuantity\":34,\"bookAmount\":26},{\"topicId\":10208,\"topicName\":\"初中\",\"internetPopularity\":91,\"salesQuantity\":191,\"bookAmount\":193},{\"topicId\":50144,\"topicName\":\"阅读课\",\"internetPopularity\":42,\"salesQuantity\":187,\"bookAmount\":129},{\"topicId\":47841,\"topicName\":\"习题集\",\"internetPopularity\":44,\"salesQuantity\":195,\"bookAmount\":171},{\"topicId\":5345,\"topicName\":\"传记\",\"internetPopularity\":69,\"salesQuantity\":93,\"bookAmount\":115},{\"topicId\":38626,\"topicName\":\"中篇小说\",\"internetPopularity\":36,\"salesQuantity\":132,\"bookAmount\":141},{\"topicId\":28644,\"topicName\":\"中学物理课\",\"internetPopularity\":24,\"salesQuantity\":128,\"bookAmount\":101},{\"topicId\":18661,\"topicName\":\"音乐\",\"internetPopularity\":173,\"salesQuantity\":65,\"bookAmount\":55},{\"topicId\":39654,\"topicName\":\"中国历史\",\"internetPopularity\":88,\"salesQuantity\":118,\"bookAmount\":113},{\"topicId\":231,\"topicName\":\"手工\",\"internetPopularity\":126,\"salesQuantity\":20,\"bookAmount\":8},{\"topicId\":8175,\"topicName\":\"商业\",\"internetPopularity\":136,\"salesQuantity\":14,\"bookAmount\":22},{\"topicId\":28918,\"topicName\":\"中学语文课\",\"internetPopularity\":22,\"salesQuantity\":136,\"bookAmount\":105},{\"topicId\":26874,\"topicName\":\"英语课\",\"internetPopularity\":46,\"salesQuantity\":179,\"bookAmount\":173},{\"topicId\":54014,\"topicName\":\"儿童读物\",\"internetPopularity\":48,\"salesQuantity\":163,\"bookAmount\":163},{\"topicId\":3327,\"topicName\":\"小学\",\"internetPopularity\":82,\"salesQuantity\":200,\"bookAmount\":196}],\"maxBookAmount\":200,\"minBookAmount\":1,\"maxInternetPopularity\":200,\"minInternetPopularity\":1,\"maxSalesQuantity\":200,\"minSalesQuantity\":1},\"encrypt\":false}', checkSQL='null'}"},{"name":"body","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"competeTopicDTOS\":null,\"maxBookAmount\":null,\"minBookAmount\":null,\"maxInternetPopularity\":null,\"minInternetPopularity\":null,\"maxSalesQuantity\":null,\"minSalesQuantity\":null},\"encrypt\":false}"}],"start":1678785685106,"stop":1678785685107},{"name":"添加回写内容","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"rowNum","value":"21"},{"name":"cellNum","value":"5"},{"name":"body","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"competeTopicDTOS\":null,\"maxBookAmount\":null,\"minBookAmount\":null,\"maxInternetPopularity\":null,\"minInternetPopularity\":null,\"maxSalesQuantity\":null,\"minSalesQuantity\":null},\"encrypt\":false}"}],"start":1678785685107,"stop":1678785685107}],"attachments":[],"parameters":[{"name":"type","value":"phone"},{"name":"version","value":"1.1.1"},{"name":"arg1","value":"Case{id='21', desc='【选题洞察】选题竞争态势>按互联网热度', params='{\"oneCategoryId\":-1,\"twoCategoryId\":-1,\"currentPage\":1,\"numPerPage\":10,\"periodType\":\"month\",\"timeValue\":[\"2022-01-01 \",\" 2022-01-31\"],\"uuid\":\"TV5kex5r\",\"startMonth\":\"2022-01-01 \",\"endMonth\":\" 2022-01-31\",\"competeSortType\":1}', apiID='17', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"competeTopicDTOS\":[{\"topicId\":1281,\"topicName\":\"汉语\",\"internetPopularity\":73,\"salesQuantity\":122,\"bookAmount\":143},{\"topicId\":3843,\"topicName\":\"心理\",\"internetPopularity\":181,\"salesQuantity\":16,\"bookAmount\":6},{\"topicId\":18184,\"topicName\":\"美国\",\"internetPopularity\":171,\"salesQuantity\":114,\"bookAmount\":127},{\"topicId\":4362,\"topicName\":\"考试\",\"internetPopularity\":164,\"salesQuantity\":12,\"bookAmount\":10},{\"topicId\":6412,\"topicName\":\"绘画\",\"internetPopularity\":142,\"salesQuantity\":55,\"bookAmount\":69},{\"topicId\":23054,\"topicName\":\"图画故事\",\"internetPopularity\":13,\"salesQuantity\":169,\"bookAmount\":195},{\"topicId\":12816,\"topicName\":\"速算\",\"internetPopularity\":67,\"salesQuantity\":153,\"bookAmount\":94},{\"topicId\":6929,\"topicName\":\"投资\",\"internetPopularity\":122,\"salesQuantity\":77,\"bookAmount\":71},{\"topicId\":3345,\"topicName\":\"地理\",\"internetPopularity\":116,\"salesQuantity\":79,\"bookAmount\":63},{\"topicId\":34839,\"topicName\":\"阅读教学\",\"internetPopularity\":30,\"salesQuantity\":134,\"bookAmount\":97},{\"topicId\":29981,\"topicName\":\"散文集\",\"internetPopularity\":34,\"salesQuantity\":142,\"bookAmount\":161},{\"topicId\":10782,\"topicName\":\"童话\",\"internetPopularity\":75,\"salesQuantity\":177,\"bookAmount\":159},{\"topicId\":10273,\"topicName\":\"恋爱\",\"internetPopularity\":106,\"salesQuantity\":43,\"bookAmount\":38},{\"topicId\":34,\"topicName\":\"工作\",\"internetPopularity\":96,\"salesQuantity\":59,\"bookAmount\":61},{\"topicId\":14117,\"topicName\":\"学习\",\"internetPopularity\":197,\"salesQuantity\":6,\"bookAmount\":2},{\"topicId\":19493,\"topicName\":\"经济\",\"internetPopularity\":146,\"salesQuantity\":30,\"bookAmount\":40},{\"topicId\":23590,\"topicName\":\"短篇小说\",\"internetPopularity\":56,\"salesQuantity\":138,\"bookAmount\":133},{\"topicId\":53545,\"topicName\":\"儿童文学\",\"internetPopularity\":60,\"salesQuantity\":157,\"bookAmount\":167},{\"topicId\":2092,\"topicName\":\"生活\",\"internetPopularity\":199,\"salesQuantity\":53,\"bookAmount\":49},{\"topicId\":8754,\"topicName\":\"漫画\",\"internetPopularity\":86,\"salesQuantity\":140,\"bookAmount\":137},{\"topicId\":7735,\"topicName\":\"法国\",\"internetPopularity\":89,\"salesQuantity\":124,\"bookAmount\":93},{\"topicId\":55096,\"topicName\":\"教学参考资料\",\"internetPopularity\":18,\"salesQuantity\":173,\"bookAmount\":153},{\"topicId\":19258,\"topicName\":\"宇宙\",\"internetPopularity\":114,\"salesQuantity\":75,\"bookAmount\":65},{\"topicId\":13374,\"topicName\":\"历史\",\"internetPopularity\":195,\"salesQuantity\":83,\"bookAmount\":91},{\"topicId\":21823,\"topicName\":\"基本知识\",\"internetPopularity\":20,\"salesQuantity\":100,\"bookAmount\":147},{\"topicId\":27712,\"topicName\":\"学前教育\",\"internetPopularity\":62,\"salesQuantity\":175,\"bookAmount\":187},{\"topicId\":2113,\"topicName\":\"大学\",\"internetPopularity\":156,\"salesQuantity\":38,\"bookAmount\":17},{\"topicId\":3147,\"topicName\":\"化学\",\"internetPopularity\":98,\"salesQuantity\":67,\"bookAmount\":59},{\"topicId\":46417,\"topicName\":\"小学数学课\",\"internetPopularity\":16,\"salesQuantity\":181,\"bookAmount\":165},{\"topicId\":3155,\"topicName\":\"中国\",\"internetPopularity\":167,\"salesQuantity\":199,\"bookAmount\":200},{\"topicId\":49491,\"topicName\":\"作文课\",\"internetPopularity\":26,\"salesQuantity\":155,\"bookAmount\":145},{\"topicId\":18260,\"topicName\":\"犯罪\",\"internetPopularity\":138,\"salesQuantity\":2,\"bookAmount\":18},{\"topicId\":21594,\"topicName\":\"少儿读物\",\"internetPopularity\":21,\"salesQuantity\":146,\"bookAmount\":135},{\"topicId\":10331,\"topicName\":\"校园\",\"internetPopularity\":112,\"salesQuantity\":57,\"bookAmount\":24},{\"topicId\":7008,\"topicName\":\"研究\",\"internetPopularity\":77,\"salesQuantity\":120,\"bookAmount\":191},{\"topicId\":13671,\"topicName\":\"知识\",\"internetPopularity\":200,\"salesQuantity\":39,\"bookAmount\":43},{\"topicId\":19821,\"topicName\":\"普及读物\",\"internetPopularity\":23,\"salesQuantity\":102,\"bookAmount\":103},{\"topicId\":17264,\"topicName\":\"游戏\",\"internetPopularity\":189,\"salesQuantity\":45,\"bookAmount\":47},{\"topicId\":7281,\"topicName\":\"情感\",\"internetPopularity\":177,\"salesQuantity\":22,\"bookAmount\":30},{\"topicId\":54386,\"topicName\":\"程序设计\",\"internetPopularity\":66,\"salesQuantity\":85,\"bookAmount\":99},{\"topicId\":47219,\"topicName\":\"儿童故事\",\"internetPopularity\":54,\"salesQuantity\":171,\"bookAmount\":185},{\"topicId\":13172,\"topicName\":\"教育\",\"internetPopularity\":191,\"salesQuantity\":41,\"bookAmount\":53},{\"topicId\":9846,\"topicName\":\"物理\",\"internetPopularity\":140,\"salesQuantity\":49,\"bookAmount\":28},{\"topicId\":4215,\"topicName\":\"案件\",\"internetPopularity\":160,\"salesQuantity\":10,\"bookAmount\":16},{\"topicId\":48505,\"topicName\":\"中学数学课\",\"internetPopularity\":17,\"salesQuantity\":159,\"bookAmount\":155},{\"topicId\":8573,\"topicName\":\"楷书\",\"internetPopularity\":79,\"salesQuantity\":95,\"bookAmount\":107},{\"topicId\":2943,\"topicName\":\"科学\",\"internetPopularity\":193,\"salesQuantity\":18,\"bookAmount\":20},{\"topicId\":48005,\"topicName\":\"连环画\",\"internetPopularity\":64,\"salesQuantity\":110,\"bookAmount\":131},{\"topicId\":54150,\"topicName\":\"数学课\",\"internetPopularity\":38,\"salesQuantity\":123,\"bookAmount\":95},{\"topicId\":397,\"topicName\":\"数学\",\"internetPopularity\":108,\"salesQuantity\":104,\"bookAmount\":89},{\"topicId\":1422,\"topicName\":\"爱情\",\"internetPopularity\":100,\"salesQuantity\":32,\"bookAmount\":42},{\"topicId\":3217,\"topicName\":\"人物\",\"internetPopularity\":158,\"salesQuantity\":36,\"bookAmount\":45},{\"topicId\":12957,\"topicName\":\"高中\",\"internetPopularity\":132,\"salesQuantity\":167,\"bookAmount\":177},{\"topicId\":27805,\"topicName\":\"资格考试\",\"internetPopularity\":40,\"salesQuantity\":130,\"bookAmount\":117},{\"topicId\":16800,\"topicName\":\"动画\",\"internetPopularity\":187,\"salesQuantity\":81,\"bookAmount\":77},{\"topicId\":10915,\"topicName\":\"英语\",\"internetPopularity\":185,\"salesQuantity\":185,\"bookAmount\":181},{\"topicId\":37796,\"topicName\":\"长篇小说\",\"internetPopularity\":37,\"salesQuantity\":196,\"bookAmount\":197},{\"topicId\":25254,\"topicName\":\"科学知识\",\"internetPopularity\":58,\"salesQuantity\":144,\"bookAmount\":109},{\"topicId\":24233,\"topicName\":\"智力游戏\",\"internetPopularity\":50,\"salesQuantity\":116,\"bookAmount\":139},{\"topicId\":41387,\"topicName\":\"高等学校\",\"internetPopularity\":14,\"salesQuantity\":148,\"bookAmount\":183},{\"topicId\":4269,\"topicName\":\"健康\",\"internetPopularity\":179,\"salesQuantity\":24,\"bookAmount\":34},{\"topicId\":1197,\"topicName\":\"艺术\",\"internetPopularity\":148,\"salesQuantity\":61,\"bookAmount\":73},{\"topicId\":3247,\"topicName\":\"金融\",\"internetPopularity\":134,\"salesQuantity\":47,\"bookAmount\":67},{\"topicId\":8370,\"topicName\":\"汽车\",\"internetPopularity\":102,\"salesQuantity\":71,\"bookAmount\":85},{\"topicId\":35763,\"topicName\":\"通俗读物\",\"internetPopularity\":15,\"salesQuantity\":152,\"bookAmount\":169},{\"topicId\":40885,\"topicName\":\"小说集\",\"internetPopularity\":28,\"salesQuantity\":126,\"bookAmount\":149},{\"topicId\":181,\"topicName\":\"汉字\",\"internetPopularity\":84,\"salesQuantity\":108,\"bookAmount\":111},{\"topicId\":39608,\"topicName\":\"儿童小说\",\"internetPopularity\":19,\"salesQuantity\":161,\"bookAmount\":151},{\"topicId\":17848,\"topicName\":\"高考\",\"internetPopularity\":154,\"salesQuantity\":51,\"bookAmount\":32},{\"topicId\":21688,\"topicName\":\"心理学\",\"internetPopularity\":128,\"salesQuantity\":87,\"bookAmount\":79},{\"topicId\":8636,\"topicName\":\"实验\",\"internetPopularity\":110,\"salesQuantity\":89,\"bookAmount\":75},{\"topicId\":12990,\"topicName\":\"文学\",\"internetPopularity\":152,\"salesQuantity\":63,\"bookAmount\":57},{\"topicId\":11206,\"topicName\":\"文化\",\"internetPopularity\":175,\"salesQuantity\":73,\"bookAmount\":81},{\"topicId\":454,\"topicName\":\"生物\",\"internetPopularity\":162,\"salesQuantity\":28,\"bookAmount\":37},{\"topicId\":31694,\"topicName\":\"小学语文课\",\"internetPopularity\":32,\"salesQuantity\":189,\"bookAmount\":157},{\"topicId\":14544,\"topicName\":\"英国\",\"internetPopularity\":93,\"salesQuantity\":150,\"bookAmount\":123},{\"topicId\":11989,\"topicName\":\"课程\",\"internetPopularity\":118,\"salesQuantity\":97,\"bookAmount\":83},{\"topicId\":3798,\"topicName\":\"设计\",\"internetPopularity\":144,\"salesQuantity\":69,\"bookAmount\":88},{\"topicId\":726,\"topicName\":\"旅游\",\"internetPopularity\":104,\"salesQuantity\":26,\"bookAmount\":51},{\"topicId\":16088,\"topicName\":\"生命\",\"internetPopularity\":150,\"salesQuantity\":4,\"bookAmount\":4},{\"topicId\":11224,\"topicName\":\"创意\",\"internetPopularity\":124,\"salesQuantity\":8,\"bookAmount\":12},{\"topicId\":49627,\"topicName\":\"作品集\",\"internetPopularity\":81,\"salesQuantity\":193,\"bookAmount\":189},{\"topicId\":50907,\"topicName\":\"企业管理\",\"internetPopularity\":71,\"salesQuantity\":91,\"bookAmount\":121},{\"topicId\":14044,\"topicName\":\"诗集\",\"internetPopularity\":52,\"salesQuantity\":106,\"bookAmount\":119},{\"topicId\":17373,\"topicName\":\"日本\",\"internetPopularity\":94,\"salesQuantity\":98,\"bookAmount\":92},{\"topicId\":10719,\"topicName\":\"机械\",\"internetPopularity\":120,\"salesQuantity\":34,\"bookAmount\":26},{\"topicId\":10208,\"topicName\":\"初中\",\"internetPopularity\":91,\"salesQuantity\":191,\"bookAmount\":193},{\"topicId\":50144,\"topicName\":\"阅读课\",\"internetPopularity\":42,\"salesQuantity\":187,\"bookAmount\":129},{\"topicId\":47841,\"topicName\":\"习题集\",\"internetPopularity\":44,\"salesQuantity\":195,\"bookAmount\":171},{\"topicId\":5345,\"topicName\":\"传记\",\"internetPopularity\":69,\"salesQuantity\":93,\"bookAmount\":115},{\"topicId\":38626,\"topicName\":\"中篇小说\",\"internetPopularity\":36,\"salesQuantity\":132,\"bookAmount\":141},{\"topicId\":28644,\"topicName\":\"中学物理课\",\"internetPopularity\":24,\"salesQuantity\":128,\"bookAmount\":101},{\"topicId\":18661,\"topicName\":\"音乐\",\"internetPopularity\":173,\"salesQuantity\":65,\"bookAmount\":55},{\"topicId\":39654,\"topicName\":\"中国历史\",\"internetPopularity\":88,\"salesQuantity\":118,\"bookAmount\":113},{\"topicId\":231,\"topicName\":\"手工\",\"internetPopularity\":126,\"salesQuantity\":20,\"bookAmount\":8},{\"topicId\":8175,\"topicName\":\"商业\",\"internetPopularity\":136,\"salesQuantity\":14,\"bookAmount\":22},{\"topicId\":28918,\"topicName\":\"中学语文课\",\"internetPopularity\":22,\"salesQuantity\":136,\"bookAmount\":105},{\"topicId\":26874,\"topicName\":\"英语课\",\"internetPopularity\":46,\"salesQuantity\":179,\"bookAmount\":173},{\"topicId\":54014,\"topicName\":\"儿童读物\",\"internetPopularity\":48,\"salesQuantity\":163,\"bookAmount\":163},{\"topicId\":3327,\"topicName\":\"小学\",\"internetPopularity\":82,\"salesQuantity\":200,\"bookAmount\":196}],\"maxBookAmount\":200,\"minBookAmount\":1,\"maxInternetPopularity\":200,\"minInternetPopularity\":1,\"maxSalesQuantity\":200,\"minSalesQuantity\":1},\"encrypt\":false}', checkSQL='null'}"},{"name":"arg0","value":"com.lemon.pojo.API@7f3ca64a"}],"start":1678785684899,"stop":1678785685107}
\ No newline at end of file
{"uuid":"7fa3c5d4-ff6e-4576-aba2-97ce87b57df1","historyId":"7566a755e3f49c530d81b08aae963dd2","fullName":"com.lemon.cases.RaysDataCase.testGetHomePageTopicWarn1","labels":[{"name":"package","value":"com.lemon.cases.RaysDataCase"},{"name":"testClass","value":"com.lemon.cases.RaysDataCase"},{"name":"testMethod","value":"testGetHomePageTopicWarn1"},{"name":"parentSuite","value":"理工数传"},{"name":"suite","value":"睿思数据"},{"name":"subSuite","value":"com.lemon.cases.RaysDataCase"},{"name":"host","value":"Ray-MacBook-Pro-2.local"},{"name":"thread","value":"15239@Ray-MacBook-Pro-2.local.main(1)"},{"name":"framework","value":"testng"},{"name":"language","value":"java"}],"links":[],"name":"获取我的主页3","status":"passed","statusDetails":{"known":false,"muted":false,"flaky":false},"stage":"finished","description":"获取我的主页3","steps":[{"name":"参数化替换","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"source","value":"null"}],"start":1678785686418,"stop":1678785686418},{"name":"参数化替换","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"source","value":"null"}],"start":1678785686418,"stop":1678785686418},{"name":"接口调用方法","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"api","value":"com.lemon.pojo.API@4f93bf0a"},{"name":"cas","value":"Case{id='13', desc='获取主页面信息3', params='null', apiID='9', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"encrypt\":false}', checkSQL='null'}"},{"name":"isAuthorization","value":"true"}],"start":1678785686418,"stop":1678785686524},{"name":"响应结果进行断言","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"cas","value":"Case{id='13', desc='获取主页面信息3', params='null', apiID='9', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"encrypt\":false}', checkSQL='null'}"},{"name":"body","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"bookId\":97075,\"createDate\":\"02月14日\",\"commentAmountRate\":0.00,\"salesPriceRankRate\":0.00,\"salesQuantityRate\":0.00},\"encrypt\":false}"}],"start":1678785686524,"stop":1678785686524},{"name":"添加回写内容","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"rowNum","value":"13"},{"name":"cellNum","value":"5"},{"name":"body","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"bookId\":97075,\"createDate\":\"02月14日\",\"commentAmountRate\":0.00,\"salesPriceRankRate\":0.00,\"salesQuantityRate\":0.00},\"encrypt\":false}"}],"start":1678785686524,"stop":1678785686524}],"attachments":[],"parameters":[{"name":"type","value":"phone"},{"name":"version","value":"1.1.1"},{"name":"arg1","value":"Case{id='13', desc='获取主页面信息3', params='null', apiID='9', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"encrypt\":false}', checkSQL='null'}"},{"name":"arg0","value":"com.lemon.pojo.API@4f93bf0a"}],"start":1678785686418,"stop":1678785686525}
\ No newline at end of file
{"uuid":"87555d90-8d3f-4c94-8d8d-f84d01e42f9d","name":"睿思数据","children":["3b613eec-25e9-4afd-997b-23c2482f1b00","ff2a6c5e-060d-40b9-a553-ae4ba962aa34","b80c5688-f8ed-4878-b15a-9f131c89e558","9ec336ab-6bc2-4048-a9df-e2376fccc192","117dc2d8-5bc8-4b57-b1d5-db4486f23f94","6481fd8f-707b-4ba3-8077-2568abdf17ff","41f93327-2f72-4d9d-b65c-e2d3bb20714e","79493acf-5eef-4b8e-b849-c2bd8d0a0f19","73d95d57-e80b-45a7-8c2c-8a487bae9eaa","c69a1cdc-2589-4d16-8659-ab071656edab","9c13108f-7c58-45ab-aefd-7bc7f6b1c82a","cfc94350-16ac-4724-98a3-dfbeb91d724d","47734887-f348-4ed7-beee-ad4e72034f92","a047256e-f978-4844-9487-b466a56a8a0f","7fa3c5d4-ff6e-4576-aba2-97ce87b57df1","c44b35af-50d7-4fd4-9fa9-f4223fbf0546","645fde05-1acb-4dcd-87da-edd1305866fa","c2f81092-f653-459b-adc4-3c7beb8980fe","aa9f4860-eda8-420a-9071-da6a3aef35ae","3868fa45-9d16-47ce-a50e-88ef0c44bc7b","28975414-3ad3-4d6f-bc98-bae9393659fe","9689091b-799d-4d36-b257-0f6742c35051","54ae0f4f-b863-4458-8556-cde575c5c370","8d803a9a-7d14-4df1-a457-2db9b8593c21","3027ba6b-ba76-475d-9533-5067b70ceba6","93beb90a-6b52-4253-997e-30e41dd5a22a","945e4540-0813-441a-8461-4f899f787d2d"],"befores":[],"afters":[],"start":1678785682723,"stop":1678785688987}
\ No newline at end of file
{"uuid":"8d803a9a-7d14-4df1-a457-2db9b8593c21","historyId":"df4cdf8a72496c4d8f42bc1bdffc13c3","fullName":"com.lemon.cases.RaysDataCase.testListHeatTopic4Report","labels":[{"name":"package","value":"com.lemon.cases.RaysDataCase"},{"name":"testClass","value":"com.lemon.cases.RaysDataCase"},{"name":"testMethod","value":"testListHeatTopic4Report"},{"name":"parentSuite","value":"理工数传"},{"name":"suite","value":"睿思数据"},{"name":"subSuite","value":"com.lemon.cases.RaysDataCase"},{"name":"host","value":"Ray-MacBook-Pro-2.local"},{"name":"thread","value":"15239@Ray-MacBook-Pro-2.local.main(1)"},{"name":"framework","value":"testng"},{"name":"language","value":"java"}],"links":[],"name":"【选题洞察】潜力增长选题","status":"passed","statusDetails":{"known":false,"muted":false,"flaky":false},"stage":"finished","description":"【选题洞察】潜力增长选题","steps":[{"name":"参数化替换","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"source","value":"{\"currentPage\":1,\"numPerPage\":10,\"oneCategoryId\":-1,\"twoCategoryId\":-1,\"periodType\":\"month\",\"timeValue\":[\"2022-01-01 \",\" 2022-01-31\"],\"uuid\":\"TV5kex5r\",\"startMonth\":\"2022-01-01 \",\"endMonth\":\" 2022-01-31\",\"potentialSortType\":2}"}],"start":1678785688501,"stop":1678785688501},{"name":"参数化替换","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"source","value":"null"}],"start":1678785688501,"stop":1678785688501},{"name":"接口调用方法","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"api","value":"com.lemon.pojo.API@4d464510"},{"name":"cas","value":"Case{id='24', desc='【选题洞察】潜力增长选题>评分低综合热度高', params='{\"currentPage\":1,\"numPerPage\":10,\"oneCategoryId\":-1,\"twoCategoryId\":-1,\"periodType\":\"month\",\"timeValue\":[\"2022-01-01 \",\" 2022-01-31\"],\"uuid\":\"TV5kex5r\",\"startMonth\":\"2022-01-01 \",\"endMonth\":\" 2022-01-31\",\"potentialSortType\":2}', apiID='18', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"total\":26813,\"list\":[{\"topicId\":7956,\"topicName\":\"蒙医\",\"internetPopularity\":0.0000,\"comprehensivePopularity\":331.0000,\"avgSalesQuantity\":4.00000000,\"bookAmount\":103,\"commentScore\":0.12,\"bookDTOS\":[{\"topicId\":7956,\"bookId\":698941,\"bookName\":\"蒙医医疗技术操作规范\",\"bookUrl\":\"https://book.douban.com/subject/35161494/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/61ea518b582b8274ab2d7c05cbfab870.jpg\"},{\"topicId\":7956,\"bookId\":877991,\"bookName\":\"蒙医心身互动疗法\",\"bookUrl\":\"https://book.douban.com/subject/30815900/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/969960b234b12d66f468b0b6cf84812d.jpg\"},{\"topicId\":7956,\"bookId\":1382343,\"bookName\":\"蒙医学针法、刺法\",\"bookUrl\":\"https://book.douban.com/subject/34468552/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/7b3a4264fd694102e9e5b80deee07ed1.jpg\"}]},{\"topicId\":70517,\"topicName\":\"蒙古语(中国少数民族语言)\",\"internetPopularity\":0.0000,\"comprehensivePopularity\":1698.0000,\"avgSalesQuantity\":17.00000000,\"bookAmount\":125,\"commentScore\":0.15,\"bookDTOS\":[{\"topicId\":70517,\"bookId\":443927,\"bookName\":\"学生蒙古语文多功能词典\",\"bookUrl\":\"\",\"coverPicture\":\"\"},{\"topicId\":70517,\"bookId\":1226248,\"bookName\":\"学学语言\",\"bookUrl\":\"\",\"coverPicture\":\"\"},{\"topicId\":70517,\"bookId\":1227448,\"bookName\":\"查干套鲁盖读写练习册\",\"bookUrl\":\"https://book.douban.com/subject/26184205/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/2d276a070ee104e25f64a21becff72b2.jpg\"}]},{\"topicId\":6501,\"topicName\":\"头痛\",\"internetPopularity\":17692.8000,\"comprehensivePopularity\":8912.9000,\"avgSalesQuantity\":3.00000000,\"bookAmount\":28,\"commentScore\":0.24,\"bookDTOS\":[{\"topicId\":6501,\"bookId\":861611,\"bookName\":\"头痛诊治19讲\",\"bookUrl\":\"https://book.douban.com/subject/34949184/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/ebad68083c73402eddc2e15effe8d04f.jpg\"},{\"topicId\":6501,\"bookId\":987811,\"bookName\":\"头痛中医特效疗法\",\"bookUrl\":\"https://book.douban.com/subject/33446983/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/01769d1e9a1f6eaf301e2f0ea6f52da7.jpg\"},{\"topicId\":6501,\"bookId\":1240560,\"bookName\":\"10分钟中医保健家庭疗法头痛缓解术\",\"bookUrl\":\"https://book.douban.com/subject/35107591/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/d3f3a49dd3fa74d34f1e10e9b07a2189.jpg\"}]},{\"topicId\":19794,\"topicName\":\"指(趾)甲\",\"internetPopularity\":0.0000,\"comprehensivePopularity\":27.0000,\"avgSalesQuantity\":2.00000000,\"bookAmount\":21,\"commentScore\":0.37,\"bookDTOS\":[{\"topicId\":19794,\"bookId\":324631,\"bookName\":\"专业美甲师一本就够\",\"bookUrl\":\"https://book.douban.com/subject/30809618/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/1a0e61391ce4e1ccfd6a7edf31c652c5.jpg\"},{\"topicId\":19794,\"bookId\":894019,\"bookName\":\"李学诚指甲诊病\",\"bookUrl\":\"https://book.douban.com/subject/6813236/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/0d6654b564cc4c1eb52e1dcf1e2fe777.jpg\"},{\"topicId\":19794,\"bookId\":973468,\"bookName\":\"美甲基本技能\",\"bookUrl\":\"https://book.douban.com/subject/3166144/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/8c7396519a1506e08bff1997f0a2c383.jpg\"}]},{\"topicId\":18796,\"topicName\":\"山区\",\"internetPopularity\":8569.0000,\"comprehensivePopularity\":4318.5000,\"avgSalesQuantity\":3.00000000,\"bookAmount\":14,\"commentScore\":0.40,\"bookDTOS\":[{\"topicId\":18796,\"bookId\":104006,\"bookName\":\"大横断\",\"bookUrl\":\"https://book.douban.com/subject/30365061/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/8b81924788baa0d3a48d5070e655823c.jpg\"},{\"topicId\":18796,\"bookId\":503353,\"bookName\":\"山区儿童心理研究\",\"bookUrl\":\"https://book.douban.com/subject/34793115/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/0819e891502c40baeaf599b56a6d29ce.jpg\"},{\"topicId\":18796,\"bookId\":787050,\"bookName\":\"山区管道建设风险分析与保险应对\",\"bookUrl\":\"https://book.douban.com/subject/34779033/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/07aa663f6f3781dbba31c780ec81b31f.jpg\"}]},{\"topicId\":11140,\"topicName\":\"灾区\",\"internetPopularity\":1597.2000,\"comprehensivePopularity\":821.6000,\"avgSalesQuantity\":3.00000000,\"bookAmount\":9,\"commentScore\":0.41,\"bookDTOS\":[{\"topicId\":11140,\"bookId\":153314,\"bookName\":\"我的地震故事\",\"bookUrl\":\"https://book.douban.com/subject/4931878/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/82572e31734ed2ba4b4668b8d045d5a9.jpg\"},{\"topicId\":11140,\"bookId\":705423,\"bookName\":\"洪涝灾害疾病中医药防治手册\",\"bookUrl\":\"https://book.douban.com/subject/35648957/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/ad88f5cecf9d7706ab90bdb8906adb8d.jpg\"},{\"topicId\":11140,\"bookId\":1260485,\"bookName\":\"灾后风险与危机应对\",\"bookUrl\":\"https://book.douban.com/subject/35462967/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/5ef2f6b5b756c00ec0d80f89c1be5151.jpg\"}]},{\"topicId\":44588,\"topicName\":\"自然课\",\"internetPopularity\":0.0000,\"comprehensivePopularity\":153.5000,\"avgSalesQuantity\":13.00000000,\"bookAmount\":21,\"commentScore\":0.43,\"bookDTOS\":[{\"topicId\":44588,\"bookId\":173039,\"bookName\":\"自然(牛津上海版)课本 三年级第二学期\",\"bookUrl\":\"https://book.douban.com/subject/5918012/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/94e83265a071e336b9cc657f16964482.jpg\"},{\"topicId\":44588,\"bookId\":173060,\"bookName\":\"自然(牛津上海版)课本四年级第二学期\",\"bookUrl\":\"\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/bbfaa9fe57444f2aaf5d8c4917c6f235.jpg\"},{\"topicId\":44588,\"bookId\":1296237,\"bookName\":\"行走中的自然课程\",\"bookUrl\":\"\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/5be5da1ed7cc670887bfb3a6a2285540.jpg\"}]},{\"topicId\":42085,\"topicName\":\"经济带\",\"internetPopularity\":0.0000,\"comprehensivePopularity\":58.5000,\"avgSalesQuantity\":6.00000000,\"bookAmount\":11,\"commentScore\":0.45,\"bookDTOS\":[{\"topicId\":42085,\"bookId\":254259,\"bookName\":\"世界是通的\",\"bookUrl\":\"https://book.douban.com/subject/26818888/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/bde71e7a48c5fe5d720e29e72f7b15f0.jpg\"},{\"topicId\":42085,\"bookId\":535714,\"bookName\":\"丝绸之路经济带生物多样性经济价值研究\",\"bookUrl\":\"https://book.douban.com/subject/30923836/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/8c5490964d16baed1169755fd8b34f4f.jpg\"},{\"topicId\":42085,\"bookId\":1252153,\"bookName\":\"“丝绸之路经济带”贸易投资便利化法律框架研究\",\"bookUrl\":\"https://book.douban.com/subject/30587216/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/fe9a0844a40f1bd42fef35ac17e755c0.jpg\"}]},{\"topicId\":41753,\"topicName\":\"陕西省\",\"internetPopularity\":57.6000,\"comprehensivePopularity\":243.8000,\"avgSalesQuantity\":20.00000000,\"bookAmount\":18,\"commentScore\":0.47,\"bookDTOS\":[{\"topicId\":41753,\"bookId\":225552,\"bookName\":\"陕西省地图集\",\"bookUrl\":\"https://book.douban.com/subject/35857957/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/b31ed7e18abd4208c0ff5cb8da53889b.jpg\"},{\"topicId\":41753,\"bookId\":594213,\"bookName\":\"陕西寻宝记\",\"bookUrl\":\"https://book.douban.com/subject/30524952/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/d894cca173ed965b9644c3516b60f269.jpg\"},{\"topicId\":41753,\"bookId\":981368,\"bookName\":\"陕西\",\"bookUrl\":\"https://book.douban.com/subject/30587460/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/aadf5531cb599521a8d1e68448e8e04d.jpg\"}]},{\"topicId\":22821,\"topicName\":\"民族团结\",\"internetPopularity\":75.2000,\"comprehensivePopularity\":57.6000,\"avgSalesQuantity\":1.00000000,\"bookAmount\":14,\"commentScore\":0.47,\"bookDTOS\":[{\"topicId\":22821,\"bookId\":28979,\"bookName\":\"新疆的若干历史问题\",\"bookUrl\":\"https://book.douban.com/subject/34798574/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/622cbb6576e1c4b1e4e10e9951e205f3.jpg\"},{\"topicId\":22821,\"bookId\":545814,\"bookName\":\"心连心 一家亲\",\"bookUrl\":\"https://book.douban.com/subject/35007704/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/27fb6d071338fc6ec5c88462176ded82.jpg\"},{\"topicId\":22821,\"bookId\":1327975,\"bookName\":\"民族团结云南经验\",\"bookUrl\":\"https://book.douban.com/subject/30879054/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/560d15613db6c25491842ee5e191c68a.jpg\"}]}],\"pageNum\":1,\"pageSize\":10,\"size\":10,\"startRow\":1,\"endRow\":10,\"pages\":2682,\"prePage\":0,\"nextPage\":2,\"isFirstPage\":true,\"isLastPage\":false,\"hasPreviousPage\":false,\"hasNextPage\":true,\"navigatePages\":8,\"navigatepageNums\":[1,2,3,4,5,6,7,8],\"navigateFirstPage\":1,\"navigateLastPage\":8},\"encrypt\":false}', checkSQL='null'}"},{"name":"isAuthorization","value":"true"}],"start":1678785688501,"stop":1678785688620},{"name":"响应结果进行断言","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"cas","value":"Case{id='24', desc='【选题洞察】潜力增长选题>评分低综合热度高', params='{\"currentPage\":1,\"numPerPage\":10,\"oneCategoryId\":-1,\"twoCategoryId\":-1,\"periodType\":\"month\",\"timeValue\":[\"2022-01-01 \",\" 2022-01-31\"],\"uuid\":\"TV5kex5r\",\"startMonth\":\"2022-01-01 \",\"endMonth\":\" 2022-01-31\",\"potentialSortType\":2}', apiID='18', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"total\":26813,\"list\":[{\"topicId\":7956,\"topicName\":\"蒙医\",\"internetPopularity\":0.0000,\"comprehensivePopularity\":331.0000,\"avgSalesQuantity\":4.00000000,\"bookAmount\":103,\"commentScore\":0.12,\"bookDTOS\":[{\"topicId\":7956,\"bookId\":698941,\"bookName\":\"蒙医医疗技术操作规范\",\"bookUrl\":\"https://book.douban.com/subject/35161494/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/61ea518b582b8274ab2d7c05cbfab870.jpg\"},{\"topicId\":7956,\"bookId\":877991,\"bookName\":\"蒙医心身互动疗法\",\"bookUrl\":\"https://book.douban.com/subject/30815900/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/969960b234b12d66f468b0b6cf84812d.jpg\"},{\"topicId\":7956,\"bookId\":1382343,\"bookName\":\"蒙医学针法、刺法\",\"bookUrl\":\"https://book.douban.com/subject/34468552/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/7b3a4264fd694102e9e5b80deee07ed1.jpg\"}]},{\"topicId\":70517,\"topicName\":\"蒙古语(中国少数民族语言)\",\"internetPopularity\":0.0000,\"comprehensivePopularity\":1698.0000,\"avgSalesQuantity\":17.00000000,\"bookAmount\":125,\"commentScore\":0.15,\"bookDTOS\":[{\"topicId\":70517,\"bookId\":443927,\"bookName\":\"学生蒙古语文多功能词典\",\"bookUrl\":\"\",\"coverPicture\":\"\"},{\"topicId\":70517,\"bookId\":1226248,\"bookName\":\"学学语言\",\"bookUrl\":\"\",\"coverPicture\":\"\"},{\"topicId\":70517,\"bookId\":1227448,\"bookName\":\"查干套鲁盖读写练习册\",\"bookUrl\":\"https://book.douban.com/subject/26184205/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/2d276a070ee104e25f64a21becff72b2.jpg\"}]},{\"topicId\":6501,\"topicName\":\"头痛\",\"internetPopularity\":17692.8000,\"comprehensivePopularity\":8912.9000,\"avgSalesQuantity\":3.00000000,\"bookAmount\":28,\"commentScore\":0.24,\"bookDTOS\":[{\"topicId\":6501,\"bookId\":861611,\"bookName\":\"头痛诊治19讲\",\"bookUrl\":\"https://book.douban.com/subject/34949184/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/ebad68083c73402eddc2e15effe8d04f.jpg\"},{\"topicId\":6501,\"bookId\":987811,\"bookName\":\"头痛中医特效疗法\",\"bookUrl\":\"https://book.douban.com/subject/33446983/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/01769d1e9a1f6eaf301e2f0ea6f52da7.jpg\"},{\"topicId\":6501,\"bookId\":1240560,\"bookName\":\"10分钟中医保健家庭疗法头痛缓解术\",\"bookUrl\":\"https://book.douban.com/subject/35107591/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/d3f3a49dd3fa74d34f1e10e9b07a2189.jpg\"}]},{\"topicId\":19794,\"topicName\":\"指(趾)甲\",\"internetPopularity\":0.0000,\"comprehensivePopularity\":27.0000,\"avgSalesQuantity\":2.00000000,\"bookAmount\":21,\"commentScore\":0.37,\"bookDTOS\":[{\"topicId\":19794,\"bookId\":324631,\"bookName\":\"专业美甲师一本就够\",\"bookUrl\":\"https://book.douban.com/subject/30809618/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/1a0e61391ce4e1ccfd6a7edf31c652c5.jpg\"},{\"topicId\":19794,\"bookId\":894019,\"bookName\":\"李学诚指甲诊病\",\"bookUrl\":\"https://book.douban.com/subject/6813236/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/0d6654b564cc4c1eb52e1dcf1e2fe777.jpg\"},{\"topicId\":19794,\"bookId\":973468,\"bookName\":\"美甲基本技能\",\"bookUrl\":\"https://book.douban.com/subject/3166144/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/8c7396519a1506e08bff1997f0a2c383.jpg\"}]},{\"topicId\":18796,\"topicName\":\"山区\",\"internetPopularity\":8569.0000,\"comprehensivePopularity\":4318.5000,\"avgSalesQuantity\":3.00000000,\"bookAmount\":14,\"commentScore\":0.40,\"bookDTOS\":[{\"topicId\":18796,\"bookId\":104006,\"bookName\":\"大横断\",\"bookUrl\":\"https://book.douban.com/subject/30365061/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/8b81924788baa0d3a48d5070e655823c.jpg\"},{\"topicId\":18796,\"bookId\":503353,\"bookName\":\"山区儿童心理研究\",\"bookUrl\":\"https://book.douban.com/subject/34793115/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/0819e891502c40baeaf599b56a6d29ce.jpg\"},{\"topicId\":18796,\"bookId\":787050,\"bookName\":\"山区管道建设风险分析与保险应对\",\"bookUrl\":\"https://book.douban.com/subject/34779033/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/07aa663f6f3781dbba31c780ec81b31f.jpg\"}]},{\"topicId\":11140,\"topicName\":\"灾区\",\"internetPopularity\":1597.2000,\"comprehensivePopularity\":821.6000,\"avgSalesQuantity\":3.00000000,\"bookAmount\":9,\"commentScore\":0.41,\"bookDTOS\":[{\"topicId\":11140,\"bookId\":153314,\"bookName\":\"我的地震故事\",\"bookUrl\":\"https://book.douban.com/subject/4931878/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/82572e31734ed2ba4b4668b8d045d5a9.jpg\"},{\"topicId\":11140,\"bookId\":705423,\"bookName\":\"洪涝灾害疾病中医药防治手册\",\"bookUrl\":\"https://book.douban.com/subject/35648957/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/ad88f5cecf9d7706ab90bdb8906adb8d.jpg\"},{\"topicId\":11140,\"bookId\":1260485,\"bookName\":\"灾后风险与危机应对\",\"bookUrl\":\"https://book.douban.com/subject/35462967/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/5ef2f6b5b756c00ec0d80f89c1be5151.jpg\"}]},{\"topicId\":44588,\"topicName\":\"自然课\",\"internetPopularity\":0.0000,\"comprehensivePopularity\":153.5000,\"avgSalesQuantity\":13.00000000,\"bookAmount\":21,\"commentScore\":0.43,\"bookDTOS\":[{\"topicId\":44588,\"bookId\":173039,\"bookName\":\"自然(牛津上海版)课本 三年级第二学期\",\"bookUrl\":\"https://book.douban.com/subject/5918012/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/94e83265a071e336b9cc657f16964482.jpg\"},{\"topicId\":44588,\"bookId\":173060,\"bookName\":\"自然(牛津上海版)课本四年级第二学期\",\"bookUrl\":\"\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/bbfaa9fe57444f2aaf5d8c4917c6f235.jpg\"},{\"topicId\":44588,\"bookId\":1296237,\"bookName\":\"行走中的自然课程\",\"bookUrl\":\"\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/5be5da1ed7cc670887bfb3a6a2285540.jpg\"}]},{\"topicId\":42085,\"topicName\":\"经济带\",\"internetPopularity\":0.0000,\"comprehensivePopularity\":58.5000,\"avgSalesQuantity\":6.00000000,\"bookAmount\":11,\"commentScore\":0.45,\"bookDTOS\":[{\"topicId\":42085,\"bookId\":254259,\"bookName\":\"世界是通的\",\"bookUrl\":\"https://book.douban.com/subject/26818888/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/bde71e7a48c5fe5d720e29e72f7b15f0.jpg\"},{\"topicId\":42085,\"bookId\":535714,\"bookName\":\"丝绸之路经济带生物多样性经济价值研究\",\"bookUrl\":\"https://book.douban.com/subject/30923836/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/8c5490964d16baed1169755fd8b34f4f.jpg\"},{\"topicId\":42085,\"bookId\":1252153,\"bookName\":\"“丝绸之路经济带”贸易投资便利化法律框架研究\",\"bookUrl\":\"https://book.douban.com/subject/30587216/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/fe9a0844a40f1bd42fef35ac17e755c0.jpg\"}]},{\"topicId\":41753,\"topicName\":\"陕西省\",\"internetPopularity\":57.6000,\"comprehensivePopularity\":243.8000,\"avgSalesQuantity\":20.00000000,\"bookAmount\":18,\"commentScore\":0.47,\"bookDTOS\":[{\"topicId\":41753,\"bookId\":225552,\"bookName\":\"陕西省地图集\",\"bookUrl\":\"https://book.douban.com/subject/35857957/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/b31ed7e18abd4208c0ff5cb8da53889b.jpg\"},{\"topicId\":41753,\"bookId\":594213,\"bookName\":\"陕西寻宝记\",\"bookUrl\":\"https://book.douban.com/subject/30524952/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/d894cca173ed965b9644c3516b60f269.jpg\"},{\"topicId\":41753,\"bookId\":981368,\"bookName\":\"陕西\",\"bookUrl\":\"https://book.douban.com/subject/30587460/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/aadf5531cb599521a8d1e68448e8e04d.jpg\"}]},{\"topicId\":22821,\"topicName\":\"民族团结\",\"internetPopularity\":75.2000,\"comprehensivePopularity\":57.6000,\"avgSalesQuantity\":1.00000000,\"bookAmount\":14,\"commentScore\":0.47,\"bookDTOS\":[{\"topicId\":22821,\"bookId\":28979,\"bookName\":\"新疆的若干历史问题\",\"bookUrl\":\"https://book.douban.com/subject/34798574/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/622cbb6576e1c4b1e4e10e9951e205f3.jpg\"},{\"topicId\":22821,\"bookId\":545814,\"bookName\":\"心连心 一家亲\",\"bookUrl\":\"https://book.douban.com/subject/35007704/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/27fb6d071338fc6ec5c88462176ded82.jpg\"},{\"topicId\":22821,\"bookId\":1327975,\"bookName\":\"民族团结云南经验\",\"bookUrl\":\"https://book.douban.com/subject/30879054/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/560d15613db6c25491842ee5e191c68a.jpg\"}]}],\"pageNum\":1,\"pageSize\":10,\"size\":10,\"startRow\":1,\"endRow\":10,\"pages\":2682,\"prePage\":0,\"nextPage\":2,\"isFirstPage\":true,\"isLastPage\":false,\"hasPreviousPage\":false,\"hasNextPage\":true,\"navigatePages\":8,\"navigatepageNums\":[1,2,3,4,5,6,7,8],\"navigateFirstPage\":1,\"navigateLastPage\":8},\"encrypt\":false}', checkSQL='null'}"},{"name":"body","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"total\":0,\"list\":[],\"pageNum\":1,\"pageSize\":10,\"size\":0,\"startRow\":0,\"endRow\":0,\"pages\":0,\"prePage\":0,\"nextPage\":0,\"isFirstPage\":true,\"isLastPage\":true,\"hasPreviousPage\":false,\"hasNextPage\":false,\"navigatePages\":8,\"navigatepageNums\":[],\"navigateFirstPage\":0,\"navigateLastPage\":0},\"encrypt\":false}"}],"start":1678785688620,"stop":1678785688620},{"name":"添加回写内容","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"rowNum","value":"24"},{"name":"cellNum","value":"5"},{"name":"body","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"total\":0,\"list\":[],\"pageNum\":1,\"pageSize\":10,\"size\":0,\"startRow\":0,\"endRow\":0,\"pages\":0,\"prePage\":0,\"nextPage\":0,\"isFirstPage\":true,\"isLastPage\":true,\"hasPreviousPage\":false,\"hasNextPage\":false,\"navigatePages\":8,\"navigatepageNums\":[],\"navigateFirstPage\":0,\"navigateLastPage\":0},\"encrypt\":false}"}],"start":1678785688620,"stop":1678785688621}],"attachments":[],"parameters":[{"name":"type","value":"phone"},{"name":"version","value":"1.1.1"},{"name":"arg1","value":"Case{id='24', desc='【选题洞察】潜力增长选题>评分低综合热度高', params='{\"currentPage\":1,\"numPerPage\":10,\"oneCategoryId\":-1,\"twoCategoryId\":-1,\"periodType\":\"month\",\"timeValue\":[\"2022-01-01 \",\" 2022-01-31\"],\"uuid\":\"TV5kex5r\",\"startMonth\":\"2022-01-01 \",\"endMonth\":\" 2022-01-31\",\"potentialSortType\":2}', apiID='18', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"total\":26813,\"list\":[{\"topicId\":7956,\"topicName\":\"蒙医\",\"internetPopularity\":0.0000,\"comprehensivePopularity\":331.0000,\"avgSalesQuantity\":4.00000000,\"bookAmount\":103,\"commentScore\":0.12,\"bookDTOS\":[{\"topicId\":7956,\"bookId\":698941,\"bookName\":\"蒙医医疗技术操作规范\",\"bookUrl\":\"https://book.douban.com/subject/35161494/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/61ea518b582b8274ab2d7c05cbfab870.jpg\"},{\"topicId\":7956,\"bookId\":877991,\"bookName\":\"蒙医心身互动疗法\",\"bookUrl\":\"https://book.douban.com/subject/30815900/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/969960b234b12d66f468b0b6cf84812d.jpg\"},{\"topicId\":7956,\"bookId\":1382343,\"bookName\":\"蒙医学针法、刺法\",\"bookUrl\":\"https://book.douban.com/subject/34468552/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/7b3a4264fd694102e9e5b80deee07ed1.jpg\"}]},{\"topicId\":70517,\"topicName\":\"蒙古语(中国少数民族语言)\",\"internetPopularity\":0.0000,\"comprehensivePopularity\":1698.0000,\"avgSalesQuantity\":17.00000000,\"bookAmount\":125,\"commentScore\":0.15,\"bookDTOS\":[{\"topicId\":70517,\"bookId\":443927,\"bookName\":\"学生蒙古语文多功能词典\",\"bookUrl\":\"\",\"coverPicture\":\"\"},{\"topicId\":70517,\"bookId\":1226248,\"bookName\":\"学学语言\",\"bookUrl\":\"\",\"coverPicture\":\"\"},{\"topicId\":70517,\"bookId\":1227448,\"bookName\":\"查干套鲁盖读写练习册\",\"bookUrl\":\"https://book.douban.com/subject/26184205/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/2d276a070ee104e25f64a21becff72b2.jpg\"}]},{\"topicId\":6501,\"topicName\":\"头痛\",\"internetPopularity\":17692.8000,\"comprehensivePopularity\":8912.9000,\"avgSalesQuantity\":3.00000000,\"bookAmount\":28,\"commentScore\":0.24,\"bookDTOS\":[{\"topicId\":6501,\"bookId\":861611,\"bookName\":\"头痛诊治19讲\",\"bookUrl\":\"https://book.douban.com/subject/34949184/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/ebad68083c73402eddc2e15effe8d04f.jpg\"},{\"topicId\":6501,\"bookId\":987811,\"bookName\":\"头痛中医特效疗法\",\"bookUrl\":\"https://book.douban.com/subject/33446983/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/01769d1e9a1f6eaf301e2f0ea6f52da7.jpg\"},{\"topicId\":6501,\"bookId\":1240560,\"bookName\":\"10分钟中医保健家庭疗法头痛缓解术\",\"bookUrl\":\"https://book.douban.com/subject/35107591/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/d3f3a49dd3fa74d34f1e10e9b07a2189.jpg\"}]},{\"topicId\":19794,\"topicName\":\"指(趾)甲\",\"internetPopularity\":0.0000,\"comprehensivePopularity\":27.0000,\"avgSalesQuantity\":2.00000000,\"bookAmount\":21,\"commentScore\":0.37,\"bookDTOS\":[{\"topicId\":19794,\"bookId\":324631,\"bookName\":\"专业美甲师一本就够\",\"bookUrl\":\"https://book.douban.com/subject/30809618/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/1a0e61391ce4e1ccfd6a7edf31c652c5.jpg\"},{\"topicId\":19794,\"bookId\":894019,\"bookName\":\"李学诚指甲诊病\",\"bookUrl\":\"https://book.douban.com/subject/6813236/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/0d6654b564cc4c1eb52e1dcf1e2fe777.jpg\"},{\"topicId\":19794,\"bookId\":973468,\"bookName\":\"美甲基本技能\",\"bookUrl\":\"https://book.douban.com/subject/3166144/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/8c7396519a1506e08bff1997f0a2c383.jpg\"}]},{\"topicId\":18796,\"topicName\":\"山区\",\"internetPopularity\":8569.0000,\"comprehensivePopularity\":4318.5000,\"avgSalesQuantity\":3.00000000,\"bookAmount\":14,\"commentScore\":0.40,\"bookDTOS\":[{\"topicId\":18796,\"bookId\":104006,\"bookName\":\"大横断\",\"bookUrl\":\"https://book.douban.com/subject/30365061/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/8b81924788baa0d3a48d5070e655823c.jpg\"},{\"topicId\":18796,\"bookId\":503353,\"bookName\":\"山区儿童心理研究\",\"bookUrl\":\"https://book.douban.com/subject/34793115/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/0819e891502c40baeaf599b56a6d29ce.jpg\"},{\"topicId\":18796,\"bookId\":787050,\"bookName\":\"山区管道建设风险分析与保险应对\",\"bookUrl\":\"https://book.douban.com/subject/34779033/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/07aa663f6f3781dbba31c780ec81b31f.jpg\"}]},{\"topicId\":11140,\"topicName\":\"灾区\",\"internetPopularity\":1597.2000,\"comprehensivePopularity\":821.6000,\"avgSalesQuantity\":3.00000000,\"bookAmount\":9,\"commentScore\":0.41,\"bookDTOS\":[{\"topicId\":11140,\"bookId\":153314,\"bookName\":\"我的地震故事\",\"bookUrl\":\"https://book.douban.com/subject/4931878/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/82572e31734ed2ba4b4668b8d045d5a9.jpg\"},{\"topicId\":11140,\"bookId\":705423,\"bookName\":\"洪涝灾害疾病中医药防治手册\",\"bookUrl\":\"https://book.douban.com/subject/35648957/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/ad88f5cecf9d7706ab90bdb8906adb8d.jpg\"},{\"topicId\":11140,\"bookId\":1260485,\"bookName\":\"灾后风险与危机应对\",\"bookUrl\":\"https://book.douban.com/subject/35462967/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/5ef2f6b5b756c00ec0d80f89c1be5151.jpg\"}]},{\"topicId\":44588,\"topicName\":\"自然课\",\"internetPopularity\":0.0000,\"comprehensivePopularity\":153.5000,\"avgSalesQuantity\":13.00000000,\"bookAmount\":21,\"commentScore\":0.43,\"bookDTOS\":[{\"topicId\":44588,\"bookId\":173039,\"bookName\":\"自然(牛津上海版)课本 三年级第二学期\",\"bookUrl\":\"https://book.douban.com/subject/5918012/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/94e83265a071e336b9cc657f16964482.jpg\"},{\"topicId\":44588,\"bookId\":173060,\"bookName\":\"自然(牛津上海版)课本四年级第二学期\",\"bookUrl\":\"\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/bbfaa9fe57444f2aaf5d8c4917c6f235.jpg\"},{\"topicId\":44588,\"bookId\":1296237,\"bookName\":\"行走中的自然课程\",\"bookUrl\":\"\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/5be5da1ed7cc670887bfb3a6a2285540.jpg\"}]},{\"topicId\":42085,\"topicName\":\"经济带\",\"internetPopularity\":0.0000,\"comprehensivePopularity\":58.5000,\"avgSalesQuantity\":6.00000000,\"bookAmount\":11,\"commentScore\":0.45,\"bookDTOS\":[{\"topicId\":42085,\"bookId\":254259,\"bookName\":\"世界是通的\",\"bookUrl\":\"https://book.douban.com/subject/26818888/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/bde71e7a48c5fe5d720e29e72f7b15f0.jpg\"},{\"topicId\":42085,\"bookId\":535714,\"bookName\":\"丝绸之路经济带生物多样性经济价值研究\",\"bookUrl\":\"https://book.douban.com/subject/30923836/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/8c5490964d16baed1169755fd8b34f4f.jpg\"},{\"topicId\":42085,\"bookId\":1252153,\"bookName\":\"“丝绸之路经济带”贸易投资便利化法律框架研究\",\"bookUrl\":\"https://book.douban.com/subject/30587216/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/fe9a0844a40f1bd42fef35ac17e755c0.jpg\"}]},{\"topicId\":41753,\"topicName\":\"陕西省\",\"internetPopularity\":57.6000,\"comprehensivePopularity\":243.8000,\"avgSalesQuantity\":20.00000000,\"bookAmount\":18,\"commentScore\":0.47,\"bookDTOS\":[{\"topicId\":41753,\"bookId\":225552,\"bookName\":\"陕西省地图集\",\"bookUrl\":\"https://book.douban.com/subject/35857957/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/b31ed7e18abd4208c0ff5cb8da53889b.jpg\"},{\"topicId\":41753,\"bookId\":594213,\"bookName\":\"陕西寻宝记\",\"bookUrl\":\"https://book.douban.com/subject/30524952/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/d894cca173ed965b9644c3516b60f269.jpg\"},{\"topicId\":41753,\"bookId\":981368,\"bookName\":\"陕西\",\"bookUrl\":\"https://book.douban.com/subject/30587460/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/aadf5531cb599521a8d1e68448e8e04d.jpg\"}]},{\"topicId\":22821,\"topicName\":\"民族团结\",\"internetPopularity\":75.2000,\"comprehensivePopularity\":57.6000,\"avgSalesQuantity\":1.00000000,\"bookAmount\":14,\"commentScore\":0.47,\"bookDTOS\":[{\"topicId\":22821,\"bookId\":28979,\"bookName\":\"新疆的若干历史问题\",\"bookUrl\":\"https://book.douban.com/subject/34798574/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/622cbb6576e1c4b1e4e10e9951e205f3.jpg\"},{\"topicId\":22821,\"bookId\":545814,\"bookName\":\"心连心 一家亲\",\"bookUrl\":\"https://book.douban.com/subject/35007704/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/27fb6d071338fc6ec5c88462176ded82.jpg\"},{\"topicId\":22821,\"bookId\":1327975,\"bookName\":\"民族团结云南经验\",\"bookUrl\":\"https://book.douban.com/subject/30879054/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/560d15613db6c25491842ee5e191c68a.jpg\"}]}],\"pageNum\":1,\"pageSize\":10,\"size\":10,\"startRow\":1,\"endRow\":10,\"pages\":2682,\"prePage\":0,\"nextPage\":2,\"isFirstPage\":true,\"isLastPage\":false,\"hasPreviousPage\":false,\"hasNextPage\":true,\"navigatePages\":8,\"navigatepageNums\":[1,2,3,4,5,6,7,8],\"navigateFirstPage\":1,\"navigateLastPage\":8},\"encrypt\":false}', checkSQL='null'}"},{"name":"arg0","value":"com.lemon.pojo.API@4d464510"}],"start":1678785688501,"stop":1678785688621}
\ No newline at end of file
{"uuid":"8eda44a9-7886-47c7-80ca-5f324f27bd0a","historyId":"e8e0e9a851922536fe507b2b55ee3163","fullName":"com.lemon.cases.PayCase.testPay","labels":[{"name":"package","value":"com.lemon.cases.PayCase"},{"name":"testClass","value":"com.lemon.cases.PayCase"},{"name":"testMethod","value":"testPay"},{"name":"parentSuite","value":"理工数传"},{"name":"suite","value":"RAYS支付"},{"name":"subSuite","value":"com.lemon.cases.PayCase"},{"name":"host","value":"Ray-MacBook-Pro-2.local"},{"name":"thread","value":"15239@Ray-MacBook-Pro-2.local.main(1)"},{"name":"framework","value":"testng"},{"name":"language","value":"java"}],"links":[],"name":"testPay","status":"passed","statusDetails":{"known":false,"muted":false,"flaky":false},"stage":"finished","description":"创建支付订单","steps":[{"name":"响应结果断言","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"expectValue","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"officialAccountsId\":65700,\"payAccounts\":65998,\"officialAccountsName\":\"广东新世纪出版社有限公司\",\"domain\":\"weixin65700.rayscjsn.com\",\"payDomain\":\"wechat65700.rayscjsn.com\",\"manageDomain\":\"wechat65700.rayscjsn.com\",\"icon\":\"https://oss.5rs.me/resources/jpg/j5zxhrw9N3EqbCR7oVFTHaP4W2DByZmg.jpg\",\"iosAlipayOpen\":0,\"payMchId\":\"1594177521\",\"currentPagePay\":0,\"phoneAuthOpen\":0,\"payMethod\":1}}"},{"name":"body","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"officialAccountsId\":65700,\"payAccounts\":65998,\"officialAccountsName\":\"广东新世纪出版社有限公司\",\"domain\":\"weixin65700.rayscjsn.com\",\"payDomain\":\"wechat65700.rayscjsn.com\",\"manageDomain\":\"wechat65700.rayscjsn.com\",\"icon\":\"https://oss.5rs.me/resources/jpg/j5zxhrw9N3EqbCR7oVFTHaP4W2DByZmg.jpg\",\"iosAlipayOpen\":0,\"payMchId\":\"1594177521\",\"currentPagePay\":0,\"phoneAuthOpen\":0,\"payMethod\":1}}"}],"start":1678785690323,"stop":1678785690323}],"attachments":[],"parameters":[{"name":"arg3","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"officialAccountsId\":65700,\"payAccounts\":65998,\"officialAccountsName\":\"广东新世纪出版社有限公司\",\"domain\":\"weixin65700.rayscjsn.com\",\"payDomain\":\"wechat65700.rayscjsn.com\",\"manageDomain\":\"wechat65700.rayscjsn.com\",\"icon\":\"https://oss.5rs.me/resources/jpg/j5zxhrw9N3EqbCR7oVFTHaP4W2DByZmg.jpg\",\"iosAlipayOpen\":0,\"payMchId\":\"1594177521\",\"currentPagePay\":0,\"phoneAuthOpen\":0,\"payMethod\":1}}"},{"name":"arg2","value":"https://weixin65700.rayscjsn.com/channelcenter/v1.0/accountSetting/getOpreateManageInfo?officialAccountsId=65700"},{"name":"type","value":"phone"},{"name":"version","value":"1.1.1"},{"name":"arg1","value":"新世纪跳新世纪"},{"name":"arg0","value":"5"}],"start":1678785690117,"stop":1678785690323}
\ No newline at end of file
{"uuid":"93beb90a-6b52-4253-997e-30e41dd5a22a","historyId":"a0244e9236b71a9cf7a85a9338276af3","fullName":"com.lemon.cases.RaysDataCase.testListIncreaseTopic4Report","labels":[{"name":"package","value":"com.lemon.cases.RaysDataCase"},{"name":"testClass","value":"com.lemon.cases.RaysDataCase"},{"name":"testMethod","value":"testListIncreaseTopic4Report"},{"name":"parentSuite","value":"理工数传"},{"name":"suite","value":"睿思数据"},{"name":"subSuite","value":"com.lemon.cases.RaysDataCase"},{"name":"host","value":"Ray-MacBook-Pro-2.local"},{"name":"thread","value":"15239@Ray-MacBook-Pro-2.local.main(1)"},{"name":"framework","value":"testng"},{"name":"language","value":"java"}],"links":[],"name":"【选题洞察】潜力增长选题>新品贡献大","status":"passed","statusDetails":{"known":false,"muted":false,"flaky":false},"stage":"finished","description":"【选题洞察】潜力增长选题>新品贡献大","steps":[{"name":"参数化替换","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"source","value":"{\"currentPage\":1,\"numPerPage\":10,\"oneCategoryId\":-1,\"twoCategoryId\":-1,\"periodType\":\"month\",\"timeValue\":[\"2022-01-01 \",\" 2022-01-31\"],\"uuid\":\"TV5kex5r\",\"startMonth\":\"2022-01-01 \",\"endMonth\":\" 2022-01-31\",\"lastStartMonth\":\"2021-12-01\",\"lastEndMonth\":\"2021-12-31\",\"potentialSortType\":2}"}],"start":1678785688731,"stop":1678785688731},{"name":"参数化替换","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"source","value":"null"}],"start":1678785688731,"stop":1678785688731},{"name":"接口调用方法","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"api","value":"com.lemon.pojo.API@2519026b"},{"name":"cas","value":"Case{id='27', desc='【选题洞察】潜力增长选题>销码洋增幅大', params='{\"currentPage\":1,\"numPerPage\":10,\"oneCategoryId\":-1,\"twoCategoryId\":-1,\"periodType\":\"month\",\"timeValue\":[\"2022-01-01 \",\" 2022-01-31\"],\"uuid\":\"TV5kex5r\",\"startMonth\":\"2022-01-01 \",\"endMonth\":\" 2022-01-31\",\"lastStartMonth\":\"2021-12-01\",\"lastEndMonth\":\"2021-12-31\",\"potentialSortType\":2}', apiID='20', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"total\":38660,\"list\":[{\"topicId\":14916,\"topicName\":\"曲线\",\"salesQuantity\":62,\"salesPrice\":1350.0000,\"increasePercent\":0.0000,\"bookDTOS\":[{\"topicId\":14916,\"bookId\":264348,\"bookName\":\"铁路曲线及其养护\",\"bookUrl\":\"https://book.douban.com/subject/3140690/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/85e7686e1f4ef3c00a18362d52ce5247.jpg\"},{\"topicId\":14916,\"bookId\":560919,\"bookName\":\"形状可调的参数曲线曲面造型方法研究\",\"bookUrl\":\"https://book.douban.com/subject/31000862/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/a830f7b4ea724053cf427e0dc13932c7.jpg\"},{\"topicId\":14916,\"bookId\":1074948,\"bookName\":\"美妙的曲线\",\"bookUrl\":\"https://book.douban.com/subject/30597901/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/1ff093206f43bc9a0e8a703702d116c1.jpg\"}]},{\"topicId\":43611,\"topicName\":\"林徽因\",\"salesQuantity\":12,\"salesPrice\":699.8000,\"increasePercent\":0.0000,\"bookDTOS\":[{\"topicId\":43611,\"bookId\":647438,\"bookName\":\"人间四月天\",\"bookUrl\":\"https://book.douban.com/subject/30615524/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/dbbca22809caa0d87f17faae13917875.jpg\"},{\"topicId\":43611,\"bookId\":951243,\"bookName\":\"从未贪恋\",\"bookUrl\":\"https://book.douban.com/subject/33441274/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/421d1ddc3c80ffc31c474db908f88430.jpg\"}]},{\"topicId\":45466,\"topicName\":\"生存竞争\",\"salesQuantity\":2,\"salesPrice\":33.6000,\"increasePercent\":0.0000,\"bookDTOS\":[{\"topicId\":45466,\"bookId\":1136591,\"bookName\":\"野生动物的生存\",\"bookUrl\":\"https://book.douban.com/subject/33448749/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/10e11dac801e70dddc27167932169246.jpg\"}]},{\"topicId\":666,\"topicName\":\"琼剧\",\"salesQuantity\":2,\"salesPrice\":118.0000,\"increasePercent\":0.0000,\"bookDTOS\":[{\"topicId\":666,\"bookId\":1323095,\"bookName\":\"琼剧的历史、现状与未来\",\"bookUrl\":\"https://book.douban.com/subject/10600754/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/718b792e0122e4169c0dc8200462e10f.jpg\"}]},{\"topicId\":61377,\"topicName\":\"艺术表演团体\",\"salesQuantity\":5,\"salesPrice\":399.0000,\"increasePercent\":0.0000,\"bookDTOS\":[{\"topicId\":61377,\"bookId\":37645,\"bookName\":\"苏北唢呐班百年活态流变研究\",\"bookUrl\":\"https://book.douban.com/subject/35534854/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/c0f6a0c8d5a3edddcecdc1dd41b15f90.jpg\"},{\"topicId\":61377,\"bookId\":993540,\"bookName\":\"中国演艺院团改革发展\",\"bookUrl\":\"https://book.douban.com/subject/31258385/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/97ec3353e0314870002e49a6fef607a4.jpg\"}]},{\"topicId\":34235,\"topicName\":\"抗凝血药\",\"salesQuantity\":30,\"salesPrice\":916.0000,\"increasePercent\":0.0000,\"bookDTOS\":[{\"topicId\":34235,\"bookId\":622514,\"bookName\":\"华法林抗凝治疗临床药师指导手册\",\"bookUrl\":\"https://book.douban.com/subject/4157226/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/52c33fff953508764d9ffe96c7562db9.jpg\"},{\"topicId\":34235,\"bookId\":667503,\"bookName\":\"全国临床药师规范化培训系列教材\",\"bookUrl\":\"https://book.douban.com/subject/30661808/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/2d712df4fbc24dacba632034ddb9732f.jpg\"},{\"topicId\":34235,\"bookId\":1000430,\"bookName\":\"抗凝(栓)门诊药师实践管理手册\",\"bookUrl\":\"https://book.douban.com/subject/34890382/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/a20a3da8dfe48c0f74e9b1b2f2757314.jpg\"}]},{\"topicId\":53514,\"topicName\":\"高温透平\",\"salesQuantity\":1,\"salesPrice\":490.0000,\"increasePercent\":0.0000,\"bookDTOS\":[{\"topicId\":53514,\"bookId\":486710,\"bookName\":\"高温透平叶片的传热与冷却\",\"bookUrl\":\"https://book.douban.com/subject/30822268/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/0988e05178929eb028a710c40edf2b3d.jpg\"}]},{\"topicId\":59743,\"topicName\":\"印光(1861~1940)\",\"salesQuantity\":6,\"salesPrice\":252.0000,\"increasePercent\":0.0000,\"bookDTOS\":[{\"topicId\":59743,\"bookId\":1319333,\"bookName\":\"印光法师的故事\",\"bookUrl\":\"https://book.douban.com/subject/20365657/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/dc484bfc5bc362c55aa5ed57a2719bf0.jpg\"}]},{\"topicId\":26957,\"topicName\":\"收入增长\",\"salesQuantity\":2,\"salesPrice\":64.0000,\"increasePercent\":0.0000,\"bookDTOS\":[{\"topicId\":26957,\"bookId\":449598,\"bookName\":\"农民增收减负百问百答\",\"bookUrl\":\"https://book.douban.com/subject/34880552/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/e2fca948f8be9aa5029ec0d44cbdb4a4.jpg\"},{\"topicId\":26957,\"bookId\":1267772,\"bookName\":\"夯实农业和农村发展基础 推进农业现代化\",\"bookUrl\":\"https://book.douban.com/subject/30543884/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/c05ade427bf1f314266685ec48955535.jpg\"}]},{\"topicId\":29567,\"topicName\":\"学前儿童\",\"salesQuantity\":39629,\"salesPrice\":1457862.2000,\"increasePercent\":0.0000,\"bookDTOS\":[{\"topicId\":29567,\"bookId\":713890,\"bookName\":\"爱和自由\",\"bookUrl\":\"https://book.douban.com/subject/24708326/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/03dc371ec7eb85e0a64d3eb177110d4e.jpg\"},{\"topicId\":29567,\"bookId\":1175283,\"bookName\":\"学前心理学\",\"bookUrl\":\"https://book.douban.com/subject/26744504/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/3340fb5ea1da512687c12dc4aea328e9.jpg\"},{\"topicId\":29567,\"bookId\":1375567,\"bookName\":\"0~3岁黄金期多元智能开发\",\"bookUrl\":\"https://book.douban.com/subject/5423025/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/40d00ed408f33b0253cb2c408ba82ab6.jpg\"}]}],\"pageNum\":1,\"pageSize\":10,\"size\":10,\"startRow\":1,\"endRow\":10,\"pages\":3866,\"prePage\":0,\"nextPage\":2,\"isFirstPage\":true,\"isLastPage\":false,\"hasPreviousPage\":false,\"hasNextPage\":true,\"navigatePages\":8,\"navigatepageNums\":[1,2,3,4,5,6,7,8],\"navigateFirstPage\":1,\"navigateLastPage\":8},\"encrypt\":false}', checkSQL='null'}"},{"name":"isAuthorization","value":"true"}],"start":1678785688731,"stop":1678785688850},{"name":"响应结果进行断言","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"cas","value":"Case{id='27', desc='【选题洞察】潜力增长选题>销码洋增幅大', params='{\"currentPage\":1,\"numPerPage\":10,\"oneCategoryId\":-1,\"twoCategoryId\":-1,\"periodType\":\"month\",\"timeValue\":[\"2022-01-01 \",\" 2022-01-31\"],\"uuid\":\"TV5kex5r\",\"startMonth\":\"2022-01-01 \",\"endMonth\":\" 2022-01-31\",\"lastStartMonth\":\"2021-12-01\",\"lastEndMonth\":\"2021-12-31\",\"potentialSortType\":2}', apiID='20', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"total\":38660,\"list\":[{\"topicId\":14916,\"topicName\":\"曲线\",\"salesQuantity\":62,\"salesPrice\":1350.0000,\"increasePercent\":0.0000,\"bookDTOS\":[{\"topicId\":14916,\"bookId\":264348,\"bookName\":\"铁路曲线及其养护\",\"bookUrl\":\"https://book.douban.com/subject/3140690/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/85e7686e1f4ef3c00a18362d52ce5247.jpg\"},{\"topicId\":14916,\"bookId\":560919,\"bookName\":\"形状可调的参数曲线曲面造型方法研究\",\"bookUrl\":\"https://book.douban.com/subject/31000862/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/a830f7b4ea724053cf427e0dc13932c7.jpg\"},{\"topicId\":14916,\"bookId\":1074948,\"bookName\":\"美妙的曲线\",\"bookUrl\":\"https://book.douban.com/subject/30597901/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/1ff093206f43bc9a0e8a703702d116c1.jpg\"}]},{\"topicId\":43611,\"topicName\":\"林徽因\",\"salesQuantity\":12,\"salesPrice\":699.8000,\"increasePercent\":0.0000,\"bookDTOS\":[{\"topicId\":43611,\"bookId\":647438,\"bookName\":\"人间四月天\",\"bookUrl\":\"https://book.douban.com/subject/30615524/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/dbbca22809caa0d87f17faae13917875.jpg\"},{\"topicId\":43611,\"bookId\":951243,\"bookName\":\"从未贪恋\",\"bookUrl\":\"https://book.douban.com/subject/33441274/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/421d1ddc3c80ffc31c474db908f88430.jpg\"}]},{\"topicId\":45466,\"topicName\":\"生存竞争\",\"salesQuantity\":2,\"salesPrice\":33.6000,\"increasePercent\":0.0000,\"bookDTOS\":[{\"topicId\":45466,\"bookId\":1136591,\"bookName\":\"野生动物的生存\",\"bookUrl\":\"https://book.douban.com/subject/33448749/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/10e11dac801e70dddc27167932169246.jpg\"}]},{\"topicId\":666,\"topicName\":\"琼剧\",\"salesQuantity\":2,\"salesPrice\":118.0000,\"increasePercent\":0.0000,\"bookDTOS\":[{\"topicId\":666,\"bookId\":1323095,\"bookName\":\"琼剧的历史、现状与未来\",\"bookUrl\":\"https://book.douban.com/subject/10600754/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/718b792e0122e4169c0dc8200462e10f.jpg\"}]},{\"topicId\":61377,\"topicName\":\"艺术表演团体\",\"salesQuantity\":5,\"salesPrice\":399.0000,\"increasePercent\":0.0000,\"bookDTOS\":[{\"topicId\":61377,\"bookId\":37645,\"bookName\":\"苏北唢呐班百年活态流变研究\",\"bookUrl\":\"https://book.douban.com/subject/35534854/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/c0f6a0c8d5a3edddcecdc1dd41b15f90.jpg\"},{\"topicId\":61377,\"bookId\":993540,\"bookName\":\"中国演艺院团改革发展\",\"bookUrl\":\"https://book.douban.com/subject/31258385/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/97ec3353e0314870002e49a6fef607a4.jpg\"}]},{\"topicId\":34235,\"topicName\":\"抗凝血药\",\"salesQuantity\":30,\"salesPrice\":916.0000,\"increasePercent\":0.0000,\"bookDTOS\":[{\"topicId\":34235,\"bookId\":622514,\"bookName\":\"华法林抗凝治疗临床药师指导手册\",\"bookUrl\":\"https://book.douban.com/subject/4157226/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/52c33fff953508764d9ffe96c7562db9.jpg\"},{\"topicId\":34235,\"bookId\":667503,\"bookName\":\"全国临床药师规范化培训系列教材\",\"bookUrl\":\"https://book.douban.com/subject/30661808/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/2d712df4fbc24dacba632034ddb9732f.jpg\"},{\"topicId\":34235,\"bookId\":1000430,\"bookName\":\"抗凝(栓)门诊药师实践管理手册\",\"bookUrl\":\"https://book.douban.com/subject/34890382/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/a20a3da8dfe48c0f74e9b1b2f2757314.jpg\"}]},{\"topicId\":53514,\"topicName\":\"高温透平\",\"salesQuantity\":1,\"salesPrice\":490.0000,\"increasePercent\":0.0000,\"bookDTOS\":[{\"topicId\":53514,\"bookId\":486710,\"bookName\":\"高温透平叶片的传热与冷却\",\"bookUrl\":\"https://book.douban.com/subject/30822268/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/0988e05178929eb028a710c40edf2b3d.jpg\"}]},{\"topicId\":59743,\"topicName\":\"印光(1861~1940)\",\"salesQuantity\":6,\"salesPrice\":252.0000,\"increasePercent\":0.0000,\"bookDTOS\":[{\"topicId\":59743,\"bookId\":1319333,\"bookName\":\"印光法师的故事\",\"bookUrl\":\"https://book.douban.com/subject/20365657/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/dc484bfc5bc362c55aa5ed57a2719bf0.jpg\"}]},{\"topicId\":26957,\"topicName\":\"收入增长\",\"salesQuantity\":2,\"salesPrice\":64.0000,\"increasePercent\":0.0000,\"bookDTOS\":[{\"topicId\":26957,\"bookId\":449598,\"bookName\":\"农民增收减负百问百答\",\"bookUrl\":\"https://book.douban.com/subject/34880552/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/e2fca948f8be9aa5029ec0d44cbdb4a4.jpg\"},{\"topicId\":26957,\"bookId\":1267772,\"bookName\":\"夯实农业和农村发展基础 推进农业现代化\",\"bookUrl\":\"https://book.douban.com/subject/30543884/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/c05ade427bf1f314266685ec48955535.jpg\"}]},{\"topicId\":29567,\"topicName\":\"学前儿童\",\"salesQuantity\":39629,\"salesPrice\":1457862.2000,\"increasePercent\":0.0000,\"bookDTOS\":[{\"topicId\":29567,\"bookId\":713890,\"bookName\":\"爱和自由\",\"bookUrl\":\"https://book.douban.com/subject/24708326/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/03dc371ec7eb85e0a64d3eb177110d4e.jpg\"},{\"topicId\":29567,\"bookId\":1175283,\"bookName\":\"学前心理学\",\"bookUrl\":\"https://book.douban.com/subject/26744504/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/3340fb5ea1da512687c12dc4aea328e9.jpg\"},{\"topicId\":29567,\"bookId\":1375567,\"bookName\":\"0~3岁黄金期多元智能开发\",\"bookUrl\":\"https://book.douban.com/subject/5423025/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/40d00ed408f33b0253cb2c408ba82ab6.jpg\"}]}],\"pageNum\":1,\"pageSize\":10,\"size\":10,\"startRow\":1,\"endRow\":10,\"pages\":3866,\"prePage\":0,\"nextPage\":2,\"isFirstPage\":true,\"isLastPage\":false,\"hasPreviousPage\":false,\"hasNextPage\":true,\"navigatePages\":8,\"navigatepageNums\":[1,2,3,4,5,6,7,8],\"navigateFirstPage\":1,\"navigateLastPage\":8},\"encrypt\":false}', checkSQL='null'}"},{"name":"body","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"total\":0,\"list\":[],\"pageNum\":1,\"pageSize\":10,\"size\":0,\"startRow\":0,\"endRow\":0,\"pages\":0,\"prePage\":0,\"nextPage\":0,\"isFirstPage\":true,\"isLastPage\":true,\"hasPreviousPage\":false,\"hasNextPage\":false,\"navigatePages\":8,\"navigatepageNums\":[],\"navigateFirstPage\":0,\"navigateLastPage\":0},\"encrypt\":false}"}],"start":1678785688850,"stop":1678785688850},{"name":"添加回写内容","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"rowNum","value":"27"},{"name":"cellNum","value":"5"},{"name":"body","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"total\":0,\"list\":[],\"pageNum\":1,\"pageSize\":10,\"size\":0,\"startRow\":0,\"endRow\":0,\"pages\":0,\"prePage\":0,\"nextPage\":0,\"isFirstPage\":true,\"isLastPage\":true,\"hasPreviousPage\":false,\"hasNextPage\":false,\"navigatePages\":8,\"navigatepageNums\":[],\"navigateFirstPage\":0,\"navigateLastPage\":0},\"encrypt\":false}"}],"start":1678785688850,"stop":1678785688850}],"attachments":[],"parameters":[{"name":"type","value":"phone"},{"name":"version","value":"1.1.1"},{"name":"arg1","value":"Case{id='27', desc='【选题洞察】潜力增长选题>销码洋增幅大', params='{\"currentPage\":1,\"numPerPage\":10,\"oneCategoryId\":-1,\"twoCategoryId\":-1,\"periodType\":\"month\",\"timeValue\":[\"2022-01-01 \",\" 2022-01-31\"],\"uuid\":\"TV5kex5r\",\"startMonth\":\"2022-01-01 \",\"endMonth\":\" 2022-01-31\",\"lastStartMonth\":\"2021-12-01\",\"lastEndMonth\":\"2021-12-31\",\"potentialSortType\":2}', apiID='20', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"total\":38660,\"list\":[{\"topicId\":14916,\"topicName\":\"曲线\",\"salesQuantity\":62,\"salesPrice\":1350.0000,\"increasePercent\":0.0000,\"bookDTOS\":[{\"topicId\":14916,\"bookId\":264348,\"bookName\":\"铁路曲线及其养护\",\"bookUrl\":\"https://book.douban.com/subject/3140690/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/85e7686e1f4ef3c00a18362d52ce5247.jpg\"},{\"topicId\":14916,\"bookId\":560919,\"bookName\":\"形状可调的参数曲线曲面造型方法研究\",\"bookUrl\":\"https://book.douban.com/subject/31000862/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/a830f7b4ea724053cf427e0dc13932c7.jpg\"},{\"topicId\":14916,\"bookId\":1074948,\"bookName\":\"美妙的曲线\",\"bookUrl\":\"https://book.douban.com/subject/30597901/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/1ff093206f43bc9a0e8a703702d116c1.jpg\"}]},{\"topicId\":43611,\"topicName\":\"林徽因\",\"salesQuantity\":12,\"salesPrice\":699.8000,\"increasePercent\":0.0000,\"bookDTOS\":[{\"topicId\":43611,\"bookId\":647438,\"bookName\":\"人间四月天\",\"bookUrl\":\"https://book.douban.com/subject/30615524/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/dbbca22809caa0d87f17faae13917875.jpg\"},{\"topicId\":43611,\"bookId\":951243,\"bookName\":\"从未贪恋\",\"bookUrl\":\"https://book.douban.com/subject/33441274/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/421d1ddc3c80ffc31c474db908f88430.jpg\"}]},{\"topicId\":45466,\"topicName\":\"生存竞争\",\"salesQuantity\":2,\"salesPrice\":33.6000,\"increasePercent\":0.0000,\"bookDTOS\":[{\"topicId\":45466,\"bookId\":1136591,\"bookName\":\"野生动物的生存\",\"bookUrl\":\"https://book.douban.com/subject/33448749/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/10e11dac801e70dddc27167932169246.jpg\"}]},{\"topicId\":666,\"topicName\":\"琼剧\",\"salesQuantity\":2,\"salesPrice\":118.0000,\"increasePercent\":0.0000,\"bookDTOS\":[{\"topicId\":666,\"bookId\":1323095,\"bookName\":\"琼剧的历史、现状与未来\",\"bookUrl\":\"https://book.douban.com/subject/10600754/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/718b792e0122e4169c0dc8200462e10f.jpg\"}]},{\"topicId\":61377,\"topicName\":\"艺术表演团体\",\"salesQuantity\":5,\"salesPrice\":399.0000,\"increasePercent\":0.0000,\"bookDTOS\":[{\"topicId\":61377,\"bookId\":37645,\"bookName\":\"苏北唢呐班百年活态流变研究\",\"bookUrl\":\"https://book.douban.com/subject/35534854/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/c0f6a0c8d5a3edddcecdc1dd41b15f90.jpg\"},{\"topicId\":61377,\"bookId\":993540,\"bookName\":\"中国演艺院团改革发展\",\"bookUrl\":\"https://book.douban.com/subject/31258385/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/97ec3353e0314870002e49a6fef607a4.jpg\"}]},{\"topicId\":34235,\"topicName\":\"抗凝血药\",\"salesQuantity\":30,\"salesPrice\":916.0000,\"increasePercent\":0.0000,\"bookDTOS\":[{\"topicId\":34235,\"bookId\":622514,\"bookName\":\"华法林抗凝治疗临床药师指导手册\",\"bookUrl\":\"https://book.douban.com/subject/4157226/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/52c33fff953508764d9ffe96c7562db9.jpg\"},{\"topicId\":34235,\"bookId\":667503,\"bookName\":\"全国临床药师规范化培训系列教材\",\"bookUrl\":\"https://book.douban.com/subject/30661808/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/2d712df4fbc24dacba632034ddb9732f.jpg\"},{\"topicId\":34235,\"bookId\":1000430,\"bookName\":\"抗凝(栓)门诊药师实践管理手册\",\"bookUrl\":\"https://book.douban.com/subject/34890382/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/a20a3da8dfe48c0f74e9b1b2f2757314.jpg\"}]},{\"topicId\":53514,\"topicName\":\"高温透平\",\"salesQuantity\":1,\"salesPrice\":490.0000,\"increasePercent\":0.0000,\"bookDTOS\":[{\"topicId\":53514,\"bookId\":486710,\"bookName\":\"高温透平叶片的传热与冷却\",\"bookUrl\":\"https://book.douban.com/subject/30822268/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/0988e05178929eb028a710c40edf2b3d.jpg\"}]},{\"topicId\":59743,\"topicName\":\"印光(1861~1940)\",\"salesQuantity\":6,\"salesPrice\":252.0000,\"increasePercent\":0.0000,\"bookDTOS\":[{\"topicId\":59743,\"bookId\":1319333,\"bookName\":\"印光法师的故事\",\"bookUrl\":\"https://book.douban.com/subject/20365657/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/dc484bfc5bc362c55aa5ed57a2719bf0.jpg\"}]},{\"topicId\":26957,\"topicName\":\"收入增长\",\"salesQuantity\":2,\"salesPrice\":64.0000,\"increasePercent\":0.0000,\"bookDTOS\":[{\"topicId\":26957,\"bookId\":449598,\"bookName\":\"农民增收减负百问百答\",\"bookUrl\":\"https://book.douban.com/subject/34880552/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/e2fca948f8be9aa5029ec0d44cbdb4a4.jpg\"},{\"topicId\":26957,\"bookId\":1267772,\"bookName\":\"夯实农业和农村发展基础 推进农业现代化\",\"bookUrl\":\"https://book.douban.com/subject/30543884/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/c05ade427bf1f314266685ec48955535.jpg\"}]},{\"topicId\":29567,\"topicName\":\"学前儿童\",\"salesQuantity\":39629,\"salesPrice\":1457862.2000,\"increasePercent\":0.0000,\"bookDTOS\":[{\"topicId\":29567,\"bookId\":713890,\"bookName\":\"爱和自由\",\"bookUrl\":\"https://book.douban.com/subject/24708326/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/03dc371ec7eb85e0a64d3eb177110d4e.jpg\"},{\"topicId\":29567,\"bookId\":1175283,\"bookName\":\"学前心理学\",\"bookUrl\":\"https://book.douban.com/subject/26744504/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/3340fb5ea1da512687c12dc4aea328e9.jpg\"},{\"topicId\":29567,\"bookId\":1375567,\"bookName\":\"0~3岁黄金期多元智能开发\",\"bookUrl\":\"https://book.douban.com/subject/5423025/\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/40d00ed408f33b0253cb2c408ba82ab6.jpg\"}]}],\"pageNum\":1,\"pageSize\":10,\"size\":10,\"startRow\":1,\"endRow\":10,\"pages\":3866,\"prePage\":0,\"nextPage\":2,\"isFirstPage\":true,\"isLastPage\":false,\"hasPreviousPage\":false,\"hasNextPage\":true,\"navigatePages\":8,\"navigatepageNums\":[1,2,3,4,5,6,7,8],\"navigateFirstPage\":1,\"navigateLastPage\":8},\"encrypt\":false}', checkSQL='null'}"},{"name":"arg0","value":"com.lemon.pojo.API@2519026b"}],"start":1678785688731,"stop":1678785688850}
\ No newline at end of file
{"uuid":"94188c86-1516-4fbd-9605-20b92ea0d6a1","historyId":"877e75ae5f6030a91eea102f84159bc7","fullName":"com.lemon.cases.PayCase.testPay","labels":[{"name":"package","value":"com.lemon.cases.PayCase"},{"name":"testClass","value":"com.lemon.cases.PayCase"},{"name":"testMethod","value":"testPay"},{"name":"parentSuite","value":"理工数传"},{"name":"suite","value":"RAYS支付"},{"name":"subSuite","value":"com.lemon.cases.PayCase"},{"name":"host","value":"Ray-MacBook-Pro-2.local"},{"name":"thread","value":"15239@Ray-MacBook-Pro-2.local.main(1)"},{"name":"framework","value":"testng"},{"name":"language","value":"java"}],"links":[],"name":"testPay","status":"passed","statusDetails":{"known":false,"muted":false,"flaky":false},"stage":"finished","description":"创建支付订单","steps":[{"name":"响应结果断言","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"expectValue","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"officialAccountsId\":23,\"payAccounts\":23,\"officialAccountsName\":\"书童小睿\",\"domain\":\"weixin23.5rs.me\",\"payDomain\":\"weixin23.5rs.me\",\"manageDomain\":\"wechat22.5rs.me\",\"icon\":\"https://oss.5rs.me/oss/uploadfe/png/942c1c8f4f2a7bc81f82743c48bbaa1a.png\",\"description\":\"属于你的双十一狂欢会\",\"iosAlipayOpen\":0,\"payMchId\":\"1639325477\",\"currentPagePay\":0,\"phoneAuthOpen\":0,\"payMethod\":1}}"},{"name":"body","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"officialAccountsId\":23,\"payAccounts\":23,\"officialAccountsName\":\"书童小睿\",\"domain\":\"weixin23.5rs.me\",\"payDomain\":\"weixin23.5rs.me\",\"manageDomain\":\"wechat22.5rs.me\",\"icon\":\"https://oss.5rs.me/oss/uploadfe/png/942c1c8f4f2a7bc81f82743c48bbaa1a.png\",\"description\":\"属于你的双十一狂欢会\",\"iosAlipayOpen\":0,\"payMchId\":\"1639325477\",\"currentPagePay\":0,\"phoneAuthOpen\":0,\"payMethod\":1}}"}],"start":1678785689202,"stop":1678785689202}],"attachments":[],"parameters":[{"name":"arg3","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"officialAccountsId\":23,\"payAccounts\":23,\"officialAccountsName\":\"书童小睿\",\"domain\":\"weixin23.5rs.me\",\"payDomain\":\"weixin23.5rs.me\",\"manageDomain\":\"wechat22.5rs.me\",\"icon\":\"https://oss.5rs.me/oss/uploadfe/png/942c1c8f4f2a7bc81f82743c48bbaa1a.png\",\"description\":\"属于你的双十一狂欢会\",\"iosAlipayOpen\":0,\"payMchId\":\"1639325477\",\"currentPagePay\":0,\"phoneAuthOpen\":0,\"payMethod\":1}}"},{"name":"arg2","value":"https://weixin23.5rs.me/channelcenter/v1.0/accountSetting/getOpreateManageInfo?officialAccountsId=23"},{"name":"type","value":"phone"},{"name":"version","value":"1.1.1"},{"name":"arg1","value":"RAYS自跳RAYS"},{"name":"arg0","value":"1"}],"start":1678785688992,"stop":1678785689202}
\ No newline at end of file
{"uuid":"945e4540-0813-441a-8461-4f899f787d2d","historyId":"99a602479e1de04299b1e0977d2a90c3","fullName":"com.lemon.cases.RaysDataCase.testListNewBookTopic4Report","labels":[{"name":"package","value":"com.lemon.cases.RaysDataCase"},{"name":"testClass","value":"com.lemon.cases.RaysDataCase"},{"name":"testMethod","value":"testListNewBookTopic4Report"},{"name":"parentSuite","value":"理工数传"},{"name":"suite","value":"睿思数据"},{"name":"subSuite","value":"com.lemon.cases.RaysDataCase"},{"name":"host","value":"Ray-MacBook-Pro-2.local"},{"name":"thread","value":"15239@Ray-MacBook-Pro-2.local.main(1)"},{"name":"framework","value":"testng"},{"name":"language","value":"java"}],"links":[],"name":"【选题洞察】潜力增长选题>新品贡献大","status":"passed","statusDetails":{"known":false,"muted":false,"flaky":false},"stage":"finished","description":"【选题洞察】潜力增长选题>新品贡献大","steps":[{"name":"参数化替换","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"source","value":"{\"currentPage\":1,\"numPerPage\":10,\"oneCategoryId\":-1,\"twoCategoryId\":-1,\"periodType\":\"month\",\"timeValue\":[\"2022-01-01 \",\" 2022-01-31\"],\"uuid\":\"TV5kex5r\",\"startMonth\":\"2022-01-01 \",\"endMonth\":\" 2022-01-31\"}"}],"start":1678785688853,"stop":1678785688853},{"name":"参数化替换","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"source","value":"null"}],"start":1678785688854,"stop":1678785688854},{"name":"接口调用方法","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"api","value":"com.lemon.pojo.API@64e7d698"},{"name":"cas","value":"Case{id='25', desc='【选题洞察】潜力增长选题>新品贡献大', params='{\"currentPage\":1,\"numPerPage\":10,\"oneCategoryId\":-1,\"twoCategoryId\":-1,\"periodType\":\"month\",\"timeValue\":[\"2022-01-01 \",\" 2022-01-31\"],\"uuid\":\"TV5kex5r\",\"startMonth\":\"2022-01-01 \",\"endMonth\":\" 2022-01-31\"}', apiID='19', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"total\":0,\"list\":[],\"pageNum\":1,\"pageSize\":10,\"size\":0,\"startRow\":0,\"endRow\":0,\"pages\":0,\"prePage\":0,\"nextPage\":0,\"isFirstPage\":true,\"isLastPage\":true,\"hasPreviousPage\":false,\"hasNextPage\":false,\"navigatePages\":8,\"navigatepageNums\":[],\"navigateFirstPage\":0,\"navigateLastPage\":0},\"encrypt\":false}', checkSQL='null'}"},{"name":"isAuthorization","value":"true"}],"start":1678785688854,"stop":1678785688963},{"name":"响应结果进行断言","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"cas","value":"Case{id='25', desc='【选题洞察】潜力增长选题>新品贡献大', params='{\"currentPage\":1,\"numPerPage\":10,\"oneCategoryId\":-1,\"twoCategoryId\":-1,\"periodType\":\"month\",\"timeValue\":[\"2022-01-01 \",\" 2022-01-31\"],\"uuid\":\"TV5kex5r\",\"startMonth\":\"2022-01-01 \",\"endMonth\":\" 2022-01-31\"}', apiID='19', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"total\":0,\"list\":[],\"pageNum\":1,\"pageSize\":10,\"size\":0,\"startRow\":0,\"endRow\":0,\"pages\":0,\"prePage\":0,\"nextPage\":0,\"isFirstPage\":true,\"isLastPage\":true,\"hasPreviousPage\":false,\"hasNextPage\":false,\"navigatePages\":8,\"navigatepageNums\":[],\"navigateFirstPage\":0,\"navigateLastPage\":0},\"encrypt\":false}', checkSQL='null'}"},{"name":"body","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"total\":0,\"list\":[],\"pageNum\":1,\"pageSize\":10,\"size\":0,\"startRow\":0,\"endRow\":0,\"pages\":0,\"prePage\":0,\"nextPage\":0,\"isFirstPage\":true,\"isLastPage\":true,\"hasPreviousPage\":false,\"hasNextPage\":false,\"navigatePages\":8,\"navigatepageNums\":[],\"navigateFirstPage\":0,\"navigateLastPage\":0},\"encrypt\":false}"}],"start":1678785688963,"stop":1678785688963},{"name":"添加回写内容","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"rowNum","value":"25"},{"name":"cellNum","value":"5"},{"name":"body","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"total\":0,\"list\":[],\"pageNum\":1,\"pageSize\":10,\"size\":0,\"startRow\":0,\"endRow\":0,\"pages\":0,\"prePage\":0,\"nextPage\":0,\"isFirstPage\":true,\"isLastPage\":true,\"hasPreviousPage\":false,\"hasNextPage\":false,\"navigatePages\":8,\"navigatepageNums\":[],\"navigateFirstPage\":0,\"navigateLastPage\":0},\"encrypt\":false}"}],"start":1678785688963,"stop":1678785688963}],"attachments":[],"parameters":[{"name":"type","value":"phone"},{"name":"version","value":"1.1.1"},{"name":"arg1","value":"Case{id='25', desc='【选题洞察】潜力增长选题>新品贡献大', params='{\"currentPage\":1,\"numPerPage\":10,\"oneCategoryId\":-1,\"twoCategoryId\":-1,\"periodType\":\"month\",\"timeValue\":[\"2022-01-01 \",\" 2022-01-31\"],\"uuid\":\"TV5kex5r\",\"startMonth\":\"2022-01-01 \",\"endMonth\":\" 2022-01-31\"}', apiID='19', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"total\":0,\"list\":[],\"pageNum\":1,\"pageSize\":10,\"size\":0,\"startRow\":0,\"endRow\":0,\"pages\":0,\"prePage\":0,\"nextPage\":0,\"isFirstPage\":true,\"isLastPage\":true,\"hasPreviousPage\":false,\"hasNextPage\":false,\"navigatePages\":8,\"navigatepageNums\":[],\"navigateFirstPage\":0,\"navigateLastPage\":0},\"encrypt\":false}', checkSQL='null'}"},{"name":"arg0","value":"com.lemon.pojo.API@64e7d698"}],"start":1678785688853,"stop":1678785688963}
\ No newline at end of file
{"uuid":"9689091b-799d-4d36-b257-0f6742c35051","historyId":"8023dd8fb1d79671d80247bc087f98f7","fullName":"com.lemon.cases.RaysDataCase.testListBlankTopic","labels":[{"name":"package","value":"com.lemon.cases.RaysDataCase"},{"name":"testClass","value":"com.lemon.cases.RaysDataCase"},{"name":"testMethod","value":"testListBlankTopic"},{"name":"parentSuite","value":"理工数传"},{"name":"suite","value":"睿思数据"},{"name":"subSuite","value":"com.lemon.cases.RaysDataCase"},{"name":"host","value":"Ray-MacBook-Pro-2.local"},{"name":"thread","value":"15239@Ray-MacBook-Pro-2.local.main(1)"},{"name":"framework","value":"testng"},{"name":"language","value":"java"}],"links":[],"name":"【选题洞察】市场空白选题","status":"passed","statusDetails":{"known":false,"muted":false,"flaky":false},"stage":"finished","description":"【选题洞察】市场空白选题","steps":[{"name":"参数化替换","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"source","value":"{\"oneCategoryId\":-1,\"twoCategoryId\":-1,\"currentPage\":1,\"numPerPage\":10,\"periodType\":\"month\",\"timeValue\":[\"2022-01-01 \",\" 2022-01-31\"],\"uuid\":\"TV5kex5r\",\"startMonth\":\"2022-01-01 \",\"endMonth\":\" 2022-01-31\"}"}],"start":1678785687351,"stop":1678785687351},{"name":"参数化替换","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"source","value":"null"}],"start":1678785687351,"stop":1678785687351},{"name":"接口调用方法","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"api","value":"com.lemon.pojo.API@58833798"},{"name":"cas","value":"Case{id='20', desc='【选题洞察】全分类-全分类 22年1月份 市场空白选题', params='{\"oneCategoryId\":-1,\"twoCategoryId\":-1,\"currentPage\":1,\"numPerPage\":10,\"periodType\":\"month\",\"timeValue\":[\"2022-01-01 \",\" 2022-01-31\"],\"uuid\":\"TV5kex5r\",\"startMonth\":\"2022-01-01 \",\"endMonth\":\" 2022-01-31\"}', apiID='16', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"total\":20,\"list\":[{\"topicId\":11769,\"topicName\":\"避孕\",\"internetPopularity\":59532.6000,\"bookAmount\":0,\"subscribeState\":0},{\"topicId\":26204,\"topicName\":\"代数簇\",\"internetPopularity\":16.4000,\"bookAmount\":0,\"subscribeState\":0},{\"topicId\":37829,\"topicName\":\"白莲教起义\",\"internetPopularity\":151.8000,\"bookAmount\":0,\"subscribeState\":0},{\"topicId\":41663,\"topicName\":\"裂纹扩展\",\"internetPopularity\":55.6000,\"bookAmount\":0,\"subscribeState\":0},{\"topicId\":59456,\"topicName\":\"奥斯卡金像奖\",\"internetPopularity\":345.0000,\"bookAmount\":0,\"subscribeState\":0},{\"topicId\":20771,\"topicName\":\"古典主义\",\"internetPopularity\":102.0000,\"bookAmount\":0,\"subscribeState\":0},{\"topicId\":3331,\"topicName\":\"南通\",\"internetPopularity\":1290.0000,\"bookAmount\":0,\"subscribeState\":0},{\"topicId\":40221,\"topicName\":\"环境激素\",\"internetPopularity\":527.4000,\"bookAmount\":0,\"subscribeState\":0},{\"topicId\":42539,\"topicName\":\"游击战\",\"internetPopularity\":3903.2000,\"bookAmount\":0,\"subscribeState\":0},{\"topicId\":681,\"topicName\":\"米兰\",\"internetPopularity\":2796.0000,\"bookAmount\":0,\"subscribeState\":0}],\"pageNum\":1,\"pageSize\":10,\"size\":10,\"startRow\":1,\"endRow\":10,\"pages\":2,\"prePage\":0,\"nextPage\":2,\"isFirstPage\":true,\"isLastPage\":false,\"hasPreviousPage\":false,\"hasNextPage\":true,\"navigatePages\":8,\"navigatepageNums\":[1,2],\"navigateFirstPage\":1,\"navigateLastPage\":2},\"encrypt\":false}', checkSQL='null'}"},{"name":"isAuthorization","value":"true"}],"start":1678785687351,"stop":1678785688363},{"name":"响应结果进行断言","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"cas","value":"Case{id='20', desc='【选题洞察】全分类-全分类 22年1月份 市场空白选题', params='{\"oneCategoryId\":-1,\"twoCategoryId\":-1,\"currentPage\":1,\"numPerPage\":10,\"periodType\":\"month\",\"timeValue\":[\"2022-01-01 \",\" 2022-01-31\"],\"uuid\":\"TV5kex5r\",\"startMonth\":\"2022-01-01 \",\"endMonth\":\" 2022-01-31\"}', apiID='16', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"total\":20,\"list\":[{\"topicId\":11769,\"topicName\":\"避孕\",\"internetPopularity\":59532.6000,\"bookAmount\":0,\"subscribeState\":0},{\"topicId\":26204,\"topicName\":\"代数簇\",\"internetPopularity\":16.4000,\"bookAmount\":0,\"subscribeState\":0},{\"topicId\":37829,\"topicName\":\"白莲教起义\",\"internetPopularity\":151.8000,\"bookAmount\":0,\"subscribeState\":0},{\"topicId\":41663,\"topicName\":\"裂纹扩展\",\"internetPopularity\":55.6000,\"bookAmount\":0,\"subscribeState\":0},{\"topicId\":59456,\"topicName\":\"奥斯卡金像奖\",\"internetPopularity\":345.0000,\"bookAmount\":0,\"subscribeState\":0},{\"topicId\":20771,\"topicName\":\"古典主义\",\"internetPopularity\":102.0000,\"bookAmount\":0,\"subscribeState\":0},{\"topicId\":3331,\"topicName\":\"南通\",\"internetPopularity\":1290.0000,\"bookAmount\":0,\"subscribeState\":0},{\"topicId\":40221,\"topicName\":\"环境激素\",\"internetPopularity\":527.4000,\"bookAmount\":0,\"subscribeState\":0},{\"topicId\":42539,\"topicName\":\"游击战\",\"internetPopularity\":3903.2000,\"bookAmount\":0,\"subscribeState\":0},{\"topicId\":681,\"topicName\":\"米兰\",\"internetPopularity\":2796.0000,\"bookAmount\":0,\"subscribeState\":0}],\"pageNum\":1,\"pageSize\":10,\"size\":10,\"startRow\":1,\"endRow\":10,\"pages\":2,\"prePage\":0,\"nextPage\":2,\"isFirstPage\":true,\"isLastPage\":false,\"hasPreviousPage\":false,\"hasNextPage\":true,\"navigatePages\":8,\"navigatepageNums\":[1,2],\"navigateFirstPage\":1,\"navigateLastPage\":2},\"encrypt\":false}', checkSQL='null'}"},{"name":"body","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"total\":0,\"list\":[],\"pageNum\":1,\"pageSize\":10,\"size\":0,\"startRow\":0,\"endRow\":0,\"pages\":0,\"prePage\":0,\"nextPage\":0,\"isFirstPage\":true,\"isLastPage\":true,\"hasPreviousPage\":false,\"hasNextPage\":false,\"navigatePages\":8,\"navigatepageNums\":[],\"navigateFirstPage\":0,\"navigateLastPage\":0},\"encrypt\":false}"}],"start":1678785688364,"stop":1678785688365},{"name":"添加回写内容","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"rowNum","value":"20"},{"name":"cellNum","value":"5"},{"name":"body","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"total\":0,\"list\":[],\"pageNum\":1,\"pageSize\":10,\"size\":0,\"startRow\":0,\"endRow\":0,\"pages\":0,\"prePage\":0,\"nextPage\":0,\"isFirstPage\":true,\"isLastPage\":true,\"hasPreviousPage\":false,\"hasNextPage\":false,\"navigatePages\":8,\"navigatepageNums\":[],\"navigateFirstPage\":0,\"navigateLastPage\":0},\"encrypt\":false}"}],"start":1678785688365,"stop":1678785688365}],"attachments":[],"parameters":[{"name":"type","value":"phone"},{"name":"version","value":"1.1.1"},{"name":"arg1","value":"Case{id='20', desc='【选题洞察】全分类-全分类 22年1月份 市场空白选题', params='{\"oneCategoryId\":-1,\"twoCategoryId\":-1,\"currentPage\":1,\"numPerPage\":10,\"periodType\":\"month\",\"timeValue\":[\"2022-01-01 \",\" 2022-01-31\"],\"uuid\":\"TV5kex5r\",\"startMonth\":\"2022-01-01 \",\"endMonth\":\" 2022-01-31\"}', apiID='16', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"total\":20,\"list\":[{\"topicId\":11769,\"topicName\":\"避孕\",\"internetPopularity\":59532.6000,\"bookAmount\":0,\"subscribeState\":0},{\"topicId\":26204,\"topicName\":\"代数簇\",\"internetPopularity\":16.4000,\"bookAmount\":0,\"subscribeState\":0},{\"topicId\":37829,\"topicName\":\"白莲教起义\",\"internetPopularity\":151.8000,\"bookAmount\":0,\"subscribeState\":0},{\"topicId\":41663,\"topicName\":\"裂纹扩展\",\"internetPopularity\":55.6000,\"bookAmount\":0,\"subscribeState\":0},{\"topicId\":59456,\"topicName\":\"奥斯卡金像奖\",\"internetPopularity\":345.0000,\"bookAmount\":0,\"subscribeState\":0},{\"topicId\":20771,\"topicName\":\"古典主义\",\"internetPopularity\":102.0000,\"bookAmount\":0,\"subscribeState\":0},{\"topicId\":3331,\"topicName\":\"南通\",\"internetPopularity\":1290.0000,\"bookAmount\":0,\"subscribeState\":0},{\"topicId\":40221,\"topicName\":\"环境激素\",\"internetPopularity\":527.4000,\"bookAmount\":0,\"subscribeState\":0},{\"topicId\":42539,\"topicName\":\"游击战\",\"internetPopularity\":3903.2000,\"bookAmount\":0,\"subscribeState\":0},{\"topicId\":681,\"topicName\":\"米兰\",\"internetPopularity\":2796.0000,\"bookAmount\":0,\"subscribeState\":0}],\"pageNum\":1,\"pageSize\":10,\"size\":10,\"startRow\":1,\"endRow\":10,\"pages\":2,\"prePage\":0,\"nextPage\":2,\"isFirstPage\":true,\"isLastPage\":false,\"hasPreviousPage\":false,\"hasNextPage\":true,\"navigatePages\":8,\"navigatepageNums\":[1,2],\"navigateFirstPage\":1,\"navigateLastPage\":2},\"encrypt\":false}', checkSQL='null'}"},{"name":"arg0","value":"com.lemon.pojo.API@58833798"}],"start":1678785687351,"stop":1678785688365}
\ No newline at end of file
{"uuid":"9c13108f-7c58-45ab-aefd-7bc7f6b1c82a","historyId":"6534fcf2f9020d6e4de28c59ef087894","fullName":"com.lemon.cases.RaysDataCase.testGetHomePageBookSalesChart","labels":[{"name":"package","value":"com.lemon.cases.RaysDataCase"},{"name":"testClass","value":"com.lemon.cases.RaysDataCase"},{"name":"testMethod","value":"testGetHomePageBookSalesChart"},{"name":"parentSuite","value":"理工数传"},{"name":"suite","value":"睿思数据"},{"name":"subSuite","value":"com.lemon.cases.RaysDataCase"},{"name":"host","value":"Ray-MacBook-Pro-2.local"},{"name":"thread","value":"15239@Ray-MacBook-Pro-2.local.main(1)"},{"name":"framework","value":"testng"},{"name":"language","value":"java"}],"links":[],"name":"获取主页图书数据1","status":"passed","statusDetails":{"known":false,"muted":false,"flaky":false},"stage":"finished","description":"获取主页图书数据1","steps":[{"name":"参数化替换","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"source","value":"null"}],"start":1678785685656,"stop":1678785685656},{"name":"参数化替换","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"source","value":"null"}],"start":1678785685656,"stop":1678785685656},{"name":"接口调用方法","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"api","value":"com.lemon.pojo.API@656a3d6b"},{"name":"cas","value":"Case{id='15', desc='获取主页图书数据1', params='null', apiID='11', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"data\":[{\"createDate\":\"2022-04\",\"bookId\":97075,\"salesPrice\":2218987.00,\"avgSalesPrice\":2230325.75,\"avgSalesQuantity\":40548.33,\"totalSalesPrice\":null,\"salesQuantity\":40340,\"totalSalesQuantity\":40340},{\"createDate\":\"2022-05\",\"bookId\":97075,\"salesPrice\":2822392.00,\"avgSalesPrice\":2230325.75,\"avgSalesQuantity\":40548.33,\"totalSalesPrice\":null,\"salesQuantity\":51311,\"totalSalesQuantity\":91651},{\"createDate\":\"2022-06\",\"bookId\":97075,\"salesPrice\":2420825.00,\"avgSalesPrice\":2230325.75,\"avgSalesQuantity\":40548.33,\"totalSalesPrice\":null,\"salesQuantity\":44015,\"totalSalesQuantity\":135666},{\"createDate\":\"2022-07\",\"bookId\":97075,\"salesPrice\":2707760.00,\"avgSalesPrice\":2230325.75,\"avgSalesQuantity\":40548.33,\"totalSalesPrice\":null,\"salesQuantity\":49232,\"totalSalesQuantity\":184898},{\"createDate\":\"2022-08\",\"bookId\":97075,\"salesPrice\":1607695.50,\"avgSalesPrice\":2230325.75,\"avgSalesQuantity\":40548.33,\"totalSalesPrice\":null,\"salesQuantity\":29223,\"totalSalesQuantity\":214121},{\"createDate\":\"2022-09\",\"bookId\":97075,\"salesPrice\":1604295.00,\"avgSalesPrice\":2230325.75,\"avgSalesQuantity\":40548.33,\"totalSalesPrice\":null,\"salesQuantity\":29169,\"totalSalesQuantity\":243290}],\"encrypt\":false}', checkSQL='null'}"},{"name":"isAuthorization","value":"true"}],"start":1678785685656,"stop":1678785685845},{"name":"响应结果进行断言","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"cas","value":"Case{id='15', desc='获取主页图书数据1', params='null', apiID='11', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"data\":[{\"createDate\":\"2022-04\",\"bookId\":97075,\"salesPrice\":2218987.00,\"avgSalesPrice\":2230325.75,\"avgSalesQuantity\":40548.33,\"totalSalesPrice\":null,\"salesQuantity\":40340,\"totalSalesQuantity\":40340},{\"createDate\":\"2022-05\",\"bookId\":97075,\"salesPrice\":2822392.00,\"avgSalesPrice\":2230325.75,\"avgSalesQuantity\":40548.33,\"totalSalesPrice\":null,\"salesQuantity\":51311,\"totalSalesQuantity\":91651},{\"createDate\":\"2022-06\",\"bookId\":97075,\"salesPrice\":2420825.00,\"avgSalesPrice\":2230325.75,\"avgSalesQuantity\":40548.33,\"totalSalesPrice\":null,\"salesQuantity\":44015,\"totalSalesQuantity\":135666},{\"createDate\":\"2022-07\",\"bookId\":97075,\"salesPrice\":2707760.00,\"avgSalesPrice\":2230325.75,\"avgSalesQuantity\":40548.33,\"totalSalesPrice\":null,\"salesQuantity\":49232,\"totalSalesQuantity\":184898},{\"createDate\":\"2022-08\",\"bookId\":97075,\"salesPrice\":1607695.50,\"avgSalesPrice\":2230325.75,\"avgSalesQuantity\":40548.33,\"totalSalesPrice\":null,\"salesQuantity\":29223,\"totalSalesQuantity\":214121},{\"createDate\":\"2022-09\",\"bookId\":97075,\"salesPrice\":1604295.00,\"avgSalesPrice\":2230325.75,\"avgSalesQuantity\":40548.33,\"totalSalesPrice\":null,\"salesQuantity\":29169,\"totalSalesQuantity\":243290}],\"encrypt\":false}', checkSQL='null'}"},{"name":"body","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":[{\"createDate\":\"2022-08\",\"bookId\":97075,\"salesPrice\":130.00,\"avgSalesPrice\":21.67,\"avgSalesQuantity\":0.33,\"totalSalesPrice\":null,\"salesQuantity\":2,\"totalSalesQuantity\":2},{\"createDate\":\"2022-09\",\"bookId\":null,\"salesPrice\":0,\"avgSalesPrice\":21.67,\"avgSalesQuantity\":0.33,\"totalSalesPrice\":null,\"salesQuantity\":0,\"totalSalesQuantity\":2},{\"createDate\":\"2022-10\",\"bookId\":null,\"salesPrice\":0,\"avgSalesPrice\":21.67,\"avgSalesQuantity\":0.33,\"totalSalesPrice\":null,\"salesQuantity\":0,\"totalSalesQuantity\":2},{\"createDate\":\"2022-11\",\"bookId\":null,\"salesPrice\":0,\"avgSalesPrice\":21.67,\"avgSalesQuantity\":0.33,\"totalSalesPrice\":null,\"salesQuantity\":0,\"totalSalesQuantity\":2},{\"createDate\":\"2022-12\",\"bookId\":null,\"salesPrice\":0,\"avgSalesPrice\":21.67,\"avgSalesQuantity\":0.33,\"totalSalesPrice\":null,\"salesQuantity\":0,\"totalSalesQuantity\":2},{\"createDate\":\"2023-01\",\"bookId\":null,\"salesPrice\":0,\"avgSalesPrice\":21.67,\"avgSalesQuantity\":0.33,\"totalSalesPrice\":null,\"salesQuantity\":0,\"totalSalesQuantity\":2}],\"encrypt\":false}"}],"start":1678785685845,"stop":1678785685846},{"name":"添加回写内容","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"rowNum","value":"15"},{"name":"cellNum","value":"5"},{"name":"body","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":[{\"createDate\":\"2022-08\",\"bookId\":97075,\"salesPrice\":130.00,\"avgSalesPrice\":21.67,\"avgSalesQuantity\":0.33,\"totalSalesPrice\":null,\"salesQuantity\":2,\"totalSalesQuantity\":2},{\"createDate\":\"2022-09\",\"bookId\":null,\"salesPrice\":0,\"avgSalesPrice\":21.67,\"avgSalesQuantity\":0.33,\"totalSalesPrice\":null,\"salesQuantity\":0,\"totalSalesQuantity\":2},{\"createDate\":\"2022-10\",\"bookId\":null,\"salesPrice\":0,\"avgSalesPrice\":21.67,\"avgSalesQuantity\":0.33,\"totalSalesPrice\":null,\"salesQuantity\":0,\"totalSalesQuantity\":2},{\"createDate\":\"2022-11\",\"bookId\":null,\"salesPrice\":0,\"avgSalesPrice\":21.67,\"avgSalesQuantity\":0.33,\"totalSalesPrice\":null,\"salesQuantity\":0,\"totalSalesQuantity\":2},{\"createDate\":\"2022-12\",\"bookId\":null,\"salesPrice\":0,\"avgSalesPrice\":21.67,\"avgSalesQuantity\":0.33,\"totalSalesPrice\":null,\"salesQuantity\":0,\"totalSalesQuantity\":2},{\"createDate\":\"2023-01\",\"bookId\":null,\"salesPrice\":0,\"avgSalesPrice\":21.67,\"avgSalesQuantity\":0.33,\"totalSalesPrice\":null,\"salesQuantity\":0,\"totalSalesQuantity\":2}],\"encrypt\":false}"}],"start":1678785685846,"stop":1678785685846}],"attachments":[],"parameters":[{"name":"type","value":"phone"},{"name":"version","value":"1.1.1"},{"name":"arg1","value":"Case{id='15', desc='获取主页图书数据1', params='null', apiID='11', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"data\":[{\"createDate\":\"2022-04\",\"bookId\":97075,\"salesPrice\":2218987.00,\"avgSalesPrice\":2230325.75,\"avgSalesQuantity\":40548.33,\"totalSalesPrice\":null,\"salesQuantity\":40340,\"totalSalesQuantity\":40340},{\"createDate\":\"2022-05\",\"bookId\":97075,\"salesPrice\":2822392.00,\"avgSalesPrice\":2230325.75,\"avgSalesQuantity\":40548.33,\"totalSalesPrice\":null,\"salesQuantity\":51311,\"totalSalesQuantity\":91651},{\"createDate\":\"2022-06\",\"bookId\":97075,\"salesPrice\":2420825.00,\"avgSalesPrice\":2230325.75,\"avgSalesQuantity\":40548.33,\"totalSalesPrice\":null,\"salesQuantity\":44015,\"totalSalesQuantity\":135666},{\"createDate\":\"2022-07\",\"bookId\":97075,\"salesPrice\":2707760.00,\"avgSalesPrice\":2230325.75,\"avgSalesQuantity\":40548.33,\"totalSalesPrice\":null,\"salesQuantity\":49232,\"totalSalesQuantity\":184898},{\"createDate\":\"2022-08\",\"bookId\":97075,\"salesPrice\":1607695.50,\"avgSalesPrice\":2230325.75,\"avgSalesQuantity\":40548.33,\"totalSalesPrice\":null,\"salesQuantity\":29223,\"totalSalesQuantity\":214121},{\"createDate\":\"2022-09\",\"bookId\":97075,\"salesPrice\":1604295.00,\"avgSalesPrice\":2230325.75,\"avgSalesQuantity\":40548.33,\"totalSalesPrice\":null,\"salesQuantity\":29169,\"totalSalesQuantity\":243290}],\"encrypt\":false}', checkSQL='null'}"},{"name":"arg0","value":"com.lemon.pojo.API@656a3d6b"}],"start":1678785685656,"stop":1678785685846}
\ No newline at end of file
{"uuid":"9ec336ab-6bc2-4048-a9df-e2376fccc192","historyId":"34e0f09d538b856aac04980239353a90","fullName":"com.lemon.cases.RaysDataCase.testAAAAALogin","labels":[{"name":"package","value":"com.lemon.cases.RaysDataCase"},{"name":"testClass","value":"com.lemon.cases.RaysDataCase"},{"name":"testMethod","value":"testAAAAALogin"},{"name":"parentSuite","value":"理工数传"},{"name":"suite","value":"睿思数据"},{"name":"subSuite","value":"com.lemon.cases.RaysDataCase"},{"name":"host","value":"Ray-MacBook-Pro-2.local"},{"name":"thread","value":"15239@Ray-MacBook-Pro-2.local.main(1)"},{"name":"framework","value":"testng"},{"name":"language","value":"java"}],"links":[],"name":"登录睿思数据","status":"passed","statusDetails":{"known":false,"muted":false,"flaky":false},"stage":"finished","description":"登录睿思数据","steps":[{"name":"参数化替换","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"source","value":"{\"loginAccount\":\"\",\"loginPwd\":\"b433f7ac20ae895cc169906858d09a0c\",\"remember\":1}"}],"start":1678785684167,"stop":1678785684167},{"name":"参数化替换","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"source","value":"null"}],"start":1678785684167,"stop":1678785684167},{"name":"接口调用方法","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"api","value":"com.lemon.pojo.API@13803a94"},{"name":"cas","value":"Case{id='4', desc='登录:账号字段为空', params='{\"loginAccount\":\"\",\"loginPwd\":\"b433f7ac20ae895cc169906858d09a0c\",\"remember\":1}', apiID='2', expectValue='{\"errCode\":90040010,\"message\":\"账户密码错误\",\"encrypt\":false}', checkSQL='null'}"},{"name":"isAuthorization","value":"false"}],"start":1678785684167,"stop":1678785684345},{"name":"响应结果进行断言","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"cas","value":"Case{id='4', desc='登录:账号字段为空', params='{\"loginAccount\":\"\",\"loginPwd\":\"b433f7ac20ae895cc169906858d09a0c\",\"remember\":1}', apiID='2', expectValue='{\"errCode\":90040010,\"message\":\"账户密码错误\",\"encrypt\":false}', checkSQL='null'}"},{"name":"body","value":"{\"errCode\":90040010,\"message\":\"账户密码错误\",\"encrypt\":false}"}],"start":1678785684346,"stop":1678785684346},{"name":"添加回写内容","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"rowNum","value":"4"},{"name":"cellNum","value":"5"},{"name":"body","value":"{\"errCode\":90040010,\"message\":\"账户密码错误\",\"encrypt\":false}"}],"start":1678785684346,"stop":1678785684346}],"attachments":[],"parameters":[{"name":"type","value":"phone"},{"name":"version","value":"1.1.1"},{"name":"arg1","value":"Case{id='4', desc='登录:账号字段为空', params='{\"loginAccount\":\"\",\"loginPwd\":\"b433f7ac20ae895cc169906858d09a0c\",\"remember\":1}', apiID='2', expectValue='{\"errCode\":90040010,\"message\":\"账户密码错误\",\"encrypt\":false}', checkSQL='null'}"},{"name":"arg0","value":"com.lemon.pojo.API@13803a94"}],"start":1678785684167,"stop":1678785684346}
\ No newline at end of file
{"uuid":"a047256e-f978-4844-9487-b466a56a8a0f","historyId":"312d91a0defa506d65981c43feeb512","fullName":"com.lemon.cases.RaysDataCase.testGetHomePageTopicWarn","labels":[{"name":"package","value":"com.lemon.cases.RaysDataCase"},{"name":"testClass","value":"com.lemon.cases.RaysDataCase"},{"name":"testMethod","value":"testGetHomePageTopicWarn"},{"name":"parentSuite","value":"理工数传"},{"name":"suite","value":"睿思数据"},{"name":"subSuite","value":"com.lemon.cases.RaysDataCase"},{"name":"host","value":"Ray-MacBook-Pro-2.local"},{"name":"thread","value":"15239@Ray-MacBook-Pro-2.local.main(1)"},{"name":"framework","value":"testng"},{"name":"language","value":"java"}],"links":[],"name":"获取我的主页","status":"passed","statusDetails":{"known":false,"muted":false,"flaky":false},"stage":"finished","description":"获取我的主页","steps":[{"name":"参数化替换","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"source","value":"null"}],"start":1678785686266,"stop":1678785686266},{"name":"参数化替换","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"source","value":"null"}],"start":1678785686266,"stop":1678785686266},{"name":"接口调用方法","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"api","value":"com.lemon.pojo.API@1ad9b8d3"},{"name":"cas","value":"Case{id='11', desc='获取主页面信息', params='null', apiID='7', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"encrypt\":false}', checkSQL='null'}"},{"name":"isAuthorization","value":"true"}],"start":1678785686266,"stop":1678785686414},{"name":"响应结果进行断言","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"cas","value":"Case{id='11', desc='获取主页面信息', params='null', apiID='7', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"encrypt\":false}', checkSQL='null'}"},{"name":"body","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"topic\":369,\"createDate\":\"12月01日\",\"interactPopularityRate\":null,\"salesPriceRate\":-99.5600,\"salesQuantityRate\":-1.2700},\"encrypt\":false}"}],"start":1678785686415,"stop":1678785686415},{"name":"添加回写内容","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"rowNum","value":"11"},{"name":"cellNum","value":"5"},{"name":"body","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"topic\":369,\"createDate\":\"12月01日\",\"interactPopularityRate\":null,\"salesPriceRate\":-99.5600,\"salesQuantityRate\":-1.2700},\"encrypt\":false}"}],"start":1678785686415,"stop":1678785686415}],"attachments":[],"parameters":[{"name":"type","value":"phone"},{"name":"version","value":"1.1.1"},{"name":"arg1","value":"Case{id='11', desc='获取主页面信息', params='null', apiID='7', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"encrypt\":false}', checkSQL='null'}"},{"name":"arg0","value":"com.lemon.pojo.API@1ad9b8d3"}],"start":1678785686265,"stop":1678785686415}
\ No newline at end of file
{"uuid":"aa9f4860-eda8-420a-9071-da6a3aef35ae","historyId":"113d33014371f5ff42ab0ef05448e1dc","fullName":"com.lemon.cases.RaysDataCase.testGetSubscriptList2","labels":[{"name":"package","value":"com.lemon.cases.RaysDataCase"},{"name":"testClass","value":"com.lemon.cases.RaysDataCase"},{"name":"testMethod","value":"testGetSubscriptList2"},{"name":"parentSuite","value":"理工数传"},{"name":"suite","value":"睿思数据"},{"name":"subSuite","value":"com.lemon.cases.RaysDataCase"},{"name":"host","value":"Ray-MacBook-Pro-2.local"},{"name":"thread","value":"15239@Ray-MacBook-Pro-2.local.main(1)"},{"name":"framework","value":"testng"},{"name":"language","value":"java"}],"links":[],"name":"获取我订阅的未发期货","status":"passed","statusDetails":{"known":false,"muted":false,"flaky":false},"stage":"finished","description":"获取我订阅的未发期货","steps":[{"name":"参数化替换","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"source","value":"null"}],"start":1678785686884,"stop":1678785686884},{"name":"参数化替换","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"source","value":"null"}],"start":1678785686884,"stop":1678785686884},{"name":"接口调用方法","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"api","value":"com.lemon.pojo.API@3a7c678b"},{"name":"cas","value":"Case{id='9', desc='获取我订阅的图书', params='null', apiID='5', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"data\":[{\"bookId\":97075,\"bookName\":\"百年孤独\",\"isbn\":\"9787544291170\",\"isbnTime\":\"\",\"editAmount\":\"\",\"printAmount\":\"\",\"format\":\"其他\",\"binding\":\"精装\",\"wordNumber\":\"\",\"price\":198.50,\"label\":\"长篇小说-哥伦比亚-现代\",\"ztCategory\":\"I I7\",\"cip\":\"\",\"cipTime\":\"\",\"cipCreateTime\":\"2022-10-17T12:31:11.000+00:00\",\"contentProfile\":\"哥伦比亚当代长篇小说。《百年孤独》是拉丁美洲魔幻现实主义文学流派的代表作,刻画了布恩迪亚家族七代人的传奇经历,描绘了加勒比海沿岸小镇马孔多的百年兴衰,成为20世纪最重要的经典文学巨著之一。作者以小说作品创建了一个自己的世界,一个浓缩的宇宙,映射了一片大陆及其人民的富足与贫困。\",\"theme\":\"长篇小说-哥伦比亚-现代\",\"advantages\":\"\",\"authorName\":\"加西亚·马尔克斯\",\"authorId\":\"0\",\"publishName\":\"南海出版公司\",\"publishId\":172,\"adviserName\":\"\",\"translatorName\":\"范晔\",\"authorProfile\":\"加西亚·马尔克斯(GarcíaMárquez),哥伦比亚作家,魔幻现实主义文学代表人物。1927年出生于哥伦比亚马格达莱纳海滨小镇阿拉卡塔卡。童年与外祖父母一起生活。1936年随父母迁居苏克雷。1947年考入波哥大国立大学。1948年进入报界。五十年代开始出版文学作品。六十年代初移居墨西哥。1967年出版《百年孤独》。1982年获诺贝尔文学奖。其作品被认为是“20世纪的文学标杆”,影响滋养了几代中文作家。 主要作品有长篇小说《百年孤独》《霍乱时期的爱情》,中篇小说《没有人给他写信的上校》《一桩事先张扬的凶杀案》,短篇小说集《世上最美的溺水者》《礼拜二午睡时刻》,自传《活着为了讲述》,非虚构文学作品《一个海难幸存者的故事》等。 作为魔幻现实主义文学的代表作,《百年孤独》酝酿达十数年之久,1965年开始创作,1967年出版,在拉丁美洲乃至全球引起巨大轰动,被誉为“再现拉丁美洲社会历史图景的鸿篇巨著”、“值得全人类阅读的文学巨著”。\",\"jdUrl\":\"\",\"dbUrl\":\"https://book.douban.com/subject/27107109/\",\"wxCommentUrl\":\"\",\"oneCategoryId\":101,\"oneCategoryName\":\"文学\",\"twoCategoryId\":20001,\"twoCategoryName\":\"小说\",\"threeCategoryId\":3000007,\"threeCategoryName\":\"外国小说\",\"catalogue\":\"\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/3b7fa4b5f85b2f99c2e7da56615169c3.jpg\",\"isFutures\":3,\"isSerial\":0,\"publishDate\":\"2017-08-01\",\"planPublishDate\":\"\",\"readerObject\":\"\",\"bookTitle\":\"\",\"updateTime\":\"2022-11-08T16:32:17.000+00:00\",\"reprintYear\":\"\",\"reprintMonth\":\"\",\"publishYear\":\"2017\",\"publishMonth\":\"08\",\"isbnId\":0,\"isNewbook\":0,\"ddUrl\":\"http://product.dangdang.com/25138856.html\",\"subbookName\":\"\",\"togetherbookName\":\"\",\"volumebookNo\":\"\",\"volumebookName\":\"\",\"warnTime\":\"2022-11-09\",\"showBookStatis\":false}],\"encrypt\":false}', checkSQL='null'}"},{"name":"isAuthorization","value":"true"}],"start":1678785686884,"stop":1678785687018},{"name":"响应结果进行断言","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"cas","value":"Case{id='9', desc='获取我订阅的图书', params='null', apiID='5', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"data\":[{\"bookId\":97075,\"bookName\":\"百年孤独\",\"isbn\":\"9787544291170\",\"isbnTime\":\"\",\"editAmount\":\"\",\"printAmount\":\"\",\"format\":\"其他\",\"binding\":\"精装\",\"wordNumber\":\"\",\"price\":198.50,\"label\":\"长篇小说-哥伦比亚-现代\",\"ztCategory\":\"I I7\",\"cip\":\"\",\"cipTime\":\"\",\"cipCreateTime\":\"2022-10-17T12:31:11.000+00:00\",\"contentProfile\":\"哥伦比亚当代长篇小说。《百年孤独》是拉丁美洲魔幻现实主义文学流派的代表作,刻画了布恩迪亚家族七代人的传奇经历,描绘了加勒比海沿岸小镇马孔多的百年兴衰,成为20世纪最重要的经典文学巨著之一。作者以小说作品创建了一个自己的世界,一个浓缩的宇宙,映射了一片大陆及其人民的富足与贫困。\",\"theme\":\"长篇小说-哥伦比亚-现代\",\"advantages\":\"\",\"authorName\":\"加西亚·马尔克斯\",\"authorId\":\"0\",\"publishName\":\"南海出版公司\",\"publishId\":172,\"adviserName\":\"\",\"translatorName\":\"范晔\",\"authorProfile\":\"加西亚·马尔克斯(GarcíaMárquez),哥伦比亚作家,魔幻现实主义文学代表人物。1927年出生于哥伦比亚马格达莱纳海滨小镇阿拉卡塔卡。童年与外祖父母一起生活。1936年随父母迁居苏克雷。1947年考入波哥大国立大学。1948年进入报界。五十年代开始出版文学作品。六十年代初移居墨西哥。1967年出版《百年孤独》。1982年获诺贝尔文学奖。其作品被认为是“20世纪的文学标杆”,影响滋养了几代中文作家。 主要作品有长篇小说《百年孤独》《霍乱时期的爱情》,中篇小说《没有人给他写信的上校》《一桩事先张扬的凶杀案》,短篇小说集《世上最美的溺水者》《礼拜二午睡时刻》,自传《活着为了讲述》,非虚构文学作品《一个海难幸存者的故事》等。 作为魔幻现实主义文学的代表作,《百年孤独》酝酿达十数年之久,1965年开始创作,1967年出版,在拉丁美洲乃至全球引起巨大轰动,被誉为“再现拉丁美洲社会历史图景的鸿篇巨著”、“值得全人类阅读的文学巨著”。\",\"jdUrl\":\"\",\"dbUrl\":\"https://book.douban.com/subject/27107109/\",\"wxCommentUrl\":\"\",\"oneCategoryId\":101,\"oneCategoryName\":\"文学\",\"twoCategoryId\":20001,\"twoCategoryName\":\"小说\",\"threeCategoryId\":3000007,\"threeCategoryName\":\"外国小说\",\"catalogue\":\"\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/3b7fa4b5f85b2f99c2e7da56615169c3.jpg\",\"isFutures\":3,\"isSerial\":0,\"publishDate\":\"2017-08-01\",\"planPublishDate\":\"\",\"readerObject\":\"\",\"bookTitle\":\"\",\"updateTime\":\"2022-11-08T16:32:17.000+00:00\",\"reprintYear\":\"\",\"reprintMonth\":\"\",\"publishYear\":\"2017\",\"publishMonth\":\"08\",\"isbnId\":0,\"isNewbook\":0,\"ddUrl\":\"http://product.dangdang.com/25138856.html\",\"subbookName\":\"\",\"togetherbookName\":\"\",\"volumebookNo\":\"\",\"volumebookName\":\"\",\"warnTime\":\"2022-11-09\",\"showBookStatis\":false}],\"encrypt\":false}', checkSQL='null'}"},{"name":"body","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":[{\"bookId\":1183532,\"bookName\":\"枕上诗书\",\"isbn\":\"9787514376685\",\"isbnTime\":\"\",\"editAmount\":\"\",\"printAmount\":\"\",\"format\":\"其他\",\"binding\":\"平装\",\"wordNumber\":\"689000\",\"price\":45.00,\"label\":\"古典诗歌-诗歌欣赏-中国\",\"ztCategory\":\"I I2 I207 I207.2\",\"cip\":\"\",\"cipTime\":\"\",\"cipCreateTime\":\"2022-11-28T13:14:59.000+00:00\",\"contentProfile\":\"品读古典诗词中的浪漫与哀愁,读一首诗,讲一段故事。全书从每小节的引子,到文中引申,涵盖中国古代经典诗词歌赋近百首。每个诗词歌赋,引出一段发人深思的故事,每个故事的背后,隐藏着更多的诗词歌赋……书名取李清照的词:“枕上诗书闲处好,门前风景雨来佳。”全书汇集从先秦到大清,各大家、各种类经典诗词歌赋,由作者解析创作而成。书中有闲情,有深意,有情怀,也有故事,读来轻松愉悦。 \\n \\n有人说,一部宋词,就是一部情史。 \\n此“情”,不仅是风花雪月的儿女之情, \\n亦是对人生百态的感悟之情。 \\n \\n历经千年洗礼,宋词之美,不仅没有过时, \\n反而因岁月润泽而愈发醇香,动人。 \\n品读ZUI美宋词,重拾我们内心对美的向往。 \\n\",\"theme\":\"古典诗歌-诗歌欣赏-中国\",\"advantages\":\"\",\"authorName\":\"徐若央\",\"authorId\":\"0\",\"publishName\":\"现代出版社\",\"publishId\":517,\"adviserName\":\"\",\"translatorName\":\"\",\"authorProfile\":\"\",\"jdUrl\":\"\",\"dbUrl\":\"https://book.douban.com/subject/33439138/\",\"wxCommentUrl\":\"\",\"oneCategoryId\":101,\"oneCategoryName\":\"文学\",\"twoCategoryId\":20002,\"twoCategoryName\":\"文学\",\"threeCategoryId\":3000037,\"threeCategoryName\":\"诗歌词曲\",\"catalogue\":\"\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/494d2298e50e9388b5f429ddd12f347b.jpg\",\"isFutures\":3,\"isSerial\":0,\"publishDate\":\"2019-05-01\",\"planPublishDate\":\"\",\"readerObject\":\"\",\"bookTitle\":\"\",\"updateTime\":\"2023-03-13T12:30:47.000+00:00\",\"reprintYear\":\"\",\"reprintMonth\":\"\",\"publishYear\":\"2019\",\"publishMonth\":\"05\",\"isbnId\":0,\"isNewbook\":0,\"ddUrl\":\"http://product.dangdang.com/27860344.html\",\"subbookName\":\"\",\"togetherbookName\":\"\",\"volumebookNo\":\"\",\"volumebookName\":\"\",\"printType\":\"newbook\",\"warnTime\":\"2022-11-30\",\"showBookStatis\":false}],\"encrypt\":false}"}],"start":1678785687018,"stop":1678785687018},{"name":"添加回写内容","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"rowNum","value":"9"},{"name":"cellNum","value":"5"},{"name":"body","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":[{\"bookId\":1183532,\"bookName\":\"枕上诗书\",\"isbn\":\"9787514376685\",\"isbnTime\":\"\",\"editAmount\":\"\",\"printAmount\":\"\",\"format\":\"其他\",\"binding\":\"平装\",\"wordNumber\":\"689000\",\"price\":45.00,\"label\":\"古典诗歌-诗歌欣赏-中国\",\"ztCategory\":\"I I2 I207 I207.2\",\"cip\":\"\",\"cipTime\":\"\",\"cipCreateTime\":\"2022-11-28T13:14:59.000+00:00\",\"contentProfile\":\"品读古典诗词中的浪漫与哀愁,读一首诗,讲一段故事。全书从每小节的引子,到文中引申,涵盖中国古代经典诗词歌赋近百首。每个诗词歌赋,引出一段发人深思的故事,每个故事的背后,隐藏着更多的诗词歌赋……书名取李清照的词:“枕上诗书闲处好,门前风景雨来佳。”全书汇集从先秦到大清,各大家、各种类经典诗词歌赋,由作者解析创作而成。书中有闲情,有深意,有情怀,也有故事,读来轻松愉悦。 \\n \\n有人说,一部宋词,就是一部情史。 \\n此“情”,不仅是风花雪月的儿女之情, \\n亦是对人生百态的感悟之情。 \\n \\n历经千年洗礼,宋词之美,不仅没有过时, \\n反而因岁月润泽而愈发醇香,动人。 \\n品读ZUI美宋词,重拾我们内心对美的向往。 \\n\",\"theme\":\"古典诗歌-诗歌欣赏-中国\",\"advantages\":\"\",\"authorName\":\"徐若央\",\"authorId\":\"0\",\"publishName\":\"现代出版社\",\"publishId\":517,\"adviserName\":\"\",\"translatorName\":\"\",\"authorProfile\":\"\",\"jdUrl\":\"\",\"dbUrl\":\"https://book.douban.com/subject/33439138/\",\"wxCommentUrl\":\"\",\"oneCategoryId\":101,\"oneCategoryName\":\"文学\",\"twoCategoryId\":20002,\"twoCategoryName\":\"文学\",\"threeCategoryId\":3000037,\"threeCategoryName\":\"诗歌词曲\",\"catalogue\":\"\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/494d2298e50e9388b5f429ddd12f347b.jpg\",\"isFutures\":3,\"isSerial\":0,\"publishDate\":\"2019-05-01\",\"planPublishDate\":\"\",\"readerObject\":\"\",\"bookTitle\":\"\",\"updateTime\":\"2023-03-13T12:30:47.000+00:00\",\"reprintYear\":\"\",\"reprintMonth\":\"\",\"publishYear\":\"2019\",\"publishMonth\":\"05\",\"isbnId\":0,\"isNewbook\":0,\"ddUrl\":\"http://product.dangdang.com/27860344.html\",\"subbookName\":\"\",\"togetherbookName\":\"\",\"volumebookNo\":\"\",\"volumebookName\":\"\",\"printType\":\"newbook\",\"warnTime\":\"2022-11-30\",\"showBookStatis\":false}],\"encrypt\":false}"}],"start":1678785687018,"stop":1678785687018}],"attachments":[],"parameters":[{"name":"type","value":"phone"},{"name":"version","value":"1.1.1"},{"name":"arg1","value":"Case{id='9', desc='获取我订阅的图书', params='null', apiID='5', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"data\":[{\"bookId\":97075,\"bookName\":\"百年孤独\",\"isbn\":\"9787544291170\",\"isbnTime\":\"\",\"editAmount\":\"\",\"printAmount\":\"\",\"format\":\"其他\",\"binding\":\"精装\",\"wordNumber\":\"\",\"price\":198.50,\"label\":\"长篇小说-哥伦比亚-现代\",\"ztCategory\":\"I I7\",\"cip\":\"\",\"cipTime\":\"\",\"cipCreateTime\":\"2022-10-17T12:31:11.000+00:00\",\"contentProfile\":\"哥伦比亚当代长篇小说。《百年孤独》是拉丁美洲魔幻现实主义文学流派的代表作,刻画了布恩迪亚家族七代人的传奇经历,描绘了加勒比海沿岸小镇马孔多的百年兴衰,成为20世纪最重要的经典文学巨著之一。作者以小说作品创建了一个自己的世界,一个浓缩的宇宙,映射了一片大陆及其人民的富足与贫困。\",\"theme\":\"长篇小说-哥伦比亚-现代\",\"advantages\":\"\",\"authorName\":\"加西亚·马尔克斯\",\"authorId\":\"0\",\"publishName\":\"南海出版公司\",\"publishId\":172,\"adviserName\":\"\",\"translatorName\":\"范晔\",\"authorProfile\":\"加西亚·马尔克斯(GarcíaMárquez),哥伦比亚作家,魔幻现实主义文学代表人物。1927年出生于哥伦比亚马格达莱纳海滨小镇阿拉卡塔卡。童年与外祖父母一起生活。1936年随父母迁居苏克雷。1947年考入波哥大国立大学。1948年进入报界。五十年代开始出版文学作品。六十年代初移居墨西哥。1967年出版《百年孤独》。1982年获诺贝尔文学奖。其作品被认为是“20世纪的文学标杆”,影响滋养了几代中文作家。 主要作品有长篇小说《百年孤独》《霍乱时期的爱情》,中篇小说《没有人给他写信的上校》《一桩事先张扬的凶杀案》,短篇小说集《世上最美的溺水者》《礼拜二午睡时刻》,自传《活着为了讲述》,非虚构文学作品《一个海难幸存者的故事》等。 作为魔幻现实主义文学的代表作,《百年孤独》酝酿达十数年之久,1965年开始创作,1967年出版,在拉丁美洲乃至全球引起巨大轰动,被誉为“再现拉丁美洲社会历史图景的鸿篇巨著”、“值得全人类阅读的文学巨著”。\",\"jdUrl\":\"\",\"dbUrl\":\"https://book.douban.com/subject/27107109/\",\"wxCommentUrl\":\"\",\"oneCategoryId\":101,\"oneCategoryName\":\"文学\",\"twoCategoryId\":20001,\"twoCategoryName\":\"小说\",\"threeCategoryId\":3000007,\"threeCategoryName\":\"外国小说\",\"catalogue\":\"\",\"coverPicture\":\"https://oss.5rs.me/oss/spider/image/jpg/3b7fa4b5f85b2f99c2e7da56615169c3.jpg\",\"isFutures\":3,\"isSerial\":0,\"publishDate\":\"2017-08-01\",\"planPublishDate\":\"\",\"readerObject\":\"\",\"bookTitle\":\"\",\"updateTime\":\"2022-11-08T16:32:17.000+00:00\",\"reprintYear\":\"\",\"reprintMonth\":\"\",\"publishYear\":\"2017\",\"publishMonth\":\"08\",\"isbnId\":0,\"isNewbook\":0,\"ddUrl\":\"http://product.dangdang.com/25138856.html\",\"subbookName\":\"\",\"togetherbookName\":\"\",\"volumebookNo\":\"\",\"volumebookName\":\"\",\"warnTime\":\"2022-11-09\",\"showBookStatis\":false}],\"encrypt\":false}', checkSQL='null'}"},{"name":"arg0","value":"com.lemon.pojo.API@3a7c678b"}],"start":1678785686884,"stop":1678785687018}
\ No newline at end of file
#Tue Mar 14 17:21:36 CST 2023
allure.link.issue.pattern=https\://example.org/issue/{}
allure.link.tms.pattern=https\://example.org/tms/{}
allure.results.directory=target/allure-results
{"uuid":"b80c5688-f8ed-4878-b15a-9f131c89e558","historyId":"5c319eaf08693645510714c565174eef","fullName":"com.lemon.cases.RaysDataCase.testAAAAALogin","labels":[{"name":"package","value":"com.lemon.cases.RaysDataCase"},{"name":"testClass","value":"com.lemon.cases.RaysDataCase"},{"name":"testMethod","value":"testAAAAALogin"},{"name":"parentSuite","value":"理工数传"},{"name":"suite","value":"睿思数据"},{"name":"subSuite","value":"com.lemon.cases.RaysDataCase"},{"name":"host","value":"Ray-MacBook-Pro-2.local"},{"name":"thread","value":"15239@Ray-MacBook-Pro-2.local.main(1)"},{"name":"framework","value":"testng"},{"name":"language","value":"java"}],"links":[],"name":"登录睿思数据","status":"passed","statusDetails":{"known":false,"muted":false,"flaky":false},"stage":"finished","description":"登录睿思数据","steps":[{"name":"参数化替换","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"source","value":"{\"loginAccount\":\"18696191160\",\"loginPwd\":\"b433f7ac20ae895cc169906858d09a1c\",\"remember\":1}"}],"start":1678785684053,"stop":1678785684053},{"name":"参数化替换","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"source","value":"null"}],"start":1678785684053,"stop":1678785684053},{"name":"接口调用方法","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"api","value":"com.lemon.pojo.API@13803a94"},{"name":"cas","value":"Case{id='3', desc='登录:正确账号+错误密码', params='{\"loginAccount\":\"18696191160\",\"loginPwd\":\"b433f7ac20ae895cc169906858d09a1c\",\"remember\":1}', apiID='2', expectValue='{\"errCode\":90040010,\"message\":\"账户密码错误\",\"encrypt\":false}', checkSQL='null'}"},{"name":"isAuthorization","value":"false"}],"start":1678785684053,"stop":1678785684164},{"name":"响应结果进行断言","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"cas","value":"Case{id='3', desc='登录:正确账号+错误密码', params='{\"loginAccount\":\"18696191160\",\"loginPwd\":\"b433f7ac20ae895cc169906858d09a1c\",\"remember\":1}', apiID='2', expectValue='{\"errCode\":90040010,\"message\":\"账户密码错误\",\"encrypt\":false}', checkSQL='null'}"},{"name":"body","value":"{\"errCode\":90040010,\"message\":\"账户密码错误\",\"encrypt\":false}"}],"start":1678785684165,"stop":1678785684165},{"name":"添加回写内容","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"rowNum","value":"3"},{"name":"cellNum","value":"5"},{"name":"body","value":"{\"errCode\":90040010,\"message\":\"账户密码错误\",\"encrypt\":false}"}],"start":1678785684165,"stop":1678785684165}],"attachments":[],"parameters":[{"name":"type","value":"phone"},{"name":"version","value":"1.1.1"},{"name":"arg1","value":"Case{id='3', desc='登录:正确账号+错误密码', params='{\"loginAccount\":\"18696191160\",\"loginPwd\":\"b433f7ac20ae895cc169906858d09a1c\",\"remember\":1}', apiID='2', expectValue='{\"errCode\":90040010,\"message\":\"账户密码错误\",\"encrypt\":false}', checkSQL='null'}"},{"name":"arg0","value":"com.lemon.pojo.API@13803a94"}],"start":1678785684052,"stop":1678785684165}
\ No newline at end of file
{"uuid":"c2f81092-f653-459b-adc4-3c7beb8980fe","historyId":"8f7067bf4ceac4244a108ea680a243df","fullName":"com.lemon.cases.RaysDataCase.testGetSubscriptList","labels":[{"name":"package","value":"com.lemon.cases.RaysDataCase"},{"name":"testClass","value":"com.lemon.cases.RaysDataCase"},{"name":"testMethod","value":"testGetSubscriptList"},{"name":"parentSuite","value":"理工数传"},{"name":"suite","value":"睿思数据"},{"name":"subSuite","value":"com.lemon.cases.RaysDataCase"},{"name":"host","value":"Ray-MacBook-Pro-2.local"},{"name":"thread","value":"15239@Ray-MacBook-Pro-2.local.main(1)"},{"name":"framework","value":"testng"},{"name":"language","value":"java"}],"links":[],"name":"获取我订阅的未发期货","status":"passed","statusDetails":{"known":false,"muted":false,"flaky":false},"stage":"finished","description":"获取我订阅的未发期货","steps":[{"name":"参数化替换","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"source","value":"null"}],"start":1678785686771,"stop":1678785686771},{"name":"参数化替换","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"source","value":"null"}],"start":1678785686771,"stop":1678785686771},{"name":"接口调用方法","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"api","value":"com.lemon.pojo.API@45292ec1"},{"name":"cas","value":"Case{id='8', desc='获取我订阅的未发期货', params='null', apiID='4', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"data\":[],\"encrypt\":false}', checkSQL='null'}"},{"name":"isAuthorization","value":"true"}],"start":1678785686771,"stop":1678785686882},{"name":"响应结果进行断言","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"cas","value":"Case{id='8', desc='获取我订阅的未发期货', params='null', apiID='4', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"data\":[],\"encrypt\":false}', checkSQL='null'}"},{"name":"body","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":[{\"authorId\":32700,\"authorName\":\"余华\",\"authorProfile\":\"余华,1960年4月3日出生,浙江海盐人。在文革中读完小学和中学,此后从事过五年牙医。1983年开始写作,至今已出版长篇小说3卷、中短篇小说集6卷、随笔集3卷。其中《活着》和《许三观卖血记》同时入选百位批评家和文学编辑评选的“九十年代最有影响的十部作品”。其作品被翻译成英文、法文、德文、俄文、意大利文、荷兰文、挪威文、韩文和日文等国外出版。\",\"label\":\"[\\\"文学\\\",\\\"小说\\\",\\\"社会小说\\\"]\",\"bookName\":\"文学或者音乐\",\"bookId\":0,\"updateTime\":\"2023-03-13T16:07:00.000+00:00\",\"productAmount\":87}],\"encrypt\":false}"}],"start":1678785686882,"stop":1678785686883},{"name":"添加回写内容","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"rowNum","value":"8"},{"name":"cellNum","value":"5"},{"name":"body","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":[{\"authorId\":32700,\"authorName\":\"余华\",\"authorProfile\":\"余华,1960年4月3日出生,浙江海盐人。在文革中读完小学和中学,此后从事过五年牙医。1983年开始写作,至今已出版长篇小说3卷、中短篇小说集6卷、随笔集3卷。其中《活着》和《许三观卖血记》同时入选百位批评家和文学编辑评选的“九十年代最有影响的十部作品”。其作品被翻译成英文、法文、德文、俄文、意大利文、荷兰文、挪威文、韩文和日文等国外出版。\",\"label\":\"[\\\"文学\\\",\\\"小说\\\",\\\"社会小说\\\"]\",\"bookName\":\"文学或者音乐\",\"bookId\":0,\"updateTime\":\"2023-03-13T16:07:00.000+00:00\",\"productAmount\":87}],\"encrypt\":false}"}],"start":1678785686883,"stop":1678785686883}],"attachments":[],"parameters":[{"name":"type","value":"phone"},{"name":"version","value":"1.1.1"},{"name":"arg1","value":"Case{id='8', desc='获取我订阅的未发期货', params='null', apiID='4', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"data\":[],\"encrypt\":false}', checkSQL='null'}"},{"name":"arg0","value":"com.lemon.pojo.API@45292ec1"}],"start":1678785686771,"stop":1678785686883}
\ No newline at end of file
{"uuid":"c44b35af-50d7-4fd4-9fa9-f4223fbf0546","historyId":"ce89e4354feeb845bd067a33634d547","fullName":"com.lemon.cases.RaysDataCase.testGetLatestRecordList","labels":[{"name":"package","value":"com.lemon.cases.RaysDataCase"},{"name":"testClass","value":"com.lemon.cases.RaysDataCase"},{"name":"testMethod","value":"testGetLatestRecordList"},{"name":"parentSuite","value":"理工数传"},{"name":"suite","value":"睿思数据"},{"name":"subSuite","value":"com.lemon.cases.RaysDataCase"},{"name":"host","value":"Ray-MacBook-Pro-2.local"},{"name":"thread","value":"15239@Ray-MacBook-Pro-2.local.main(1)"},{"name":"framework","value":"testng"},{"name":"language","value":"java"}],"links":[],"name":"获取主页图书数据1","status":"passed","statusDetails":{"known":false,"muted":false,"flaky":false},"stage":"finished","description":"获取主页图书数据1","steps":[{"name":"参数化替换","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"source","value":"null"}],"start":1678785686527,"stop":1678785686527},{"name":"参数化替换","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"source","value":"null"}],"start":1678785686527,"stop":1678785686527},{"name":"接口调用方法","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"api","value":"com.lemon.pojo.API@55acec99"},{"name":"cas","value":"Case{id='18', desc='【选题洞察】最近分析', params='null', apiID='14', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"data\":[{\"userId\":14,\"oneCategoryId\":-1,\"oneCategoryName\":\"全分类\",\"twoCategoryId\":-1,\"twoCategoryName\":\"全分类\",\"startMonth\":\"2022-01-01\",\"endMonth\":\"2022-01-31\",\"createTime\":\"2022-11-09 15:56:42\"},{\"userId\":14,\"oneCategoryId\":-1,\"oneCategoryName\":\"全分类\",\"twoCategoryId\":-1,\"twoCategoryName\":\"全分类\",\"startMonth\":\"2022-09-01\",\"endMonth\":\"2022-09-30\",\"createTime\":\"2022-11-09 13:18:59\"},{\"userId\":14,\"oneCategoryId\":-1,\"oneCategoryName\":\"全分类\",\"twoCategoryId\":-1,\"twoCategoryName\":\"全分类\",\"startMonth\":\"2022-06-01\",\"endMonth\":\"2022-06-30\",\"createTime\":\"2022-11-09 10:50:37\"}],\"encrypt\":false}', checkSQL='null'}"},{"name":"isAuthorization","value":"true"}],"start":1678785686527,"stop":1678785686652},{"name":"响应结果进行断言","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"cas","value":"Case{id='18', desc='【选题洞察】最近分析', params='null', apiID='14', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"data\":[{\"userId\":14,\"oneCategoryId\":-1,\"oneCategoryName\":\"全分类\",\"twoCategoryId\":-1,\"twoCategoryName\":\"全分类\",\"startMonth\":\"2022-01-01\",\"endMonth\":\"2022-01-31\",\"createTime\":\"2022-11-09 15:56:42\"},{\"userId\":14,\"oneCategoryId\":-1,\"oneCategoryName\":\"全分类\",\"twoCategoryId\":-1,\"twoCategoryName\":\"全分类\",\"startMonth\":\"2022-09-01\",\"endMonth\":\"2022-09-30\",\"createTime\":\"2022-11-09 13:18:59\"},{\"userId\":14,\"oneCategoryId\":-1,\"oneCategoryName\":\"全分类\",\"twoCategoryId\":-1,\"twoCategoryName\":\"全分类\",\"startMonth\":\"2022-06-01\",\"endMonth\":\"2022-06-30\",\"createTime\":\"2022-11-09 10:50:37\"}],\"encrypt\":false}', checkSQL='null'}"},{"name":"body","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":[{\"userId\":14,\"oneCategoryId\":101,\"oneCategoryName\":\"文学\",\"twoCategoryId\":20004,\"twoCategoryName\":\"传记\",\"startMonth\":\"2022-11-01\",\"endMonth\":\"2022-11-30\",\"createTime\":\"2023-01-10 19:30:15\"},{\"userId\":14,\"oneCategoryId\":107,\"oneCategoryName\":\"人文社科\",\"twoCategoryId\":20031,\"twoCategoryName\":\"文化\",\"startMonth\":\"2022-11-01\",\"endMonth\":\"2022-11-30\",\"createTime\":\"2023-01-10 16:56:27\"},{\"userId\":14,\"oneCategoryId\":101,\"oneCategoryName\":\"文学\",\"twoCategoryId\":-1,\"twoCategoryName\":\"全分类\",\"startMonth\":\"2022-11-01\",\"endMonth\":\"2022-11-30\",\"createTime\":\"2023-01-10 16:56:18\"}],\"encrypt\":false}"}],"start":1678785686652,"stop":1678785686652},{"name":"添加回写内容","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"rowNum","value":"18"},{"name":"cellNum","value":"5"},{"name":"body","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":[{\"userId\":14,\"oneCategoryId\":101,\"oneCategoryName\":\"文学\",\"twoCategoryId\":20004,\"twoCategoryName\":\"传记\",\"startMonth\":\"2022-11-01\",\"endMonth\":\"2022-11-30\",\"createTime\":\"2023-01-10 19:30:15\"},{\"userId\":14,\"oneCategoryId\":107,\"oneCategoryName\":\"人文社科\",\"twoCategoryId\":20031,\"twoCategoryName\":\"文化\",\"startMonth\":\"2022-11-01\",\"endMonth\":\"2022-11-30\",\"createTime\":\"2023-01-10 16:56:27\"},{\"userId\":14,\"oneCategoryId\":101,\"oneCategoryName\":\"文学\",\"twoCategoryId\":-1,\"twoCategoryName\":\"全分类\",\"startMonth\":\"2022-11-01\",\"endMonth\":\"2022-11-30\",\"createTime\":\"2023-01-10 16:56:18\"}],\"encrypt\":false}"}],"start":1678785686652,"stop":1678785686652}],"attachments":[],"parameters":[{"name":"type","value":"phone"},{"name":"version","value":"1.1.1"},{"name":"arg1","value":"Case{id='18', desc='【选题洞察】最近分析', params='null', apiID='14', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"data\":[{\"userId\":14,\"oneCategoryId\":-1,\"oneCategoryName\":\"全分类\",\"twoCategoryId\":-1,\"twoCategoryName\":\"全分类\",\"startMonth\":\"2022-01-01\",\"endMonth\":\"2022-01-31\",\"createTime\":\"2022-11-09 15:56:42\"},{\"userId\":14,\"oneCategoryId\":-1,\"oneCategoryName\":\"全分类\",\"twoCategoryId\":-1,\"twoCategoryName\":\"全分类\",\"startMonth\":\"2022-09-01\",\"endMonth\":\"2022-09-30\",\"createTime\":\"2022-11-09 13:18:59\"},{\"userId\":14,\"oneCategoryId\":-1,\"oneCategoryName\":\"全分类\",\"twoCategoryId\":-1,\"twoCategoryName\":\"全分类\",\"startMonth\":\"2022-06-01\",\"endMonth\":\"2022-06-30\",\"createTime\":\"2022-11-09 10:50:37\"}],\"encrypt\":false}', checkSQL='null'}"},{"name":"arg0","value":"com.lemon.pojo.API@55acec99"}],"start":1678785686527,"stop":1678785686652}
\ No newline at end of file
{"uuid":"c54ebb49-8d97-4cc2-aff7-0efd7dd292d8","name":"RAYS支付","children":["94188c86-1516-4fbd-9605-20b92ea0d6a1","f58b526d-faf7-41a2-8bf5-b6d8e63d074a","6ca73660-c298-4a6b-9eb4-19b5adf407d2","68b5a65a-73e7-4b98-b939-0a8775c42c5e","8eda44a9-7886-47c7-80ca-5f324f27bd0a","1e6e3a4b-3184-47c2-8878-b3018ae2355b"],"befores":[],"afters":[],"start":1678785688991,"stop":1678785690490}
\ No newline at end of file
{"uuid":"c69a1cdc-2589-4d16-8659-ab071656edab","historyId":"745846f5e15b29c4f1a0d006c6069c7a","fullName":"com.lemon.cases.RaysDataCase.testGetHomePageBookCommentChart","labels":[{"name":"package","value":"com.lemon.cases.RaysDataCase"},{"name":"testClass","value":"com.lemon.cases.RaysDataCase"},{"name":"testMethod","value":"testGetHomePageBookCommentChart"},{"name":"parentSuite","value":"理工数传"},{"name":"suite","value":"睿思数据"},{"name":"subSuite","value":"com.lemon.cases.RaysDataCase"},{"name":"host","value":"Ray-MacBook-Pro-2.local"},{"name":"thread","value":"15239@Ray-MacBook-Pro-2.local.main(1)"},{"name":"framework","value":"testng"},{"name":"language","value":"java"}],"links":[],"name":"获取主页图书数据1","status":"passed","statusDetails":{"known":false,"muted":false,"flaky":false},"stage":"finished","description":"获取主页图书数据1","steps":[{"name":"参数化替换","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"source","value":"null"}],"start":1678785685511,"stop":1678785685511},{"name":"参数化替换","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"source","value":"null"}],"start":1678785685511,"stop":1678785685511},{"name":"接口调用方法","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"api","value":"com.lemon.pojo.API@25b38203"},{"name":"cas","value":"Case{id='16', desc='获取主页图书数据2', params='null', apiID='12', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"data\":[],\"encrypt\":false}', checkSQL='null'}"},{"name":"isAuthorization","value":"true"}],"start":1678785685512,"stop":1678785685651},{"name":"响应结果进行断言","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"cas","value":"Case{id='16', desc='获取主页图书数据2', params='null', apiID='12', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"data\":[],\"encrypt\":false}', checkSQL='null'}"},{"name":"body","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":[{\"bookId\":97075,\"createDate\":\"2022-11-29T16:00:00.000+00:00\",\"starLevel\":1,\"channelType\":\"豆瓣\",\"userCount\":0,\"updateTime\":\"2022-11-29T18:56:01.000+00:00\"},{\"bookId\":97075,\"createDate\":\"2022-11-29T16:00:00.000+00:00\",\"starLevel\":2,\"channelType\":\"豆瓣\",\"userCount\":0,\"updateTime\":\"2022-11-29T18:56:01.000+00:00\"},{\"bookId\":97075,\"createDate\":\"2022-11-29T16:00:00.000+00:00\",\"starLevel\":3,\"channelType\":\"豆瓣\",\"userCount\":0,\"updateTime\":\"2022-11-29T18:56:01.000+00:00\"},{\"bookId\":97075,\"createDate\":\"2022-11-29T16:00:00.000+00:00\",\"starLevel\":4,\"channelType\":\"豆瓣\",\"userCount\":0,\"updateTime\":\"2022-11-29T18:56:01.000+00:00\"},{\"bookId\":97075,\"createDate\":\"2022-11-29T16:00:00.000+00:00\",\"starLevel\":5,\"channelType\":\"豆瓣\",\"userCount\":0,\"updateTime\":\"2022-11-29T18:56:01.000+00:00\"}],\"encrypt\":false}"}],"start":1678785685652,"stop":1678785685652},{"name":"添加回写内容","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"rowNum","value":"16"},{"name":"cellNum","value":"5"},{"name":"body","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":[{\"bookId\":97075,\"createDate\":\"2022-11-29T16:00:00.000+00:00\",\"starLevel\":1,\"channelType\":\"豆瓣\",\"userCount\":0,\"updateTime\":\"2022-11-29T18:56:01.000+00:00\"},{\"bookId\":97075,\"createDate\":\"2022-11-29T16:00:00.000+00:00\",\"starLevel\":2,\"channelType\":\"豆瓣\",\"userCount\":0,\"updateTime\":\"2022-11-29T18:56:01.000+00:00\"},{\"bookId\":97075,\"createDate\":\"2022-11-29T16:00:00.000+00:00\",\"starLevel\":3,\"channelType\":\"豆瓣\",\"userCount\":0,\"updateTime\":\"2022-11-29T18:56:01.000+00:00\"},{\"bookId\":97075,\"createDate\":\"2022-11-29T16:00:00.000+00:00\",\"starLevel\":4,\"channelType\":\"豆瓣\",\"userCount\":0,\"updateTime\":\"2022-11-29T18:56:01.000+00:00\"},{\"bookId\":97075,\"createDate\":\"2022-11-29T16:00:00.000+00:00\",\"starLevel\":5,\"channelType\":\"豆瓣\",\"userCount\":0,\"updateTime\":\"2022-11-29T18:56:01.000+00:00\"}],\"encrypt\":false}"}],"start":1678785685652,"stop":1678785685652}],"attachments":[],"parameters":[{"name":"type","value":"phone"},{"name":"version","value":"1.1.1"},{"name":"arg1","value":"Case{id='16', desc='获取主页图书数据2', params='null', apiID='12', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"data\":[],\"encrypt\":false}', checkSQL='null'}"},{"name":"arg0","value":"com.lemon.pojo.API@25b38203"}],"start":1678785685511,"stop":1678785685652}
\ No newline at end of file
{"uuid":"cfc94350-16ac-4724-98a3-dfbeb91d724d","historyId":"68740c355d54603808990dbd53e75000","fullName":"com.lemon.cases.RaysDataCase.testGetHomePageBookStatis","labels":[{"name":"package","value":"com.lemon.cases.RaysDataCase"},{"name":"testClass","value":"com.lemon.cases.RaysDataCase"},{"name":"testMethod","value":"testGetHomePageBookStatis"},{"name":"parentSuite","value":"理工数传"},{"name":"suite","value":"睿思数据"},{"name":"subSuite","value":"com.lemon.cases.RaysDataCase"},{"name":"host","value":"Ray-MacBook-Pro-2.local"},{"name":"thread","value":"15239@Ray-MacBook-Pro-2.local.main(1)"},{"name":"framework","value":"testng"},{"name":"language","value":"java"}],"links":[],"name":"获取主页图书数据","status":"passed","statusDetails":{"known":false,"muted":false,"flaky":false},"stage":"finished","description":"获取主页图书数据","steps":[{"name":"参数化替换","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"source","value":"null"}],"start":1678785685850,"stop":1678785685850},{"name":"参数化替换","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"source","value":"null"}],"start":1678785685850,"stop":1678785685850},{"name":"接口调用方法","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"api","value":"com.lemon.pojo.API@322204dc"},{"name":"cas","value":"Case{id='14', desc='获取主页书本数据', params='null', apiID='10', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"lastMonSalesQuantity\":29169,\"salesQuantity\":338816,\"lastMonOffsetSalesQuantity\":-54,\"offsetSalesQuantity\":29169,\"commentScore\":9.70,\"newCommenterCount\":0,\"lastMonth\":\"2022-09-01\"},\"encrypt\":false}', checkSQL='null'}"},{"name":"isAuthorization","value":"true"}],"start":1678785685850,"stop":1678785686062},{"name":"响应结果进行断言","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"cas","value":"Case{id='14', desc='获取主页书本数据', params='null', apiID='10', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"lastMonSalesQuantity\":29169,\"salesQuantity\":338816,\"lastMonOffsetSalesQuantity\":-54,\"offsetSalesQuantity\":29169,\"commentScore\":9.70,\"newCommenterCount\":0,\"lastMonth\":\"2022-09-01\"},\"encrypt\":false}', checkSQL='null'}"},{"name":"body","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"lastMonSalesQuantity\":0,\"salesQuantity\":2,\"lastMonOffsetSalesQuantity\":0,\"offsetSalesQuantity\":0,\"commentScore\":0.00,\"newCommenterCount\":0,\"lastMonth\":\"2023-01-01\"},\"encrypt\":false}"}],"start":1678785686063,"stop":1678785686063},{"name":"添加回写内容","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"rowNum","value":"14"},{"name":"cellNum","value":"5"},{"name":"body","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"lastMonSalesQuantity\":0,\"salesQuantity\":2,\"lastMonOffsetSalesQuantity\":0,\"offsetSalesQuantity\":0,\"commentScore\":0.00,\"newCommenterCount\":0,\"lastMonth\":\"2023-01-01\"},\"encrypt\":false}"}],"start":1678785686063,"stop":1678785686063}],"attachments":[],"parameters":[{"name":"type","value":"phone"},{"name":"version","value":"1.1.1"},{"name":"arg1","value":"Case{id='14', desc='获取主页书本数据', params='null', apiID='10', expectValue='{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"lastMonSalesQuantity\":29169,\"salesQuantity\":338816,\"lastMonOffsetSalesQuantity\":-54,\"offsetSalesQuantity\":29169,\"commentScore\":9.70,\"newCommenterCount\":0,\"lastMonth\":\"2022-09-01\"},\"encrypt\":false}', checkSQL='null'}"},{"name":"arg0","value":"com.lemon.pojo.API@322204dc"}],"start":1678785685850,"stop":1678785686063}
\ No newline at end of file
{"uuid":"d0c5a7ef-2a8b-45d6-bd54-7be0756738de","name":"com.lemon.cases.PayCase","children":["94188c86-1516-4fbd-9605-20b92ea0d6a1","f58b526d-faf7-41a2-8bf5-b6d8e63d074a","6ca73660-c298-4a6b-9eb4-19b5adf407d2","68b5a65a-73e7-4b98-b939-0a8775c42c5e","8eda44a9-7886-47c7-80ca-5f324f27bd0a","1e6e3a4b-3184-47c2-8878-b3018ae2355b"],"befores":[],"afters":[],"start":1678785688991,"stop":1678785690491}
\ No newline at end of file
{"uuid":"dd51ced0-0d83-4817-9975-1720b9e44b57","name":"理工数传","children":["87555d90-8d3f-4c94-8d8d-f84d01e42f9d","c54ebb49-8d97-4cc2-aff7-0efd7dd292d8"],"befores":[{"name":"init","status":"passed","stage":"finished","description":"","steps":[{"name":"初始化","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1678785682718,"stop":1678785682722}],"attachments":[],"parameters":[],"start":1678785682706,"stop":1678785682722}],"afters":[{"name":"finish","status":"passed","stage":"finished","description":"","steps":[{"name":"结束","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[],"start":1678785690492,"stop":1678785690532}],"attachments":[],"parameters":[],"start":1678785690492,"stop":1678785690532}],"start":1678785682694,"stop":1678785690532}
\ No newline at end of file
{"buildName":"Lemon","name":"Maven","type":"maven"}
\ No newline at end of file
{"uuid":"f58b526d-faf7-41a2-8bf5-b6d8e63d074a","historyId":"cc43527f46ded97e530cc47dbbb947c5","fullName":"com.lemon.cases.PayCase.testPay","labels":[{"name":"package","value":"com.lemon.cases.PayCase"},{"name":"testClass","value":"com.lemon.cases.PayCase"},{"name":"testMethod","value":"testPay"},{"name":"parentSuite","value":"理工数传"},{"name":"suite","value":"RAYS支付"},{"name":"subSuite","value":"com.lemon.cases.PayCase"},{"name":"host","value":"Ray-MacBook-Pro-2.local"},{"name":"thread","value":"15239@Ray-MacBook-Pro-2.local.main(1)"},{"name":"framework","value":"testng"},{"name":"language","value":"java"}],"links":[],"name":"testPay","status":"passed","statusDetails":{"known":false,"muted":false,"flaky":false},"stage":"finished","description":"创建支付订单","steps":[{"name":"响应结果断言","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"expectValue","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"officialAccountsId\":28,\"payAccounts\":23,\"officialAccountsName\":\"RAYS蓝海生态\",\"domain\":\"weixin28.5rs.me\",\"payDomain\":\"weixin23.5rs.me\",\"manageDomain\":\"wechat22.5rs.me\",\"icon\":\"https://oss.5rs.me/oss/uploadfe/jpg/bbee8ff1fe52e5c58ab669d937a7f406.jpg\",\"description\":\"RAYS,给你别致的读书体验\",\"iosAlipayOpen\":0,\"payMchId\":\"1639325477\",\"currentPagePay\":0,\"phoneAuthOpen\":0,\"payMethod\":1}}"},{"name":"body","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"officialAccountsId\":28,\"payAccounts\":23,\"officialAccountsName\":\"RAYS蓝海生态\",\"domain\":\"weixin28.5rs.me\",\"payDomain\":\"weixin23.5rs.me\",\"manageDomain\":\"wechat22.5rs.me\",\"icon\":\"https://oss.5rs.me/oss/uploadfe/jpg/bbee8ff1fe52e5c58ab669d937a7f406.jpg\",\"description\":\"RAYS,给你别致的读书体验\",\"iosAlipayOpen\":0,\"payMchId\":\"1639325477\",\"currentPagePay\":0,\"phoneAuthOpen\":0,\"payMethod\":1}}"}],"start":1678785689401,"stop":1678785689401}],"attachments":[],"parameters":[{"name":"arg3","value":"{\"errCode\":0,\"message\":\"操作成功!\",\"data\":{\"officialAccountsId\":28,\"payAccounts\":23,\"officialAccountsName\":\"RAYS蓝海生态\",\"domain\":\"weixin28.5rs.me\",\"payDomain\":\"weixin23.5rs.me\",\"manageDomain\":\"wechat22.5rs.me\",\"icon\":\"https://oss.5rs.me/oss/uploadfe/jpg/bbee8ff1fe52e5c58ab669d937a7f406.jpg\",\"description\":\"RAYS,给你别致的读书体验\",\"iosAlipayOpen\":0,\"payMchId\":\"1639325477\",\"currentPagePay\":0,\"phoneAuthOpen\":0,\"payMethod\":1}}"},{"name":"arg2","value":"https://weixin28.5rs.me/channelcenter/v1.0/accountSetting/getOpreateManageInfo?officialAccountsId=28"},{"name":"type","value":"phone"},{"name":"version","value":"1.1.1"},{"name":"arg1","value":"蓝海生态跳RAYS"},{"name":"arg0","value":"2"}],"start":1678785689203,"stop":1678785689401}
\ No newline at end of file
{"uuid":"ff2a6c5e-060d-40b9-a553-ae4ba962aa34","historyId":"cc761b985d6dc4fa11fe631bf1d7eeef","fullName":"com.lemon.cases.RaysDataCase.testAAAAALogin","labels":[{"name":"package","value":"com.lemon.cases.RaysDataCase"},{"name":"testClass","value":"com.lemon.cases.RaysDataCase"},{"name":"testMethod","value":"testAAAAALogin"},{"name":"parentSuite","value":"理工数传"},{"name":"suite","value":"睿思数据"},{"name":"subSuite","value":"com.lemon.cases.RaysDataCase"},{"name":"host","value":"Ray-MacBook-Pro-2.local"},{"name":"thread","value":"15239@Ray-MacBook-Pro-2.local.main(1)"},{"name":"framework","value":"testng"},{"name":"language","value":"java"}],"links":[],"name":"登录睿思数据","status":"passed","statusDetails":{"known":false,"muted":false,"flaky":false},"stage":"finished","description":"登录睿思数据","steps":[{"name":"参数化替换","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"source","value":"{\"loginAccount\":\"18696191161\",\"loginPwd\":\"b433f7ac20ae895cc169906858d09a0c\",\"remember\":1}"}],"start":1678785683901,"stop":1678785683901},{"name":"参数化替换","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"source","value":"null"}],"start":1678785683901,"stop":1678785683901},{"name":"接口调用方法","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"api","value":"com.lemon.pojo.API@13803a94"},{"name":"cas","value":"Case{id='2', desc='登录:错误账号+正确密码', params='{\"loginAccount\":\"18696191161\",\"loginPwd\":\"b433f7ac20ae895cc169906858d09a0c\",\"remember\":1}', apiID='2', expectValue='{\"errCode\":90040010,\"message\":\"账户密码错误\",\"encrypt\":false}', checkSQL='null'}"},{"name":"isAuthorization","value":"false"}],"start":1678785683901,"stop":1678785684050},{"name":"响应结果进行断言","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"cas","value":"Case{id='2', desc='登录:错误账号+正确密码', params='{\"loginAccount\":\"18696191161\",\"loginPwd\":\"b433f7ac20ae895cc169906858d09a0c\",\"remember\":1}', apiID='2', expectValue='{\"errCode\":90040010,\"message\":\"账户密码错误\",\"encrypt\":false}', checkSQL='null'}"},{"name":"body","value":"{\"errCode\":90040010,\"message\":\"账户密码错误\",\"encrypt\":false}"}],"start":1678785684050,"stop":1678785684050},{"name":"添加回写内容","status":"passed","stage":"finished","steps":[],"attachments":[],"parameters":[{"name":"rowNum","value":"2"},{"name":"cellNum","value":"5"},{"name":"body","value":"{\"errCode\":90040010,\"message\":\"账户密码错误\",\"encrypt\":false}"}],"start":1678785684050,"stop":1678785684050}],"attachments":[],"parameters":[{"name":"type","value":"phone"},{"name":"version","value":"1.1.1"},{"name":"arg1","value":"Case{id='2', desc='登录:错误账号+正确密码', params='{\"loginAccount\":\"18696191161\",\"loginPwd\":\"b433f7ac20ae895cc169906858d09a0c\",\"remember\":1}', apiID='2', expectValue='{\"errCode\":90040010,\"message\":\"账户密码错误\",\"encrypt\":false}', checkSQL='null'}"},{"name":"arg0","value":"com.lemon.pojo.API@13803a94"}],"start":1678785683901,"stop":1678785684050}
\ No newline at end of file
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!-- Generated by Apache Maven Doxia Site Renderer 1.7.4 at 2023-03-14 -->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="zh" lang="zh">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Allure</title>
<style type="text/css" media="all">
@import url("./css/maven-base.css");
@import url("./css/maven-theme.css");
@import url("./css/site.css");
</style>
<link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
<meta http-equiv="Content-Language" content="zh" />
</head>
<body class="composite">
<div id="banner">
<div class="clear">
<hr/>
</div>
</div>
<div id="breadcrumbs">
<div class="xleft">
<span id="publishDate">最近更新: 2023-03-14</span>
&nbsp;| <span id="projectVersion">版本: 1.0-SNAPSHOT</span>
</div>
<div class="xright">
</div>
<div class="clear">
<hr/>
</div>
</div>
<div id="leftColumn">
<div id="navcolumn">
<a href="http://maven.apache.org/" title="构建依靠 Maven" class="poweredBy">
<img class="poweredBy" alt="构建依靠 Maven" src="./images/logos/maven-feather.png" />
</a>
</div>
</div>
<div id="bodyColumn">
<div id="contentBox">
<br /><meta http-equiv="refresh" content="0;url=allure-maven-plugin/index.html" /><a href="allure-maven-plugin/index.html">
</div>
</div>
<div class="clear">
<hr/>
</div>
<div id="footer">
<div class="xright">
Copyright &#169; 2023.
All rights reserved.
</div>
<div class="clear">
<hr/>
</div>
</div>
</body>
</html>
<?xml version="1.0" encoding="UTF-8"?>
<testsuite xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://maven.apache.org/surefire/maven-surefire-plugin/xsd/surefire-test-report.xsd" name="TestSuite" time="8.396" tests="33" errors="0" skipped="0" failures="0">
<testsuite xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://maven.apache.org/surefire/maven-surefire-plugin/xsd/surefire-test-report.xsd" name="TestSuite" time="6.597" tests="33" errors="0" skipped="0" failures="0">
<properties>
<property name="java.specification.version" value="18"/>
<property name="sun.jnu.encoding" value="UTF-8"/>
<property name="java.class.path" value="/Users/ray/IdeaProjects/Lemon/target/test-classes:/Users/ray/IdeaProjects/Lemon/target/classes:/Users/ray/.m2/repository/com/alibaba/fastjson/1.2.83/fastjson-1.2.83.jar:/Users/ray/.m2/repository/org/slf4j/slf4j-nop/1.7.2/slf4j-nop-1.7.2.jar:/Users/ray/.m2/repository/org/slf4j/slf4j-api/1.7.2/slf4j-api-1.7.2.jar:/Users/ray/.m2/repository/cn/afterturn/easypoi-base/4.0.0/easypoi-base-4.0.0.jar:/Users/ray/.m2/repository/org/apache/poi/poi/4.0.0/poi-4.0.0.jar:/Users/ray/.m2/repository/org/apache/commons/commons-collections4/4.2/commons-collections4-4.2.jar:/Users/ray/.m2/repository/org/apache/poi/poi-ooxml/4.0.0/poi-ooxml-4.0.0.jar:/Users/ray/.m2/repository/org/apache/commons/commons-compress/1.18/commons-compress-1.18.jar:/Users/ray/.m2/repository/com/github/virtuald/curvesapi/1.04/curvesapi-1.04.jar:/Users/ray/.m2/repository/org/apache/poi/poi-ooxml-schemas/4.0.0/poi-ooxml-schemas-4.0.0.jar:/Users/ray/.m2/repository/org/apache/xmlbeans/xmlbeans/3.0.1/xmlbeans-3.0.1.jar:/Users/ray/.m2/repository/com/google/guava/guava/16.0.1/guava-16.0.1.jar:/Users/ray/.m2/repository/org/apache/commons/commons-lang3/3.2.1/commons-lang3-3.2.1.jar:/Users/ray/.m2/repository/ognl/ognl/3.2.6/ognl-3.2.6.jar:/Users/ray/.m2/repository/org/javassist/javassist/3.20.0-GA/javassist-3.20.0-GA.jar:/Users/ray/.m2/repository/javax/validation/validation-api/1.1.0.Final/validation-api-1.1.0.Final.jar:/Users/ray/.m2/repository/cn/afterturn/easypoi-web/4.0.0/easypoi-web-4.0.0.jar:/Users/ray/.m2/repository/org/springframework/spring-web/3.1.1.RELEASE/spring-web-3.1.1.RELEASE.jar:/Users/ray/.m2/repository/aopalliance/aopalliance/1.0/aopalliance-1.0.jar:/Users/ray/.m2/repository/org/springframework/spring-beans/3.1.1.RELEASE/spring-beans-3.1.1.RELEASE.jar:/Users/ray/.m2/repository/org/springframework/spring-context/3.1.1.RELEASE/spring-context-3.1.1.RELEASE.jar:/Users/ray/.m2/repository/org/springframework/spring-aop/3.1.1.RELEASE/spring-aop-3.1.1.RELEASE.jar:/Users/ray/.m2/repository/org/springframework/spring-webmvc/3.1.1.RELEASE/spring-webmvc-3.1.1.RELEASE.jar:/Users/ray/.m2/repository/org/springframework/spring-asm/3.1.1.RELEASE/spring-asm-3.1.1.RELEASE.jar:/Users/ray/.m2/repository/org/springframework/spring-context-support/3.1.1.RELEASE/spring-context-support-3.1.1.RELEASE.jar:/Users/ray/.m2/repository/org/springframework/spring-expression/3.1.1.RELEASE/spring-expression-3.1.1.RELEASE.jar:/Users/ray/.m2/repository/org/springframework/spring-core/3.1.1.RELEASE/spring-core-3.1.1.RELEASE.jar:/Users/ray/.m2/repository/cn/afterturn/easypoi-annotation/4.0.0/easypoi-annotation-4.0.0.jar:/Users/ray/.m2/repository/org/dom4j/dom4j/2.0.0/dom4j-2.0.0.jar:/Users/ray/.m2/repository/jaxen/jaxen/1.1.6/jaxen-1.1.6.jar:/Users/ray/.m2/repository/org/testng/testng/6.14.3/testng-6.14.3.jar:/Users/ray/.m2/repository/com/beust/jcommander/1.72/jcommander-1.72.jar:/Users/ray/.m2/repository/org/apache-extras/beanshell/bsh/2.0b6/bsh-2.0b6.jar:/Users/ray/.m2/repository/org/apache/httpcomponents/httpclient/4.5.10/httpclient-4.5.10.jar:/Users/ray/.m2/repository/commons-logging/commons-logging/1.2/commons-logging-1.2.jar:/Users/ray/.m2/repository/commons-codec/commons-codec/1.11/commons-codec-1.11.jar:/Users/ray/.m2/repository/org/hibernate/hibernate-validator/5.2.4.Final/hibernate-validator-5.2.4.Final.jar:/Users/ray/.m2/repository/org/jboss/logging/jboss-logging/3.2.1.Final/jboss-logging-3.2.1.Final.jar:/Users/ray/.m2/repository/com/fasterxml/classmate/1.1.0/classmate-1.1.0.jar:/Users/ray/.m2/repository/javax/el/javax.el-api/3.0.0/javax.el-api-3.0.0.jar:/Users/ray/.m2/repository/javax/xml/bind/jaxb-api/2.3.1/jaxb-api-2.3.1.jar:/Users/ray/.m2/repository/javax/activation/javax.activation-api/1.2.0/javax.activation-api-1.2.0.jar:/Users/ray/.m2/repository/org/apache/httpcomponents/httpcore/4.4.12/httpcore-4.4.12.jar:/Users/ray/.m2/repository/mysql/mysql-connector-java/8.0.13/mysql-connector-java-8.0.13.jar:/Users/ray/.m2/repository/com/google/protobuf/protobuf-java/3.6.1/protobuf-java-3.6.1.jar:/Users/ray/.m2/repository/commons-dbutils/commons-dbutils/1.6/commons-dbutils-1.6.jar:/Users/ray/.m2/repository/com/oracle/database/jdbc/ojdbc6/11.2.0.4/ojdbc6-11.2.0.4.jar:/Users/ray/.m2/repository/com/oracle/database/jdbc/ucp/11.2.0.4/ucp-11.2.0.4.jar:/Users/ray/.m2/repository/com/oracle/database/security/oraclepki/11.2.0.4/oraclepki-11.2.0.4.jar:/Users/ray/.m2/repository/com/oracle/database/security/osdt_cert/11.2.0.4/osdt_cert-11.2.0.4.jar:/Users/ray/.m2/repository/com/oracle/database/security/osdt_core/11.2.0.4/osdt_core-11.2.0.4.jar:/Users/ray/.m2/repository/com/oracle/database/ha/simplefan/11.2.0.4/simplefan-11.2.0.4.jar:/Users/ray/.m2/repository/com/oracle/database/ha/ons/11.2.0.4/ons-11.2.0.4.jar:/Users/ray/.m2/repository/log4j/log4j/1.2.12/log4j-1.2.12.jar:/Users/ray/.m2/repository/io/qameta/allure/allure-testng/2.17.3/allure-testng-2.17.3.jar:/Users/ray/.m2/repository/io/qameta/allure/allure-java-commons/2.17.3/allure-java-commons-2.17.3.jar:/Users/ray/.m2/repository/io/qameta/allure/allure-model/2.17.3/allure-model-2.17.3.jar:/Users/ray/.m2/repository/io/qameta/allure/allure-test-filter/2.17.3/allure-test-filter-2.17.3.jar:/Users/ray/.m2/repository/org/aspectj/aspectjweaver/1.9.8/aspectjweaver-1.9.8.jar:/Users/ray/.m2/repository/javax/mail/mail/1.4/mail-1.4.jar:/Users/ray/.m2/repository/javax/activation/activation/1.1/activation-1.1.jar:"/>
<property name="java.class.path" value="/Users/ray/IdeaProjects/Lemon/target/test-classes:/Users/ray/IdeaProjects/Lemon/target/classes:/Users/ray/.m2/repository/com/alibaba/fastjson/1.2.83/fastjson-1.2.83.jar:/Users/ray/.m2/repository/org/slf4j/slf4j-nop/1.7.2/slf4j-nop-1.7.2.jar:/Users/ray/.m2/repository/org/slf4j/slf4j-api/1.7.2/slf4j-api-1.7.2.jar:/Users/ray/.m2/repository/cn/afterturn/easypoi-base/4.0.0/easypoi-base-4.0.0.jar:/Users/ray/.m2/repository/org/apache/poi/poi/4.0.0/poi-4.0.0.jar:/Users/ray/.m2/repository/org/apache/commons/commons-collections4/4.2/commons-collections4-4.2.jar:/Users/ray/.m2/repository/org/apache/poi/poi-ooxml/4.0.0/poi-ooxml-4.0.0.jar:/Users/ray/.m2/repository/org/apache/commons/commons-compress/1.18/commons-compress-1.18.jar:/Users/ray/.m2/repository/com/github/virtuald/curvesapi/1.04/curvesapi-1.04.jar:/Users/ray/.m2/repository/org/apache/poi/poi-ooxml-schemas/4.0.0/poi-ooxml-schemas-4.0.0.jar:/Users/ray/.m2/repository/org/apache/xmlbeans/xmlbeans/3.0.1/xmlbeans-3.0.1.jar:/Users/ray/.m2/repository/com/google/guava/guava/16.0.1/guava-16.0.1.jar:/Users/ray/.m2/repository/org/apache/commons/commons-lang3/3.2.1/commons-lang3-3.2.1.jar:/Users/ray/.m2/repository/ognl/ognl/3.2.6/ognl-3.2.6.jar:/Users/ray/.m2/repository/org/javassist/javassist/3.20.0-GA/javassist-3.20.0-GA.jar:/Users/ray/.m2/repository/javax/validation/validation-api/1.1.0.Final/validation-api-1.1.0.Final.jar:/Users/ray/.m2/repository/cn/afterturn/easypoi-web/4.0.0/easypoi-web-4.0.0.jar:/Users/ray/.m2/repository/org/springframework/spring-web/3.1.1.RELEASE/spring-web-3.1.1.RELEASE.jar:/Users/ray/.m2/repository/aopalliance/aopalliance/1.0/aopalliance-1.0.jar:/Users/ray/.m2/repository/org/springframework/spring-beans/3.1.1.RELEASE/spring-beans-3.1.1.RELEASE.jar:/Users/ray/.m2/repository/org/springframework/spring-context/3.1.1.RELEASE/spring-context-3.1.1.RELEASE.jar:/Users/ray/.m2/repository/org/springframework/spring-aop/3.1.1.RELEASE/spring-aop-3.1.1.RELEASE.jar:/Users/ray/.m2/repository/org/springframework/spring-webmvc/3.1.1.RELEASE/spring-webmvc-3.1.1.RELEASE.jar:/Users/ray/.m2/repository/org/springframework/spring-asm/3.1.1.RELEASE/spring-asm-3.1.1.RELEASE.jar:/Users/ray/.m2/repository/org/springframework/spring-context-support/3.1.1.RELEASE/spring-context-support-3.1.1.RELEASE.jar:/Users/ray/.m2/repository/org/springframework/spring-expression/3.1.1.RELEASE/spring-expression-3.1.1.RELEASE.jar:/Users/ray/.m2/repository/org/springframework/spring-core/3.1.1.RELEASE/spring-core-3.1.1.RELEASE.jar:/Users/ray/.m2/repository/cn/afterturn/easypoi-annotation/4.0.0/easypoi-annotation-4.0.0.jar:/Users/ray/.m2/repository/org/dom4j/dom4j/2.0.0/dom4j-2.0.0.jar:/Users/ray/.m2/repository/jaxen/jaxen/1.1.6/jaxen-1.1.6.jar:/Users/ray/.m2/repository/org/testng/testng/6.14.3/testng-6.14.3.jar:/Users/ray/.m2/repository/com/beust/jcommander/1.72/jcommander-1.72.jar:/Users/ray/.m2/repository/org/apache-extras/beanshell/bsh/2.0b6/bsh-2.0b6.jar:/Users/ray/.m2/repository/org/apache/httpcomponents/httpclient/4.5.3/httpclient-4.5.3.jar:/Users/ray/.m2/repository/commons-logging/commons-logging/1.2/commons-logging-1.2.jar:/Users/ray/.m2/repository/commons-codec/commons-codec/1.9/commons-codec-1.9.jar:/Users/ray/.m2/repository/org/hibernate/hibernate-validator/5.2.4.Final/hibernate-validator-5.2.4.Final.jar:/Users/ray/.m2/repository/org/jboss/logging/jboss-logging/3.2.1.Final/jboss-logging-3.2.1.Final.jar:/Users/ray/.m2/repository/com/fasterxml/classmate/1.1.0/classmate-1.1.0.jar:/Users/ray/.m2/repository/javax/el/javax.el-api/3.0.0/javax.el-api-3.0.0.jar:/Users/ray/.m2/repository/javax/xml/bind/jaxb-api/2.3.1/jaxb-api-2.3.1.jar:/Users/ray/.m2/repository/javax/activation/javax.activation-api/1.2.0/javax.activation-api-1.2.0.jar:/Users/ray/.m2/repository/org/apache/httpcomponents/httpcore/4.4.12/httpcore-4.4.12.jar:/Users/ray/.m2/repository/mysql/mysql-connector-java/8.0.13/mysql-connector-java-8.0.13.jar:/Users/ray/.m2/repository/com/google/protobuf/protobuf-java/3.6.1/protobuf-java-3.6.1.jar:/Users/ray/.m2/repository/commons-dbutils/commons-dbutils/1.6/commons-dbutils-1.6.jar:/Users/ray/.m2/repository/com/oracle/database/jdbc/ojdbc6/11.2.0.4/ojdbc6-11.2.0.4.jar:/Users/ray/.m2/repository/com/oracle/database/jdbc/ucp/11.2.0.4/ucp-11.2.0.4.jar:/Users/ray/.m2/repository/com/oracle/database/security/oraclepki/11.2.0.4/oraclepki-11.2.0.4.jar:/Users/ray/.m2/repository/com/oracle/database/security/osdt_cert/11.2.0.4/osdt_cert-11.2.0.4.jar:/Users/ray/.m2/repository/com/oracle/database/security/osdt_core/11.2.0.4/osdt_core-11.2.0.4.jar:/Users/ray/.m2/repository/com/oracle/database/ha/simplefan/11.2.0.4/simplefan-11.2.0.4.jar:/Users/ray/.m2/repository/com/oracle/database/ha/ons/11.2.0.4/ons-11.2.0.4.jar:/Users/ray/.m2/repository/log4j/log4j/1.2.12/log4j-1.2.12.jar:/Users/ray/.m2/repository/io/qameta/allure/allure-testng/2.17.3/allure-testng-2.17.3.jar:/Users/ray/.m2/repository/io/qameta/allure/allure-java-commons/2.17.3/allure-java-commons-2.17.3.jar:/Users/ray/.m2/repository/io/qameta/allure/allure-model/2.17.3/allure-model-2.17.3.jar:/Users/ray/.m2/repository/io/qameta/allure/allure-test-filter/2.17.3/allure-test-filter-2.17.3.jar:/Users/ray/.m2/repository/org/aspectj/aspectjweaver/1.9.8/aspectjweaver-1.9.8.jar:/Users/ray/.m2/repository/javax/mail/mail/1.4/mail-1.4.jar:/Users/ray/.m2/repository/javax/activation/activation/1.1/activation-1.1.jar:/Users/ray/.m2/repository/com/offbytwo/jenkins/jenkins-client/0.3.7/jenkins-client-0.3.7.jar:/Users/ray/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.3.4/jackson-annotations-2.3.4.jar:/Users/ray/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.3.4/jackson-core-2.3.4.jar:/Users/ray/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.3.4/jackson-databind-2.3.4.jar:/Users/ray/.m2/repository/dom4j/dom4j/1.6.1/dom4j-1.6.1.jar:/Users/ray/.m2/repository/net/sf/json-lib/json-lib/2.4/json-lib-2.4-jdk15.jar:/Users/ray/.m2/repository/commons-beanutils/commons-beanutils/1.8.0/commons-beanutils-1.8.0.jar:/Users/ray/.m2/repository/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar:/Users/ray/.m2/repository/net/sf/ezmorph/ezmorph/1.0.6/ezmorph-1.0.6.jar:/Users/ray/.m2/repository/commons-lang/commons-lang/2.6/commons-lang-2.6.jar:/Users/ray/.m2/repository/commons-io/commons-io/2.4/commons-io-2.4.jar:/Users/ray/.m2/repository/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01.jar:"/>
<property name="java.vm.vendor" value="Oracle Corporation"/>
<property name="sun.arch.data.model" value="64"/>
<property name="java.vendor.url" value="https://java.oracle.com/"/>
......@@ -12,9 +12,9 @@
<property name="sun.java.launcher" value="SUN_STANDARD"/>
<property name="user.country" value="CN"/>
<property name="sun.boot.library.path" value="/Library/Java/JavaVirtualMachines/jdk-18.0.1.1.jdk/Contents/Home/lib"/>
<property name="sun.java.command" value="/Users/ray/IdeaProjects/Lemon/target/surefire/surefirebooter17895375521510735215.jar /Users/ray/IdeaProjects/Lemon/target/surefire 2023-03-14T17-21-21_723-jvmRun1 surefire2447928530864398841tmp surefire_011400255287757468958tmp"/>
<property name="sun.java.command" value="/Users/ray/IdeaProjects/Lemon/target/surefire/surefirebooter868335789872302598.jar /Users/ray/IdeaProjects/Lemon/target/surefire 2023-03-24T00-16-42_699-jvmRun1 surefire11032453578490044599tmp surefire_08229115755009804698tmp"/>
<property name="jdk.debug" value="release"/>
<property name="surefire.test.class.path" value="/Users/ray/IdeaProjects/Lemon/target/test-classes:/Users/ray/IdeaProjects/Lemon/target/classes:/Users/ray/.m2/repository/com/alibaba/fastjson/1.2.83/fastjson-1.2.83.jar:/Users/ray/.m2/repository/org/slf4j/slf4j-nop/1.7.2/slf4j-nop-1.7.2.jar:/Users/ray/.m2/repository/org/slf4j/slf4j-api/1.7.2/slf4j-api-1.7.2.jar:/Users/ray/.m2/repository/cn/afterturn/easypoi-base/4.0.0/easypoi-base-4.0.0.jar:/Users/ray/.m2/repository/org/apache/poi/poi/4.0.0/poi-4.0.0.jar:/Users/ray/.m2/repository/org/apache/commons/commons-collections4/4.2/commons-collections4-4.2.jar:/Users/ray/.m2/repository/org/apache/poi/poi-ooxml/4.0.0/poi-ooxml-4.0.0.jar:/Users/ray/.m2/repository/org/apache/commons/commons-compress/1.18/commons-compress-1.18.jar:/Users/ray/.m2/repository/com/github/virtuald/curvesapi/1.04/curvesapi-1.04.jar:/Users/ray/.m2/repository/org/apache/poi/poi-ooxml-schemas/4.0.0/poi-ooxml-schemas-4.0.0.jar:/Users/ray/.m2/repository/org/apache/xmlbeans/xmlbeans/3.0.1/xmlbeans-3.0.1.jar:/Users/ray/.m2/repository/com/google/guava/guava/16.0.1/guava-16.0.1.jar:/Users/ray/.m2/repository/org/apache/commons/commons-lang3/3.2.1/commons-lang3-3.2.1.jar:/Users/ray/.m2/repository/ognl/ognl/3.2.6/ognl-3.2.6.jar:/Users/ray/.m2/repository/org/javassist/javassist/3.20.0-GA/javassist-3.20.0-GA.jar:/Users/ray/.m2/repository/javax/validation/validation-api/1.1.0.Final/validation-api-1.1.0.Final.jar:/Users/ray/.m2/repository/cn/afterturn/easypoi-web/4.0.0/easypoi-web-4.0.0.jar:/Users/ray/.m2/repository/org/springframework/spring-web/3.1.1.RELEASE/spring-web-3.1.1.RELEASE.jar:/Users/ray/.m2/repository/aopalliance/aopalliance/1.0/aopalliance-1.0.jar:/Users/ray/.m2/repository/org/springframework/spring-beans/3.1.1.RELEASE/spring-beans-3.1.1.RELEASE.jar:/Users/ray/.m2/repository/org/springframework/spring-context/3.1.1.RELEASE/spring-context-3.1.1.RELEASE.jar:/Users/ray/.m2/repository/org/springframework/spring-aop/3.1.1.RELEASE/spring-aop-3.1.1.RELEASE.jar:/Users/ray/.m2/repository/org/springframework/spring-webmvc/3.1.1.RELEASE/spring-webmvc-3.1.1.RELEASE.jar:/Users/ray/.m2/repository/org/springframework/spring-asm/3.1.1.RELEASE/spring-asm-3.1.1.RELEASE.jar:/Users/ray/.m2/repository/org/springframework/spring-context-support/3.1.1.RELEASE/spring-context-support-3.1.1.RELEASE.jar:/Users/ray/.m2/repository/org/springframework/spring-expression/3.1.1.RELEASE/spring-expression-3.1.1.RELEASE.jar:/Users/ray/.m2/repository/org/springframework/spring-core/3.1.1.RELEASE/spring-core-3.1.1.RELEASE.jar:/Users/ray/.m2/repository/cn/afterturn/easypoi-annotation/4.0.0/easypoi-annotation-4.0.0.jar:/Users/ray/.m2/repository/org/dom4j/dom4j/2.0.0/dom4j-2.0.0.jar:/Users/ray/.m2/repository/jaxen/jaxen/1.1.6/jaxen-1.1.6.jar:/Users/ray/.m2/repository/org/testng/testng/6.14.3/testng-6.14.3.jar:/Users/ray/.m2/repository/com/beust/jcommander/1.72/jcommander-1.72.jar:/Users/ray/.m2/repository/org/apache-extras/beanshell/bsh/2.0b6/bsh-2.0b6.jar:/Users/ray/.m2/repository/org/apache/httpcomponents/httpclient/4.5.10/httpclient-4.5.10.jar:/Users/ray/.m2/repository/commons-logging/commons-logging/1.2/commons-logging-1.2.jar:/Users/ray/.m2/repository/commons-codec/commons-codec/1.11/commons-codec-1.11.jar:/Users/ray/.m2/repository/org/hibernate/hibernate-validator/5.2.4.Final/hibernate-validator-5.2.4.Final.jar:/Users/ray/.m2/repository/org/jboss/logging/jboss-logging/3.2.1.Final/jboss-logging-3.2.1.Final.jar:/Users/ray/.m2/repository/com/fasterxml/classmate/1.1.0/classmate-1.1.0.jar:/Users/ray/.m2/repository/javax/el/javax.el-api/3.0.0/javax.el-api-3.0.0.jar:/Users/ray/.m2/repository/javax/xml/bind/jaxb-api/2.3.1/jaxb-api-2.3.1.jar:/Users/ray/.m2/repository/javax/activation/javax.activation-api/1.2.0/javax.activation-api-1.2.0.jar:/Users/ray/.m2/repository/org/apache/httpcomponents/httpcore/4.4.12/httpcore-4.4.12.jar:/Users/ray/.m2/repository/mysql/mysql-connector-java/8.0.13/mysql-connector-java-8.0.13.jar:/Users/ray/.m2/repository/com/google/protobuf/protobuf-java/3.6.1/protobuf-java-3.6.1.jar:/Users/ray/.m2/repository/commons-dbutils/commons-dbutils/1.6/commons-dbutils-1.6.jar:/Users/ray/.m2/repository/com/oracle/database/jdbc/ojdbc6/11.2.0.4/ojdbc6-11.2.0.4.jar:/Users/ray/.m2/repository/com/oracle/database/jdbc/ucp/11.2.0.4/ucp-11.2.0.4.jar:/Users/ray/.m2/repository/com/oracle/database/security/oraclepki/11.2.0.4/oraclepki-11.2.0.4.jar:/Users/ray/.m2/repository/com/oracle/database/security/osdt_cert/11.2.0.4/osdt_cert-11.2.0.4.jar:/Users/ray/.m2/repository/com/oracle/database/security/osdt_core/11.2.0.4/osdt_core-11.2.0.4.jar:/Users/ray/.m2/repository/com/oracle/database/ha/simplefan/11.2.0.4/simplefan-11.2.0.4.jar:/Users/ray/.m2/repository/com/oracle/database/ha/ons/11.2.0.4/ons-11.2.0.4.jar:/Users/ray/.m2/repository/log4j/log4j/1.2.12/log4j-1.2.12.jar:/Users/ray/.m2/repository/io/qameta/allure/allure-testng/2.17.3/allure-testng-2.17.3.jar:/Users/ray/.m2/repository/io/qameta/allure/allure-java-commons/2.17.3/allure-java-commons-2.17.3.jar:/Users/ray/.m2/repository/io/qameta/allure/allure-model/2.17.3/allure-model-2.17.3.jar:/Users/ray/.m2/repository/io/qameta/allure/allure-test-filter/2.17.3/allure-test-filter-2.17.3.jar:/Users/ray/.m2/repository/org/aspectj/aspectjweaver/1.9.8/aspectjweaver-1.9.8.jar:/Users/ray/.m2/repository/javax/mail/mail/1.4/mail-1.4.jar:/Users/ray/.m2/repository/javax/activation/activation/1.1/activation-1.1.jar:"/>
<property name="surefire.test.class.path" value="/Users/ray/IdeaProjects/Lemon/target/test-classes:/Users/ray/IdeaProjects/Lemon/target/classes:/Users/ray/.m2/repository/com/alibaba/fastjson/1.2.83/fastjson-1.2.83.jar:/Users/ray/.m2/repository/org/slf4j/slf4j-nop/1.7.2/slf4j-nop-1.7.2.jar:/Users/ray/.m2/repository/org/slf4j/slf4j-api/1.7.2/slf4j-api-1.7.2.jar:/Users/ray/.m2/repository/cn/afterturn/easypoi-base/4.0.0/easypoi-base-4.0.0.jar:/Users/ray/.m2/repository/org/apache/poi/poi/4.0.0/poi-4.0.0.jar:/Users/ray/.m2/repository/org/apache/commons/commons-collections4/4.2/commons-collections4-4.2.jar:/Users/ray/.m2/repository/org/apache/poi/poi-ooxml/4.0.0/poi-ooxml-4.0.0.jar:/Users/ray/.m2/repository/org/apache/commons/commons-compress/1.18/commons-compress-1.18.jar:/Users/ray/.m2/repository/com/github/virtuald/curvesapi/1.04/curvesapi-1.04.jar:/Users/ray/.m2/repository/org/apache/poi/poi-ooxml-schemas/4.0.0/poi-ooxml-schemas-4.0.0.jar:/Users/ray/.m2/repository/org/apache/xmlbeans/xmlbeans/3.0.1/xmlbeans-3.0.1.jar:/Users/ray/.m2/repository/com/google/guava/guava/16.0.1/guava-16.0.1.jar:/Users/ray/.m2/repository/org/apache/commons/commons-lang3/3.2.1/commons-lang3-3.2.1.jar:/Users/ray/.m2/repository/ognl/ognl/3.2.6/ognl-3.2.6.jar:/Users/ray/.m2/repository/org/javassist/javassist/3.20.0-GA/javassist-3.20.0-GA.jar:/Users/ray/.m2/repository/javax/validation/validation-api/1.1.0.Final/validation-api-1.1.0.Final.jar:/Users/ray/.m2/repository/cn/afterturn/easypoi-web/4.0.0/easypoi-web-4.0.0.jar:/Users/ray/.m2/repository/org/springframework/spring-web/3.1.1.RELEASE/spring-web-3.1.1.RELEASE.jar:/Users/ray/.m2/repository/aopalliance/aopalliance/1.0/aopalliance-1.0.jar:/Users/ray/.m2/repository/org/springframework/spring-beans/3.1.1.RELEASE/spring-beans-3.1.1.RELEASE.jar:/Users/ray/.m2/repository/org/springframework/spring-context/3.1.1.RELEASE/spring-context-3.1.1.RELEASE.jar:/Users/ray/.m2/repository/org/springframework/spring-aop/3.1.1.RELEASE/spring-aop-3.1.1.RELEASE.jar:/Users/ray/.m2/repository/org/springframework/spring-webmvc/3.1.1.RELEASE/spring-webmvc-3.1.1.RELEASE.jar:/Users/ray/.m2/repository/org/springframework/spring-asm/3.1.1.RELEASE/spring-asm-3.1.1.RELEASE.jar:/Users/ray/.m2/repository/org/springframework/spring-context-support/3.1.1.RELEASE/spring-context-support-3.1.1.RELEASE.jar:/Users/ray/.m2/repository/org/springframework/spring-expression/3.1.1.RELEASE/spring-expression-3.1.1.RELEASE.jar:/Users/ray/.m2/repository/org/springframework/spring-core/3.1.1.RELEASE/spring-core-3.1.1.RELEASE.jar:/Users/ray/.m2/repository/cn/afterturn/easypoi-annotation/4.0.0/easypoi-annotation-4.0.0.jar:/Users/ray/.m2/repository/org/dom4j/dom4j/2.0.0/dom4j-2.0.0.jar:/Users/ray/.m2/repository/jaxen/jaxen/1.1.6/jaxen-1.1.6.jar:/Users/ray/.m2/repository/org/testng/testng/6.14.3/testng-6.14.3.jar:/Users/ray/.m2/repository/com/beust/jcommander/1.72/jcommander-1.72.jar:/Users/ray/.m2/repository/org/apache-extras/beanshell/bsh/2.0b6/bsh-2.0b6.jar:/Users/ray/.m2/repository/org/apache/httpcomponents/httpclient/4.5.3/httpclient-4.5.3.jar:/Users/ray/.m2/repository/commons-logging/commons-logging/1.2/commons-logging-1.2.jar:/Users/ray/.m2/repository/commons-codec/commons-codec/1.9/commons-codec-1.9.jar:/Users/ray/.m2/repository/org/hibernate/hibernate-validator/5.2.4.Final/hibernate-validator-5.2.4.Final.jar:/Users/ray/.m2/repository/org/jboss/logging/jboss-logging/3.2.1.Final/jboss-logging-3.2.1.Final.jar:/Users/ray/.m2/repository/com/fasterxml/classmate/1.1.0/classmate-1.1.0.jar:/Users/ray/.m2/repository/javax/el/javax.el-api/3.0.0/javax.el-api-3.0.0.jar:/Users/ray/.m2/repository/javax/xml/bind/jaxb-api/2.3.1/jaxb-api-2.3.1.jar:/Users/ray/.m2/repository/javax/activation/javax.activation-api/1.2.0/javax.activation-api-1.2.0.jar:/Users/ray/.m2/repository/org/apache/httpcomponents/httpcore/4.4.12/httpcore-4.4.12.jar:/Users/ray/.m2/repository/mysql/mysql-connector-java/8.0.13/mysql-connector-java-8.0.13.jar:/Users/ray/.m2/repository/com/google/protobuf/protobuf-java/3.6.1/protobuf-java-3.6.1.jar:/Users/ray/.m2/repository/commons-dbutils/commons-dbutils/1.6/commons-dbutils-1.6.jar:/Users/ray/.m2/repository/com/oracle/database/jdbc/ojdbc6/11.2.0.4/ojdbc6-11.2.0.4.jar:/Users/ray/.m2/repository/com/oracle/database/jdbc/ucp/11.2.0.4/ucp-11.2.0.4.jar:/Users/ray/.m2/repository/com/oracle/database/security/oraclepki/11.2.0.4/oraclepki-11.2.0.4.jar:/Users/ray/.m2/repository/com/oracle/database/security/osdt_cert/11.2.0.4/osdt_cert-11.2.0.4.jar:/Users/ray/.m2/repository/com/oracle/database/security/osdt_core/11.2.0.4/osdt_core-11.2.0.4.jar:/Users/ray/.m2/repository/com/oracle/database/ha/simplefan/11.2.0.4/simplefan-11.2.0.4.jar:/Users/ray/.m2/repository/com/oracle/database/ha/ons/11.2.0.4/ons-11.2.0.4.jar:/Users/ray/.m2/repository/log4j/log4j/1.2.12/log4j-1.2.12.jar:/Users/ray/.m2/repository/io/qameta/allure/allure-testng/2.17.3/allure-testng-2.17.3.jar:/Users/ray/.m2/repository/io/qameta/allure/allure-java-commons/2.17.3/allure-java-commons-2.17.3.jar:/Users/ray/.m2/repository/io/qameta/allure/allure-model/2.17.3/allure-model-2.17.3.jar:/Users/ray/.m2/repository/io/qameta/allure/allure-test-filter/2.17.3/allure-test-filter-2.17.3.jar:/Users/ray/.m2/repository/org/aspectj/aspectjweaver/1.9.8/aspectjweaver-1.9.8.jar:/Users/ray/.m2/repository/javax/mail/mail/1.4/mail-1.4.jar:/Users/ray/.m2/repository/javax/activation/activation/1.1/activation-1.1.jar:/Users/ray/.m2/repository/com/offbytwo/jenkins/jenkins-client/0.3.7/jenkins-client-0.3.7.jar:/Users/ray/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.3.4/jackson-annotations-2.3.4.jar:/Users/ray/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.3.4/jackson-core-2.3.4.jar:/Users/ray/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.3.4/jackson-databind-2.3.4.jar:/Users/ray/.m2/repository/dom4j/dom4j/1.6.1/dom4j-1.6.1.jar:/Users/ray/.m2/repository/net/sf/json-lib/json-lib/2.4/json-lib-2.4-jdk15.jar:/Users/ray/.m2/repository/commons-beanutils/commons-beanutils/1.8.0/commons-beanutils-1.8.0.jar:/Users/ray/.m2/repository/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar:/Users/ray/.m2/repository/net/sf/ezmorph/ezmorph/1.0.6/ezmorph-1.0.6.jar:/Users/ray/.m2/repository/commons-lang/commons-lang/2.6/commons-lang-2.6.jar:/Users/ray/.m2/repository/commons-io/commons-io/2.4/commons-io-2.4.jar:/Users/ray/.m2/repository/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01.jar:"/>
<property name="allure.results.directory" value="/Users/ray/IdeaProjects/Lemon/target/allure-results"/>
<property name="sun.cpu.endian" value="little"/>
<property name="user.home" value="/Users/ray"/>
......@@ -29,7 +29,7 @@
<property name="java.vm.specification.vendor" value="Oracle Corporation"/>
<property name="java.specification.name" value="Java Platform API Specification"/>
<property name="apple.awt.application.name" value="ForkedBooter"/>
<property name="surefire.real.class.path" value="/Users/ray/IdeaProjects/Lemon/target/surefire/surefirebooter17895375521510735215.jar"/>
<property name="surefire.real.class.path" value="/Users/ray/IdeaProjects/Lemon/target/surefire/surefirebooter868335789872302598.jar"/>
<property name="user.script" value="Hans"/>
<property name="sun.management.compiler" value="HotSpot 64-Bit Tiered Compilers"/>
<property name="java.runtime.version" value="18.0.1.1+2-6"/>
......@@ -55,37 +55,37 @@
<property name="sun.io.unicode.encoding" value="UnicodeBig"/>
<property name="java.class.version" value="62.0"/>
</properties>
<testcase name="testAAAAALogin" classname="com.lemon.cases.RaysDataCase" time="0.637"/>
<testcase name="testAAAAALogin" classname="com.lemon.cases.RaysDataCase" time="0.151"/>
<testcase name="testAAAAALogin" classname="com.lemon.cases.RaysDataCase" time="0.113"/>
<testcase name="testAAAAALogin" classname="com.lemon.cases.RaysDataCase" time="0.18"/>
<testcase name="testAAAAALogin" classname="com.lemon.cases.RaysDataCase" time="0.21"/>
<testcase name="testAAAAALogin" classname="com.lemon.cases.RaysDataCase" time="0.229"/>
<testcase name="testGetCategoryInfoList" classname="com.lemon.cases.RaysDataCase" time="0.11"/>
<testcase name="testGetCompeteTopicList" classname="com.lemon.cases.RaysDataCase" time="0.207"/>
<testcase name="testGetCompeteTopicList" classname="com.lemon.cases.RaysDataCase" time="0.401"/>
<testcase name="testGetHomePageBookCommentChart" classname="com.lemon.cases.RaysDataCase" time="0.143"/>
<testcase name="testGetHomePageBookSalesChart" classname="com.lemon.cases.RaysDataCase" time="0.193"/>
<testcase name="testGetHomePageBookStatis" classname="com.lemon.cases.RaysDataCase" time="0.215"/>
<testcase name="testGetHomePageTopicChart" classname="com.lemon.cases.RaysDataCase" time="0.196"/>
<testcase name="testGetHomePageTopicWarn" classname="com.lemon.cases.RaysDataCase" time="0.152"/>
<testcase name="testGetHomePageTopicWarn1" classname="com.lemon.cases.RaysDataCase" time="0.108"/>
<testcase name="testGetLatestRecordList" classname="com.lemon.cases.RaysDataCase" time="0.126"/>
<testcase name="testGetLoginInfo" classname="com.lemon.cases.RaysDataCase" time="0.116"/>
<testcase name="testGetSubscriptList" classname="com.lemon.cases.RaysDataCase" time="0.113"/>
<testcase name="testGetSubscriptList2" classname="com.lemon.cases.RaysDataCase" time="0.137"/>
<testcase name="testGetSubscriptList3" classname="com.lemon.cases.RaysDataCase" time="0.21"/>
<testcase name="testGgetCategoryInfoList" classname="com.lemon.cases.RaysDataCase" time="0.128"/>
<testcase name="testListBlankTopic" classname="com.lemon.cases.RaysDataCase" time="1.007"/>
<testcase name="testListHeatTopic4Report" classname="com.lemon.cases.RaysDataCase" time="0.128"/>
<testcase name="testListHeatTopic4Report" classname="com.lemon.cases.RaysDataCase" time="0.121"/>
<testcase name="testListIncreaseTopic4Report" classname="com.lemon.cases.RaysDataCase" time="0.107"/>
<testcase name="testListIncreaseTopic4Report" classname="com.lemon.cases.RaysDataCase" time="0.121"/>
<testcase name="testListNewBookTopic4Report" classname="com.lemon.cases.RaysDataCase" time="0.112"/>
<testcase name="testPay" classname="com.lemon.cases.PayCase" time="0.21"/>
<testcase name="testPay" classname="com.lemon.cases.PayCase" time="0.2"/>
<testcase name="testPay" classname="com.lemon.cases.PayCase" time="0.364"/>
<testcase name="testPay" classname="com.lemon.cases.PayCase" time="0.353"/>
<testcase name="testPay" classname="com.lemon.cases.PayCase" time="0.205"/>
<testcase name="testRaysPay" classname="com.lemon.cases.PayCase" time="0.163"/>
<testcase name="testAAAAALogin" classname="com.lemon.cases.RaysDataCase" time="0.587"/>
<testcase name="testAAAAALogin" classname="com.lemon.cases.RaysDataCase" time="0.114"/>
<testcase name="testAAAAALogin" classname="com.lemon.cases.RaysDataCase" time="0.12"/>
<testcase name="testAAAAALogin" classname="com.lemon.cases.RaysDataCase" time="0.146"/>
<testcase name="testAAAAALogin" classname="com.lemon.cases.RaysDataCase" time="0.109"/>
<testcase name="testAAAAALogin" classname="com.lemon.cases.RaysDataCase" time="0.171"/>
<testcase name="testGetCategoryInfoList" classname="com.lemon.cases.RaysDataCase" time="0.163"/>
<testcase name="testGetCompeteTopicList" classname="com.lemon.cases.RaysDataCase" time="0.132"/>
<testcase name="testGetCompeteTopicList" classname="com.lemon.cases.RaysDataCase" time="0.129"/>
<testcase name="testGetHomePageBookCommentChart" classname="com.lemon.cases.RaysDataCase" time="0.226"/>
<testcase name="testGetHomePageBookSalesChart" classname="com.lemon.cases.RaysDataCase" time="0.191"/>
<testcase name="testGetHomePageBookStatis" classname="com.lemon.cases.RaysDataCase" time="0.308"/>
<testcase name="testGetHomePageTopicChart" classname="com.lemon.cases.RaysDataCase" time="0.155"/>
<testcase name="testGetHomePageTopicWarn" classname="com.lemon.cases.RaysDataCase" time="0.115"/>
<testcase name="testGetHomePageTopicWarn1" classname="com.lemon.cases.RaysDataCase" time="0.105"/>
<testcase name="testGetLatestRecordList" classname="com.lemon.cases.RaysDataCase" time="0.119"/>
<testcase name="testGetLoginInfo" classname="com.lemon.cases.RaysDataCase" time="0.107"/>
<testcase name="testGetSubscriptList" classname="com.lemon.cases.RaysDataCase" time="0.1"/>
<testcase name="testGetSubscriptList2" classname="com.lemon.cases.RaysDataCase" time="0.107"/>
<testcase name="testGetSubscriptList3" classname="com.lemon.cases.RaysDataCase" time="0.122"/>
<testcase name="testGgetCategoryInfoList" classname="com.lemon.cases.RaysDataCase" time="0.104"/>
<testcase name="testListBlankTopic" classname="com.lemon.cases.RaysDataCase" time="0.088"/>
<testcase name="testListHeatTopic4Report" classname="com.lemon.cases.RaysDataCase" time="0.125"/>
<testcase name="testListHeatTopic4Report" classname="com.lemon.cases.RaysDataCase" time="0.115"/>
<testcase name="testListIncreaseTopic4Report" classname="com.lemon.cases.RaysDataCase" time="0.114"/>
<testcase name="testListIncreaseTopic4Report" classname="com.lemon.cases.RaysDataCase" time="0.109"/>
<testcase name="testListNewBookTopic4Report" classname="com.lemon.cases.RaysDataCase" time="0.097"/>
<testcase name="testPay" classname="com.lemon.cases.PayCase" time="0.198"/>
<testcase name="testPay" classname="com.lemon.cases.PayCase" time="0.195"/>
<testcase name="testPay" classname="com.lemon.cases.PayCase" time="0.221"/>
<testcase name="testPay" classname="com.lemon.cases.PayCase" time="0.239"/>
<testcase name="testPay" classname="com.lemon.cases.PayCase" time="0.224"/>
<testcase name="testRaysPay" classname="com.lemon.cases.PayCase" time="0.205"/>
</testsuite>
\ No newline at end of file
-------------------------------------------------------------------------------
Test set: TestSuite
-------------------------------------------------------------------------------
Tests run: 33, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 8.396 s - in TestSuite
Tests run: 33, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 6.597 s - in TestSuite
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
<?xml version="1.0" encoding="UTF-8"?>
<!-- Generated by org.testng.reporters.JUnitReportReporter -->
<testsuite hostname="Ray-MacBook-Pro-2.local" failures="0" tests="6" name="com.lemon.cases.PayCase" time="1.492" errors="0" timestamp="14 3月 2023 09:21:30 GMT" skipped="0">
<testcase classname="com.lemon.cases.PayCase" name="testPay" time="0.348"/>
<testcase classname="com.lemon.cases.PayCase" name="testPay" time="0.208"/>
<testcase classname="com.lemon.cases.PayCase" name="testPay" time="0.211"/>
<testcase classname="com.lemon.cases.PayCase" name="testPay" time="0.199"/>
<testcase classname="com.lemon.cases.PayCase" name="testPay" time="0.364"/>
<testcase classname="com.lemon.cases.PayCase" name="testRaysPay" time="0.162"/>
<testsuite hostname="Ray-MacBook-Pro-2.local" failures="0" tests="6" name="com.lemon.cases.PayCase" time="1.276" errors="0" timestamp="23 3月 2023 16:16:49 GMT" skipped="0">
<testcase classname="com.lemon.cases.PayCase" name="testPay" time="0.238"/>
<testcase classname="com.lemon.cases.PayCase" name="testRaysPay" time="0.204"/>
<testcase classname="com.lemon.cases.PayCase" name="testPay" time="0.224"/>
<testcase classname="com.lemon.cases.PayCase" name="testPay" time="0.219"/>
<testcase classname="com.lemon.cases.PayCase" name="testPay" time="0.193"/>
<testcase classname="com.lemon.cases.PayCase" name="testPay" time="0.198"/>
</testsuite> <!-- com.lemon.cases.PayCase -->
<?xml version="1.0" encoding="UTF-8"?>
<!-- Generated by org.testng.reporters.JUnitReportReporter -->
<testsuite hostname="Ray-MacBook-Pro-2.local" failures="0" tests="27" name="com.lemon.cases.RaysDataCase" time="5.774" errors="0" timestamp="14 3月 2023 09:21:30 GMT" skipped="0">
<testcase classname="com.lemon.cases.RaysDataCase" name="testAAAAALogin" time="0.758"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testGetCompeteTopicList" time="0.399"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testGetHomePageTopicChart" time="0.196"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testGetHomePageBookStatis" time="0.214"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testListIncreaseTopic4Report" time="0.120"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testGetCompeteTopicList" time="0.209"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testGetCategoryInfoList" time="0.106"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testGetHomePageTopicWarn1" time="0.108"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testListIncreaseTopic4Report" time="0.107"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testAAAAALogin" time="0.150"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testGetHomePageBookCommentChart" time="0.142"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testGetHomePageBookSalesChart" time="0.191"/>
<testsuite hostname="Ray-MacBook-Pro-2.local" failures="0" tests="27" name="com.lemon.cases.RaysDataCase" time="4.223" errors="0" timestamp="23 3月 2023 16:16:49 GMT" skipped="0">
<testcase classname="com.lemon.cases.RaysDataCase" name="testAAAAALogin" time="0.146"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testAAAAALogin" time="0.109"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testAAAAALogin" time="0.170"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testGetCategoryInfoList" time="0.160"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testGetHomePageTopicChart" time="0.155"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testAAAAALogin" time="0.746"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testListHeatTopic4Report" time="0.124"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testListIncreaseTopic4Report" time="0.112"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testAAAAALogin" time="0.113"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testAAAAALogin" time="0.210"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testGetLoginInfo" time="0.116"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testListHeatTopic4Report" time="0.130"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testGetSubscriptList2" time="0.135"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testAAAAALogin" time="0.228"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testAAAAALogin" time="0.180"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testGgetCategoryInfoList" time="0.117"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testGetSubscriptList" time="0.113"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testListHeatTopic4Report" time="0.121"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testGetHomePageTopicWarn" time="0.151"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testGetSubscriptList3" time="0.208"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testListNewBookTopic4Report" time="0.111"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testListBlankTopic" time="1.015"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testGetLatestRecordList" time="0.126"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testGetLatestRecordList" time="0.118"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testListNewBookTopic4Report" time="0.096"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testGgetCategoryInfoList" time="0.094"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testGetHomePageBookCommentChart" time="0.222"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testGetSubscriptList3" time="0.122"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testGetHomePageBookStatis" time="0.309"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testListHeatTopic4Report" time="0.115"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testGetHomePageTopicWarn1" time="0.105"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testAAAAALogin" time="0.120"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testGetHomePageTopicWarn" time="0.114"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testListIncreaseTopic4Report" time="0.109"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testListBlankTopic" time="0.096"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testGetCompeteTopicList" time="0.128"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testGetHomePageBookSalesChart" time="0.191"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testGetLoginInfo" time="0.108"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testGetSubscriptList" time="0.100"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testGetCompeteTopicList" time="0.135"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testGetSubscriptList2" time="0.106"/>
</testsuite> <!-- com.lemon.cases.RaysDataCase -->
<table border='1'>
<table border='1'>
......@@ -27,11 +27,11 @@
<td>&nbsp;</td></tr>
<tr>
<td>&nbsp;</td>
<td>testGetLoginInfo</td>
<td>testAAAAALogin</td>
<td>&nbsp;</td></tr>
<tr>
<td>&nbsp;</td>
<td>testAAAAALogin</td>
<td>testGetLoginInfo</td>
<td>&nbsp;</td></tr>
<tr>
<td>&nbsp;</td>
......
<h2>Methods run, sorted chronologically</h2><h3>&gt;&gt; means before, &lt;&lt; means after</h3><p/><br/><em>理工数传</em><p/><small><i>(Hover the method name to see the test class name)</i></small><p/>
<h2>Methods run, sorted chronologically</h2><h3>&gt;&gt; means before, &lt;&lt; means after</h3><p/><br/><em>理工数传</em><p/><small><i>(Hover the method name to see the test class name)</i></small><p/>
<h2>Methods run, sorted chronologically</h2><h3>&gt;&gt; means before, &lt;&lt; means after</h3><p/><br/><em>理工数传</em><p/><small><i>(Hover the method name to see the test class name)</i></small><p/>
<table border="1">
<tr><th>Time</th><th>Delta (ms)</th><th>Suite<br>configuration</th><th>Test<br>configuration</th><th>Class<br>configuration</th><th>Groups<br>configuration</th><th>Method<br>configuration</th><th>Test<br>method</th><th>Thread</th><th>Instances</th></tr>
<tr bgcolor="818d84"> <td>23/03/14 17:21:30</td> <td>0</td> <td title="&lt;&lt;BaseCase.finish()[pri:0, instance:com.lemon.cases.PayCase@377008df]">&lt;&lt;finish</td>
<tr bgcolor="d2f0dc"> <td>23/03/24 00:16:49</td> <td>0</td> <td title="&lt;&lt;BaseCase.finish()[pri:0, instance:com.lemon.cases.PayCase@253b380a]">&lt;&lt;finish</td>
<td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td> <td>main@895328852</td> <td></td> </tr>
<tr bgcolor="818d84"> <td>23/03/14 17:21:22</td> <td>-7792</td> <td title="&gt;&gt;BaseCase.init()[pri:0, instance:com.lemon.cases.PayCase@377008df]">&gt;&gt;init</td>
<tr bgcolor="d2f0dc"> <td>23/03/24 00:16:43</td> <td>-6024</td> <td title="&gt;&gt;BaseCase.init()[pri:0, instance:com.lemon.cases.PayCase@253b380a]">&gt;&gt;init</td>
<td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td> <td>main@895328852</td> <td></td> </tr>
<tr bgcolor="86b28d"> <td>23/03/14 17:21:23</td> <td>-7387</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testAAAAALogin(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]">testAAAAALogin</td>
<tr bgcolor="af9acd"> <td>23/03/24 00:16:44</td> <td>-5622</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testAAAAALogin(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]">testAAAAALogin</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="86b28d"> <td>23/03/14 17:21:23</td> <td>-6591</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testAAAAALogin(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]">testAAAAALogin</td>
<tr bgcolor="af9acd"> <td>23/03/24 00:16:44</td> <td>-4833</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testAAAAALogin(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]">testAAAAALogin</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="86b28d"> <td>23/03/14 17:21:24</td> <td>-6439</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testAAAAALogin(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]">testAAAAALogin</td>
<tr bgcolor="af9acd"> <td>23/03/24 00:16:44</td> <td>-4718</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testAAAAALogin(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]">testAAAAALogin</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="86b28d"> <td>23/03/14 17:21:24</td> <td>-6325</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testAAAAALogin(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]">testAAAAALogin</td>
<tr bgcolor="af9acd"> <td>23/03/24 00:16:45</td> <td>-4597</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testAAAAALogin(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]">testAAAAALogin</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="86b28d"> <td>23/03/14 17:21:24</td> <td>-6144</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testAAAAALogin(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]">testAAAAALogin</td>
<tr bgcolor="af9acd"> <td>23/03/24 00:16:45</td> <td>-4450</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testAAAAALogin(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]">testAAAAALogin</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="86b28d"> <td>23/03/14 17:21:24</td> <td>-5933</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testAAAAALogin(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]">testAAAAALogin</td>
<tr bgcolor="af9acd"> <td>23/03/24 00:16:45</td> <td>-4340</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testAAAAALogin(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]">testAAAAALogin</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="86b28d"> <td>23/03/14 17:21:24</td> <td>-5702</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testGetCategoryInfoList(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]">testGetCategoryInfoList</td>
<tr bgcolor="af9acd"> <td>23/03/24 00:16:45</td> <td>-4167</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testGetCategoryInfoList(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]">testGetCategoryInfoList</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="86b28d"> <td>23/03/14 17:21:24</td> <td>-5593</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testGetCompeteTopicList(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]">testGetCompeteTopicList</td>
<tr bgcolor="af9acd"> <td>23/03/24 00:16:45</td> <td>-4005</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testGetCompeteTopicList(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]">testGetCompeteTopicList</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="86b28d"> <td>23/03/14 17:21:25</td> <td>-5383</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testGetCompeteTopicList(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]">testGetCompeteTopicList</td>
<tr bgcolor="af9acd"> <td>23/03/24 00:16:45</td> <td>-3869</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testGetCompeteTopicList(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]">testGetCompeteTopicList</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="86b28d"> <td>23/03/14 17:21:25</td> <td>-4981</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testGetHomePageBookCommentChart(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]">testGetHomePageBookCommentChart</td>
<tr bgcolor="af9acd"> <td>23/03/24 00:16:45</td> <td>-3740</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testGetHomePageBookCommentChart(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]">testGetHomePageBookCommentChart</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="86b28d"> <td>23/03/14 17:21:25</td> <td>-4836</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testGetHomePageBookSalesChart(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]">testGetHomePageBookSalesChart</td>
<tr bgcolor="af9acd"> <td>23/03/24 00:16:46</td> <td>-3514</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testGetHomePageBookSalesChart(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]">testGetHomePageBookSalesChart</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="86b28d"> <td>23/03/14 17:21:25</td> <td>-4642</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testGetHomePageBookStatis(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]">testGetHomePageBookStatis</td>
<tr bgcolor="af9acd"> <td>23/03/24 00:16:46</td> <td>-3321</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testGetHomePageBookStatis(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]">testGetHomePageBookStatis</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="86b28d"> <td>23/03/14 17:21:26</td> <td>-4426</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testGetHomePageTopicChart(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]">testGetHomePageTopicChart</td>
<tr bgcolor="af9acd"> <td>23/03/24 00:16:46</td> <td>-3011</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testGetHomePageTopicChart(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]">testGetHomePageTopicChart</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="86b28d"> <td>23/03/14 17:21:26</td> <td>-4227</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testGetHomePageTopicWarn(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]">testGetHomePageTopicWarn</td>
<tr bgcolor="af9acd"> <td>23/03/24 00:16:46</td> <td>-2853</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testGetHomePageTopicWarn(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]">testGetHomePageTopicWarn</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="86b28d"> <td>23/03/14 17:21:26</td> <td>-4075</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testGetHomePageTopicWarn1(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]">testGetHomePageTopicWarn1</td>
<tr bgcolor="af9acd"> <td>23/03/24 00:16:46</td> <td>-2737</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testGetHomePageTopicWarn1(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]">testGetHomePageTopicWarn1</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="86b28d"> <td>23/03/14 17:21:26</td> <td>-3965</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testGetLatestRecordList(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]">testGetLatestRecordList</td>
<tr bgcolor="af9acd"> <td>23/03/24 00:16:47</td> <td>-2631</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testGetLatestRecordList(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]">testGetLatestRecordList</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="86b28d"> <td>23/03/14 17:21:26</td> <td>-3838</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testGetLoginInfo(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]">testGetLoginInfo</td>
<tr bgcolor="af9acd"> <td>23/03/24 00:16:47</td> <td>-2512</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testGetLoginInfo(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]">testGetLoginInfo</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="86b28d"> <td>23/03/14 17:21:26</td> <td>-3721</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testGetSubscriptList(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]">testGetSubscriptList</td>
<tr bgcolor="af9acd"> <td>23/03/24 00:16:47</td> <td>-2403</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testGetSubscriptList(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]">testGetSubscriptList</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="86b28d"> <td>23/03/14 17:21:26</td> <td>-3608</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testGetSubscriptList2(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]">testGetSubscriptList2</td>
<tr bgcolor="af9acd"> <td>23/03/24 00:16:47</td> <td>-2302</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testGetSubscriptList2(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]">testGetSubscriptList2</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="86b28d"> <td>23/03/14 17:21:27</td> <td>-3470</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testGetSubscriptList3(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]">testGetSubscriptList3</td>
<tr bgcolor="af9acd"> <td>23/03/24 00:16:47</td> <td>-2195</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testGetSubscriptList3(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]">testGetSubscriptList3</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="86b28d"> <td>23/03/14 17:21:27</td> <td>-3261</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testGgetCategoryInfoList(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]">testGgetCategoryInfoList</td>
<tr bgcolor="af9acd"> <td>23/03/24 00:16:47</td> <td>-2072</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testGgetCategoryInfoList(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]">testGgetCategoryInfoList</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="86b28d"> <td>23/03/14 17:21:27</td> <td>-3141</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testListBlankTopic(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]">testListBlankTopic</td>
<tr bgcolor="af9acd"> <td>23/03/24 00:16:47</td> <td>-1976</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testListBlankTopic(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]">testListBlankTopic</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="86b28d"> <td>23/03/14 17:21:28</td> <td>-2123</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testListHeatTopic4Report(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]">testListHeatTopic4Report</td>
<tr bgcolor="af9acd"> <td>23/03/24 00:16:47</td> <td>-1879</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testListHeatTopic4Report(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]">testListHeatTopic4Report</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="86b28d"> <td>23/03/14 17:21:28</td> <td>-1991</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testListHeatTopic4Report(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]">testListHeatTopic4Report</td>
<tr bgcolor="af9acd"> <td>23/03/24 00:16:47</td> <td>-1754</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testListHeatTopic4Report(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]">testListHeatTopic4Report</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="86b28d"> <td>23/03/14 17:21:28</td> <td>-1869</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testListIncreaseTopic4Report(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]">testListIncreaseTopic4Report</td>
<tr bgcolor="af9acd"> <td>23/03/24 00:16:48</td> <td>-1637</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testListIncreaseTopic4Report(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]">testListIncreaseTopic4Report</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="86b28d"> <td>23/03/14 17:21:28</td> <td>-1761</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testListIncreaseTopic4Report(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]">testListIncreaseTopic4Report</td>
<tr bgcolor="af9acd"> <td>23/03/24 00:16:48</td> <td>-1523</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testListIncreaseTopic4Report(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]">testListIncreaseTopic4Report</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="86b28d"> <td>23/03/14 17:21:28</td> <td>-1639</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testListNewBookTopic4Report(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]">testListNewBookTopic4Report</td>
<tr bgcolor="af9acd"> <td>23/03/24 00:16:48</td> <td>-1412</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testListNewBookTopic4Report(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]">testListNewBookTopic4Report</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="6a7885"> <td>23/03/14 17:21:28</td> <td>-1500</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="PayCase.testPay(int, java.lang.String, java.lang.String, java.lang.String)[pri:0, instance:com.lemon.cases.PayCase@377008df]">testPay</td>
<tr bgcolor="d0fc89"> <td>23/03/24 00:16:48</td> <td>-1286</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="PayCase.testPay(int, java.lang.String, java.lang.String, java.lang.String)[pri:0, instance:com.lemon.cases.PayCase@253b380a]">testPay</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="6a7885"> <td>23/03/14 17:21:29</td> <td>-1289</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="PayCase.testPay(int, java.lang.String, java.lang.String, java.lang.String)[pri:0, instance:com.lemon.cases.PayCase@377008df]">testPay</td>
<tr bgcolor="d0fc89"> <td>23/03/24 00:16:48</td> <td>-1087</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="PayCase.testPay(int, java.lang.String, java.lang.String, java.lang.String)[pri:0, instance:com.lemon.cases.PayCase@253b380a]">testPay</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="6a7885"> <td>23/03/14 17:21:29</td> <td>-1090</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="PayCase.testPay(int, java.lang.String, java.lang.String, java.lang.String)[pri:0, instance:com.lemon.cases.PayCase@377008df]">testPay</td>
<tr bgcolor="d0fc89"> <td>23/03/24 00:16:48</td> <td>-893</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="PayCase.testPay(int, java.lang.String, java.lang.String, java.lang.String)[pri:0, instance:com.lemon.cases.PayCase@253b380a]">testPay</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="6a7885"> <td>23/03/14 17:21:29</td> <td>-725</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="PayCase.testPay(int, java.lang.String, java.lang.String, java.lang.String)[pri:0, instance:com.lemon.cases.PayCase@377008df]">testPay</td>
<tr bgcolor="d0fc89"> <td>23/03/24 00:16:48</td> <td>-672</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="PayCase.testPay(int, java.lang.String, java.lang.String, java.lang.String)[pri:0, instance:com.lemon.cases.PayCase@253b380a]">testPay</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="6a7885"> <td>23/03/14 17:21:30</td> <td>-376</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="PayCase.testPay(int, java.lang.String, java.lang.String, java.lang.String)[pri:0, instance:com.lemon.cases.PayCase@377008df]">testPay</td>
<tr bgcolor="d0fc89"> <td>23/03/24 00:16:49</td> <td>-433</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="PayCase.testPay(int, java.lang.String, java.lang.String, java.lang.String)[pri:0, instance:com.lemon.cases.PayCase@253b380a]">testPay</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="6a7885"> <td>23/03/14 17:21:30</td> <td>-166</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="PayCase.testRaysPay(int, java.lang.String, java.lang.String, java.lang.String)[pri:0, instance:com.lemon.cases.PayCase@377008df]">testRaysPay</td>
<tr bgcolor="d0fc89"> <td>23/03/24 00:16:49</td> <td>-207</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="PayCase.testRaysPay(int, java.lang.String, java.lang.String, java.lang.String)[pri:0, instance:com.lemon.cases.PayCase@253b380a]">testRaysPay</td>
<td>main@895328852</td> <td></td> </tr>
</table>
<h2>Methods run, sorted chronologically</h2><h3>&gt;&gt; means before, &lt;&lt; means after</h3><p/><br/><em>理工数传</em><p/><small><i>(Hover the method name to see the test class name)</i></small><p/>
<h2>Methods run, sorted chronologically</h2><h3>&gt;&gt; means before, &lt;&lt; means after</h3><p/><br/><em>理工数传</em><p/><small><i>(Hover the method name to see the test class name)</i></small><p/>
<h2>Methods run, sorted chronologically</h2><h3>&gt;&gt; means before, &lt;&lt; means after</h3><p/><br/><em>理工数传</em><p/><small><i>(Hover the method name to see the test class name)</i></small><p/>
<table border="1">
<tr><th>Time</th><th>Delta (ms)</th><th>Suite<br>configuration</th><th>Test<br>configuration</th><th>Class<br>configuration</th><th>Groups<br>configuration</th><th>Method<br>configuration</th><th>Test<br>method</th><th>Thread</th><th>Instances</th></tr>
<tr bgcolor="818d84"> <td>23/03/14 17:21:22</td> <td>0</td> <td title="&gt;&gt;BaseCase.init()[pri:0, instance:com.lemon.cases.PayCase@377008df]">&gt;&gt;init</td>
<tr bgcolor="d2f0dc"> <td>23/03/24 00:16:43</td> <td>0</td> <td title="&gt;&gt;BaseCase.init()[pri:0, instance:com.lemon.cases.PayCase@253b380a]">&gt;&gt;init</td>
<td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td> <td>main@895328852</td> <td></td> </tr>
<tr bgcolor="86b28d"> <td>23/03/14 17:21:23</td> <td>405</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testAAAAALogin(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]">testAAAAALogin</td>
<tr bgcolor="af9acd"> <td>23/03/24 00:16:44</td> <td>402</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testAAAAALogin(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]">testAAAAALogin</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="86b28d"> <td>23/03/14 17:21:23</td> <td>1201</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testAAAAALogin(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]">testAAAAALogin</td>
<tr bgcolor="af9acd"> <td>23/03/24 00:16:44</td> <td>1191</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testAAAAALogin(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]">testAAAAALogin</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="86b28d"> <td>23/03/14 17:21:24</td> <td>1353</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testAAAAALogin(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]">testAAAAALogin</td>
<tr bgcolor="af9acd"> <td>23/03/24 00:16:44</td> <td>1306</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testAAAAALogin(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]">testAAAAALogin</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="86b28d"> <td>23/03/14 17:21:24</td> <td>1467</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testAAAAALogin(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]">testAAAAALogin</td>
<tr bgcolor="af9acd"> <td>23/03/24 00:16:45</td> <td>1427</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testAAAAALogin(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]">testAAAAALogin</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="86b28d"> <td>23/03/14 17:21:24</td> <td>1648</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testAAAAALogin(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]">testAAAAALogin</td>
<tr bgcolor="af9acd"> <td>23/03/24 00:16:45</td> <td>1574</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testAAAAALogin(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]">testAAAAALogin</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="86b28d"> <td>23/03/14 17:21:24</td> <td>1859</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testAAAAALogin(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]">testAAAAALogin</td>
<tr bgcolor="af9acd"> <td>23/03/24 00:16:45</td> <td>1684</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testAAAAALogin(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]">testAAAAALogin</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="86b28d"> <td>23/03/14 17:21:24</td> <td>2090</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testGetCategoryInfoList(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]">testGetCategoryInfoList</td>
<tr bgcolor="af9acd"> <td>23/03/24 00:16:45</td> <td>1857</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testGetCategoryInfoList(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]">testGetCategoryInfoList</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="86b28d"> <td>23/03/14 17:21:24</td> <td>2199</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testGetCompeteTopicList(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]">testGetCompeteTopicList</td>
<tr bgcolor="af9acd"> <td>23/03/24 00:16:45</td> <td>2019</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testGetCompeteTopicList(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]">testGetCompeteTopicList</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="86b28d"> <td>23/03/14 17:21:25</td> <td>2409</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testGetCompeteTopicList(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]">testGetCompeteTopicList</td>
<tr bgcolor="af9acd"> <td>23/03/24 00:16:45</td> <td>2155</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testGetCompeteTopicList(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]">testGetCompeteTopicList</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="86b28d"> <td>23/03/14 17:21:25</td> <td>2811</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testGetHomePageBookCommentChart(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]">testGetHomePageBookCommentChart</td>
<tr bgcolor="af9acd"> <td>23/03/24 00:16:45</td> <td>2284</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testGetHomePageBookCommentChart(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]">testGetHomePageBookCommentChart</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="86b28d"> <td>23/03/14 17:21:25</td> <td>2956</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testGetHomePageBookSalesChart(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]">testGetHomePageBookSalesChart</td>
<tr bgcolor="af9acd"> <td>23/03/24 00:16:46</td> <td>2510</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testGetHomePageBookSalesChart(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]">testGetHomePageBookSalesChart</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="86b28d"> <td>23/03/14 17:21:25</td> <td>3150</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testGetHomePageBookStatis(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]">testGetHomePageBookStatis</td>
<tr bgcolor="af9acd"> <td>23/03/24 00:16:46</td> <td>2703</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testGetHomePageBookStatis(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]">testGetHomePageBookStatis</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="86b28d"> <td>23/03/14 17:21:26</td> <td>3366</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testGetHomePageTopicChart(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]">testGetHomePageTopicChart</td>
<tr bgcolor="af9acd"> <td>23/03/24 00:16:46</td> <td>3013</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testGetHomePageTopicChart(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]">testGetHomePageTopicChart</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="86b28d"> <td>23/03/14 17:21:26</td> <td>3565</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testGetHomePageTopicWarn(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]">testGetHomePageTopicWarn</td>
<tr bgcolor="af9acd"> <td>23/03/24 00:16:46</td> <td>3171</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testGetHomePageTopicWarn(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]">testGetHomePageTopicWarn</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="86b28d"> <td>23/03/14 17:21:26</td> <td>3717</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testGetHomePageTopicWarn1(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]">testGetHomePageTopicWarn1</td>
<tr bgcolor="af9acd"> <td>23/03/24 00:16:46</td> <td>3287</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testGetHomePageTopicWarn1(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]">testGetHomePageTopicWarn1</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="86b28d"> <td>23/03/14 17:21:26</td> <td>3827</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testGetLatestRecordList(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]">testGetLatestRecordList</td>
<tr bgcolor="af9acd"> <td>23/03/24 00:16:47</td> <td>3393</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testGetLatestRecordList(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]">testGetLatestRecordList</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="86b28d"> <td>23/03/14 17:21:26</td> <td>3954</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testGetLoginInfo(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]">testGetLoginInfo</td>
<tr bgcolor="af9acd"> <td>23/03/24 00:16:47</td> <td>3512</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testGetLoginInfo(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]">testGetLoginInfo</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="86b28d"> <td>23/03/14 17:21:26</td> <td>4071</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testGetSubscriptList(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]">testGetSubscriptList</td>
<tr bgcolor="af9acd"> <td>23/03/24 00:16:47</td> <td>3621</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testGetSubscriptList(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]">testGetSubscriptList</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="86b28d"> <td>23/03/14 17:21:26</td> <td>4184</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testGetSubscriptList2(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]">testGetSubscriptList2</td>
<tr bgcolor="af9acd"> <td>23/03/24 00:16:47</td> <td>3722</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testGetSubscriptList2(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]">testGetSubscriptList2</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="86b28d"> <td>23/03/14 17:21:27</td> <td>4322</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testGetSubscriptList3(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]">testGetSubscriptList3</td>
<tr bgcolor="af9acd"> <td>23/03/24 00:16:47</td> <td>3829</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testGetSubscriptList3(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]">testGetSubscriptList3</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="86b28d"> <td>23/03/14 17:21:27</td> <td>4531</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testGgetCategoryInfoList(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]">testGgetCategoryInfoList</td>
<tr bgcolor="af9acd"> <td>23/03/24 00:16:47</td> <td>3952</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testGgetCategoryInfoList(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]">testGgetCategoryInfoList</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="86b28d"> <td>23/03/14 17:21:27</td> <td>4651</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testListBlankTopic(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]">testListBlankTopic</td>
<tr bgcolor="af9acd"> <td>23/03/24 00:16:47</td> <td>4048</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testListBlankTopic(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]">testListBlankTopic</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="86b28d"> <td>23/03/14 17:21:28</td> <td>5669</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testListHeatTopic4Report(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]">testListHeatTopic4Report</td>
<tr bgcolor="af9acd"> <td>23/03/24 00:16:47</td> <td>4145</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testListHeatTopic4Report(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]">testListHeatTopic4Report</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="86b28d"> <td>23/03/14 17:21:28</td> <td>5801</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testListHeatTopic4Report(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]">testListHeatTopic4Report</td>
<tr bgcolor="af9acd"> <td>23/03/24 00:16:47</td> <td>4270</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testListHeatTopic4Report(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]">testListHeatTopic4Report</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="86b28d"> <td>23/03/14 17:21:28</td> <td>5923</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testListIncreaseTopic4Report(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]">testListIncreaseTopic4Report</td>
<tr bgcolor="af9acd"> <td>23/03/24 00:16:48</td> <td>4387</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testListIncreaseTopic4Report(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]">testListIncreaseTopic4Report</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="86b28d"> <td>23/03/14 17:21:28</td> <td>6031</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testListIncreaseTopic4Report(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]">testListIncreaseTopic4Report</td>
<tr bgcolor="af9acd"> <td>23/03/24 00:16:48</td> <td>4501</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testListIncreaseTopic4Report(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]">testListIncreaseTopic4Report</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="86b28d"> <td>23/03/14 17:21:28</td> <td>6153</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testListNewBookTopic4Report(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]">testListNewBookTopic4Report</td>
<tr bgcolor="af9acd"> <td>23/03/24 00:16:48</td> <td>4612</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="RaysDataCase.testListNewBookTopic4Report(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]">testListNewBookTopic4Report</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="6a7885"> <td>23/03/14 17:21:28</td> <td>6292</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="PayCase.testPay(int, java.lang.String, java.lang.String, java.lang.String)[pri:0, instance:com.lemon.cases.PayCase@377008df]">testPay</td>
<tr bgcolor="d0fc89"> <td>23/03/24 00:16:48</td> <td>4738</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="PayCase.testPay(int, java.lang.String, java.lang.String, java.lang.String)[pri:0, instance:com.lemon.cases.PayCase@253b380a]">testPay</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="6a7885"> <td>23/03/14 17:21:29</td> <td>6503</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="PayCase.testPay(int, java.lang.String, java.lang.String, java.lang.String)[pri:0, instance:com.lemon.cases.PayCase@377008df]">testPay</td>
<tr bgcolor="d0fc89"> <td>23/03/24 00:16:48</td> <td>4937</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="PayCase.testPay(int, java.lang.String, java.lang.String, java.lang.String)[pri:0, instance:com.lemon.cases.PayCase@253b380a]">testPay</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="6a7885"> <td>23/03/14 17:21:29</td> <td>6702</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="PayCase.testPay(int, java.lang.String, java.lang.String, java.lang.String)[pri:0, instance:com.lemon.cases.PayCase@377008df]">testPay</td>
<tr bgcolor="d0fc89"> <td>23/03/24 00:16:48</td> <td>5131</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="PayCase.testPay(int, java.lang.String, java.lang.String, java.lang.String)[pri:0, instance:com.lemon.cases.PayCase@253b380a]">testPay</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="6a7885"> <td>23/03/14 17:21:29</td> <td>7067</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="PayCase.testPay(int, java.lang.String, java.lang.String, java.lang.String)[pri:0, instance:com.lemon.cases.PayCase@377008df]">testPay</td>
<tr bgcolor="d0fc89"> <td>23/03/24 00:16:48</td> <td>5352</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="PayCase.testPay(int, java.lang.String, java.lang.String, java.lang.String)[pri:0, instance:com.lemon.cases.PayCase@253b380a]">testPay</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="6a7885"> <td>23/03/14 17:21:30</td> <td>7416</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="PayCase.testPay(int, java.lang.String, java.lang.String, java.lang.String)[pri:0, instance:com.lemon.cases.PayCase@377008df]">testPay</td>
<tr bgcolor="d0fc89"> <td>23/03/24 00:16:49</td> <td>5591</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="PayCase.testPay(int, java.lang.String, java.lang.String, java.lang.String)[pri:0, instance:com.lemon.cases.PayCase@253b380a]">testPay</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="6a7885"> <td>23/03/14 17:21:30</td> <td>7626</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="PayCase.testRaysPay(int, java.lang.String, java.lang.String, java.lang.String)[pri:0, instance:com.lemon.cases.PayCase@377008df]">testRaysPay</td>
<tr bgcolor="d0fc89"> <td>23/03/24 00:16:49</td> <td>5817</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="PayCase.testRaysPay(int, java.lang.String, java.lang.String, java.lang.String)[pri:0, instance:com.lemon.cases.PayCase@253b380a]">testRaysPay</td>
<td>main@895328852</td> <td></td> </tr>
<tr bgcolor="818d84"> <td>23/03/14 17:21:30</td> <td>7792</td> <td title="&lt;&lt;BaseCase.finish()[pri:0, instance:com.lemon.cases.PayCase@377008df]">&lt;&lt;finish</td>
<tr bgcolor="d2f0dc"> <td>23/03/24 00:16:49</td> <td>6024</td> <td title="&lt;&lt;BaseCase.finish()[pri:0, instance:com.lemon.cases.PayCase@253b380a]">&lt;&lt;finish</td>
<td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td> <td>main@895328852</td> <td></td> </tr>
</table>
......@@ -2,16 +2,16 @@
<testng-results ignored="0" total="33" passed="33" failed="0" skipped="0">
<reporter-output>
</reporter-output>
<suite started-at="2023-03-14T09:21:22Z" name="理工数传" finished-at="2023-03-14T09:21:30Z" duration-ms="7765">
<suite started-at="2023-03-23T16:16:43Z" name="理工数传" finished-at="2023-03-23T16:16:49Z" duration-ms="6000">
<groups>
</groups>
<test started-at="2023-03-14T09:21:22Z" name="睿思数据" finished-at="2023-03-14T09:21:28Z" duration-ms="6242">
<test started-at="2023-03-23T16:16:43Z" name="睿思数据" finished-at="2023-03-23T16:16:48Z" duration-ms="4688">
<class name="com.lemon.cases.RaysDataCase">
<test-method signature="testAAAAALogin(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]" started-at="2023-03-14T09:21:23Z" name="testAAAAALogin" description="登录睿思数据" data-provider="data2" finished-at="2023-03-14T09:21:23Z" duration-ms="758" status="PASS">
<test-method signature="testAAAAALogin(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]" started-at="2023-03-23T16:16:44Z" name="testAAAAALogin" description="登录睿思数据" data-provider="data2" finished-at="2023-03-23T16:16:44Z" duration-ms="746" status="PASS">
<params>
<param index="0">
<value>
<![CDATA[com.lemon.pojo.API@13803a94]]>
<![CDATA[com.lemon.pojo.API@656a3d6b]]>
</value>
</param>
<param index="1">
......@@ -23,11 +23,11 @@
<reporter-output>
</reporter-output>
</test-method> <!-- testAAAAALogin -->
<test-method signature="testAAAAALogin(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]" started-at="2023-03-14T09:21:23Z" name="testAAAAALogin" description="登录睿思数据" data-provider="data2" finished-at="2023-03-14T09:21:24Z" duration-ms="150" status="PASS">
<test-method signature="testAAAAALogin(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]" started-at="2023-03-23T16:16:44Z" name="testAAAAALogin" description="登录睿思数据" data-provider="data2" finished-at="2023-03-23T16:16:44Z" duration-ms="113" status="PASS">
<params>
<param index="0">
<value>
<![CDATA[com.lemon.pojo.API@13803a94]]>
<![CDATA[com.lemon.pojo.API@656a3d6b]]>
</value>
</param>
<param index="1">
......@@ -39,11 +39,11 @@
<reporter-output>
</reporter-output>
</test-method> <!-- testAAAAALogin -->
<test-method signature="testAAAAALogin(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]" started-at="2023-03-14T09:21:24Z" name="testAAAAALogin" description="登录睿思数据" data-provider="data2" finished-at="2023-03-14T09:21:24Z" duration-ms="113" status="PASS">
<test-method signature="testAAAAALogin(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]" started-at="2023-03-23T16:16:44Z" name="testAAAAALogin" description="登录睿思数据" data-provider="data2" finished-at="2023-03-23T16:16:45Z" duration-ms="120" status="PASS">
<params>
<param index="0">
<value>
<![CDATA[com.lemon.pojo.API@13803a94]]>
<![CDATA[com.lemon.pojo.API@656a3d6b]]>
</value>
</param>
<param index="1">
......@@ -55,11 +55,11 @@
<reporter-output>
</reporter-output>
</test-method> <!-- testAAAAALogin -->
<test-method signature="testAAAAALogin(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]" started-at="2023-03-14T09:21:24Z" name="testAAAAALogin" description="登录睿思数据" data-provider="data2" finished-at="2023-03-14T09:21:24Z" duration-ms="180" status="PASS">
<test-method signature="testAAAAALogin(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]" started-at="2023-03-23T16:16:45Z" name="testAAAAALogin" description="登录睿思数据" data-provider="data2" finished-at="2023-03-23T16:16:45Z" duration-ms="146" status="PASS">
<params>
<param index="0">
<value>
<![CDATA[com.lemon.pojo.API@13803a94]]>
<![CDATA[com.lemon.pojo.API@656a3d6b]]>
</value>
</param>
<param index="1">
......@@ -71,11 +71,11 @@
<reporter-output>
</reporter-output>
</test-method> <!-- testAAAAALogin -->
<test-method signature="testAAAAALogin(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]" started-at="2023-03-14T09:21:24Z" name="testAAAAALogin" description="登录睿思数据" data-provider="data2" finished-at="2023-03-14T09:21:24Z" duration-ms="210" status="PASS">
<test-method signature="testAAAAALogin(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]" started-at="2023-03-23T16:16:45Z" name="testAAAAALogin" description="登录睿思数据" data-provider="data2" finished-at="2023-03-23T16:16:45Z" duration-ms="109" status="PASS">
<params>
<param index="0">
<value>
<![CDATA[com.lemon.pojo.API@13803a94]]>
<![CDATA[com.lemon.pojo.API@656a3d6b]]>
</value>
</param>
<param index="1">
......@@ -87,11 +87,11 @@
<reporter-output>
</reporter-output>
</test-method> <!-- testAAAAALogin -->
<test-method signature="testAAAAALogin(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]" started-at="2023-03-14T09:21:24Z" name="testAAAAALogin" description="登录睿思数据" data-provider="data2" finished-at="2023-03-14T09:21:24Z" duration-ms="228" status="PASS">
<test-method signature="testAAAAALogin(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]" started-at="2023-03-23T16:16:45Z" name="testAAAAALogin" description="登录睿思数据" data-provider="data2" finished-at="2023-03-23T16:16:45Z" duration-ms="170" status="PASS">
<params>
<param index="0">
<value>
<![CDATA[com.lemon.pojo.API@13803a94]]>
<![CDATA[com.lemon.pojo.API@656a3d6b]]>
</value>
</param>
<param index="1">
......@@ -103,11 +103,11 @@
<reporter-output>
</reporter-output>
</test-method> <!-- testAAAAALogin -->
<test-method signature="testGetCategoryInfoList(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]" started-at="2023-03-14T09:21:24Z" name="testGetCategoryInfoList" description="获取主页图书数据1" data-provider="data13" finished-at="2023-03-14T09:21:24Z" duration-ms="106" status="PASS">
<test-method signature="testGetCategoryInfoList(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]" started-at="2023-03-23T16:16:45Z" name="testGetCategoryInfoList" description="获取主页图书数据1" data-provider="data13" finished-at="2023-03-23T16:16:45Z" duration-ms="160" status="PASS">
<params>
<param index="0">
<value>
<![CDATA[com.lemon.pojo.API@778a1250]]>
<![CDATA[com.lemon.pojo.API@401c4250]]>
</value>
</param>
<param index="1">
......@@ -119,11 +119,11 @@
<reporter-output>
</reporter-output>
</test-method> <!-- testGetCategoryInfoList -->
<test-method signature="testGetCompeteTopicList(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]" started-at="2023-03-14T09:21:24Z" name="testGetCompeteTopicList" description="【选题洞察】选题竞争态势" data-provider="data17" finished-at="2023-03-14T09:21:25Z" duration-ms="209" status="PASS">
<test-method signature="testGetCompeteTopicList(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]" started-at="2023-03-23T16:16:45Z" name="testGetCompeteTopicList" description="【选题洞察】选题竞争态势" data-provider="data17" finished-at="2023-03-23T16:16:45Z" duration-ms="135" status="PASS">
<params>
<param index="0">
<value>
<![CDATA[com.lemon.pojo.API@7f3ca64a]]>
<![CDATA[com.lemon.pojo.API@570ba13]]>
</value>
</param>
<param index="1">
......@@ -135,11 +135,11 @@
<reporter-output>
</reporter-output>
</test-method> <!-- testGetCompeteTopicList -->
<test-method signature="testGetCompeteTopicList(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]" started-at="2023-03-14T09:21:25Z" name="testGetCompeteTopicList" description="【选题洞察】选题竞争态势" data-provider="data17" finished-at="2023-03-14T09:21:25Z" duration-ms="399" status="PASS">
<test-method signature="testGetCompeteTopicList(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]" started-at="2023-03-23T16:16:45Z" name="testGetCompeteTopicList" description="【选题洞察】选题竞争态势" data-provider="data17" finished-at="2023-03-23T16:16:45Z" duration-ms="128" status="PASS">
<params>
<param index="0">
<value>
<![CDATA[com.lemon.pojo.API@7f3ca64a]]>
<![CDATA[com.lemon.pojo.API@570ba13]]>
</value>
</param>
<param index="1">
......@@ -151,11 +151,11 @@
<reporter-output>
</reporter-output>
</test-method> <!-- testGetCompeteTopicList -->
<test-method signature="testGetHomePageBookCommentChart(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]" started-at="2023-03-14T09:21:25Z" name="testGetHomePageBookCommentChart" description="获取主页图书数据1" data-provider="data12" finished-at="2023-03-14T09:21:25Z" duration-ms="142" status="PASS">
<test-method signature="testGetHomePageBookCommentChart(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]" started-at="2023-03-23T16:16:45Z" name="testGetHomePageBookCommentChart" description="获取主页图书数据1" data-provider="data12" finished-at="2023-03-23T16:16:46Z" duration-ms="222" status="PASS">
<params>
<param index="0">
<value>
<![CDATA[com.lemon.pojo.API@25b38203]]>
<![CDATA[com.lemon.pojo.API@3f8dfe74]]>
</value>
</param>
<param index="1">
......@@ -167,11 +167,11 @@
<reporter-output>
</reporter-output>
</test-method> <!-- testGetHomePageBookCommentChart -->
<test-method signature="testGetHomePageBookSalesChart(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]" started-at="2023-03-14T09:21:25Z" name="testGetHomePageBookSalesChart" description="获取主页图书数据1" data-provider="data11" finished-at="2023-03-14T09:21:25Z" duration-ms="191" status="PASS">
<test-method signature="testGetHomePageBookSalesChart(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]" started-at="2023-03-23T16:16:46Z" name="testGetHomePageBookSalesChart" description="获取主页图书数据1" data-provider="data11" finished-at="2023-03-23T16:16:46Z" duration-ms="191" status="PASS">
<params>
<param index="0">
<value>
<![CDATA[com.lemon.pojo.API@656a3d6b]]>
<![CDATA[com.lemon.pojo.API@2519026b]]>
</value>
</param>
<param index="1">
......@@ -183,11 +183,11 @@
<reporter-output>
</reporter-output>
</test-method> <!-- testGetHomePageBookSalesChart -->
<test-method signature="testGetHomePageBookStatis(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]" started-at="2023-03-14T09:21:25Z" name="testGetHomePageBookStatis" description="获取主页图书数据" data-provider="data10" finished-at="2023-03-14T09:21:26Z" duration-ms="214" status="PASS">
<test-method signature="testGetHomePageBookStatis(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]" started-at="2023-03-23T16:16:46Z" name="testGetHomePageBookStatis" description="获取主页图书数据" data-provider="data10" finished-at="2023-03-23T16:16:46Z" duration-ms="309" status="PASS">
<params>
<param index="0">
<value>
<![CDATA[com.lemon.pojo.API@322204dc]]>
<![CDATA[com.lemon.pojo.API@64e7d698]]>
</value>
</param>
<param index="1">
......@@ -199,11 +199,11 @@
<reporter-output>
</reporter-output>
</test-method> <!-- testGetHomePageBookStatis -->
<test-method signature="testGetHomePageTopicChart(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]" started-at="2023-03-14T09:21:26Z" name="testGetHomePageTopicChart" description="获取我的主页1" data-provider="data8" finished-at="2023-03-14T09:21:26Z" duration-ms="196" status="PASS">
<test-method signature="testGetHomePageTopicChart(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]" started-at="2023-03-23T16:16:46Z" name="testGetHomePageTopicChart" description="获取我的主页1" data-provider="data8" finished-at="2023-03-23T16:16:46Z" duration-ms="155" status="PASS">
<params>
<param index="0">
<value>
<![CDATA[com.lemon.pojo.API@168ad26f]]>
<![CDATA[com.lemon.pojo.API@7f3ca64a]]>
</value>
</param>
<param index="1">
......@@ -215,11 +215,11 @@
<reporter-output>
</reporter-output>
</test-method> <!-- testGetHomePageTopicChart -->
<test-method signature="testGetHomePageTopicWarn(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]" started-at="2023-03-14T09:21:26Z" name="testGetHomePageTopicWarn" description="获取我的主页" data-provider="data7" finished-at="2023-03-14T09:21:26Z" duration-ms="151" status="PASS">
<test-method signature="testGetHomePageTopicWarn(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]" started-at="2023-03-23T16:16:46Z" name="testGetHomePageTopicWarn" description="获取我的主页" data-provider="data7" finished-at="2023-03-23T16:16:46Z" duration-ms="114" status="PASS">
<params>
<param index="0">
<value>
<![CDATA[com.lemon.pojo.API@1ad9b8d3]]>
<![CDATA[com.lemon.pojo.API@58833798]]>
</value>
</param>
<param index="1">
......@@ -231,11 +231,11 @@
<reporter-output>
</reporter-output>
</test-method> <!-- testGetHomePageTopicWarn -->
<test-method signature="testGetHomePageTopicWarn1(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]" started-at="2023-03-14T09:21:26Z" name="testGetHomePageTopicWarn1" description="获取我的主页3" data-provider="data9" finished-at="2023-03-14T09:21:26Z" duration-ms="108" status="PASS">
<test-method signature="testGetHomePageTopicWarn1(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]" started-at="2023-03-23T16:16:46Z" name="testGetHomePageTopicWarn1" description="获取我的主页3" data-provider="data9" finished-at="2023-03-23T16:16:47Z" duration-ms="105" status="PASS">
<params>
<param index="0">
<value>
<![CDATA[com.lemon.pojo.API@4f93bf0a]]>
<![CDATA[com.lemon.pojo.API@4d464510]]>
</value>
</param>
<param index="1">
......@@ -247,11 +247,11 @@
<reporter-output>
</reporter-output>
</test-method> <!-- testGetHomePageTopicWarn1 -->
<test-method signature="testGetLatestRecordList(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]" started-at="2023-03-14T09:21:26Z" name="testGetLatestRecordList" description="获取主页图书数据1" data-provider="data14" finished-at="2023-03-14T09:21:26Z" duration-ms="126" status="PASS">
<test-method signature="testGetLatestRecordList(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]" started-at="2023-03-23T16:16:47Z" name="testGetLatestRecordList" description="获取主页图书数据1" data-provider="data14" finished-at="2023-03-23T16:16:47Z" duration-ms="118" status="PASS">
<params>
<param index="0">
<value>
<![CDATA[com.lemon.pojo.API@55acec99]]>
<![CDATA[com.lemon.pojo.API@1a950fdd]]>
</value>
</param>
<param index="1">
......@@ -263,11 +263,11 @@
<reporter-output>
</reporter-output>
</test-method> <!-- testGetLatestRecordList -->
<test-method signature="testGetLoginInfo(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]" started-at="2023-03-14T09:21:26Z" name="testGetLoginInfo" description="获取用户信息" data-provider="data3" finished-at="2023-03-14T09:21:26Z" duration-ms="116" status="PASS">
<test-method signature="testGetLoginInfo(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]" started-at="2023-03-23T16:16:47Z" name="testGetLoginInfo" description="获取用户信息" data-provider="data3" finished-at="2023-03-23T16:16:47Z" duration-ms="108" status="PASS">
<params>
<param index="0">
<value>
<![CDATA[com.lemon.pojo.API@b4732dc]]>
<![CDATA[com.lemon.pojo.API@25b38203]]>
</value>
</param>
<param index="1">
......@@ -279,11 +279,11 @@
<reporter-output>
</reporter-output>
</test-method> <!-- testGetLoginInfo -->
<test-method signature="testGetSubscriptList(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]" started-at="2023-03-14T09:21:26Z" name="testGetSubscriptList" description="获取我订阅的未发期货" data-provider="data4" finished-at="2023-03-14T09:21:26Z" duration-ms="113" status="PASS">
<test-method signature="testGetSubscriptList(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]" started-at="2023-03-23T16:16:47Z" name="testGetSubscriptList" description="获取我订阅的未发期货" data-provider="data4" finished-at="2023-03-23T16:16:47Z" duration-ms="100" status="PASS">
<params>
<param index="0">
<value>
<![CDATA[com.lemon.pojo.API@45292ec1]]>
<![CDATA[com.lemon.pojo.API@778a1250]]>
</value>
</param>
<param index="1">
......@@ -295,11 +295,11 @@
<reporter-output>
</reporter-output>
</test-method> <!-- testGetSubscriptList -->
<test-method signature="testGetSubscriptList2(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]" started-at="2023-03-14T09:21:26Z" name="testGetSubscriptList2" description="获取我订阅的未发期货" data-provider="data5" finished-at="2023-03-14T09:21:27Z" duration-ms="135" status="PASS">
<test-method signature="testGetSubscriptList2(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]" started-at="2023-03-23T16:16:47Z" name="testGetSubscriptList2" description="获取我订阅的未发期货" data-provider="data5" finished-at="2023-03-23T16:16:47Z" duration-ms="106" status="PASS">
<params>
<param index="0">
<value>
<![CDATA[com.lemon.pojo.API@3a7c678b]]>
<![CDATA[com.lemon.pojo.API@55acec99]]>
</value>
</param>
<param index="1">
......@@ -311,11 +311,11 @@
<reporter-output>
</reporter-output>
</test-method> <!-- testGetSubscriptList2 -->
<test-method signature="testGetSubscriptList3(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]" started-at="2023-03-14T09:21:27Z" name="testGetSubscriptList3" description="获取我订阅的选题" data-provider="data6" finished-at="2023-03-14T09:21:27Z" duration-ms="208" status="PASS">
<test-method signature="testGetSubscriptList3(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]" started-at="2023-03-23T16:16:47Z" name="testGetSubscriptList3" description="获取我订阅的选题" data-provider="data6" finished-at="2023-03-23T16:16:47Z" duration-ms="122" status="PASS">
<params>
<param index="0">
<value>
<![CDATA[com.lemon.pojo.API@28babeca]]>
<![CDATA[com.lemon.pojo.API@61191222]]>
</value>
</param>
<param index="1">
......@@ -327,11 +327,11 @@
<reporter-output>
</reporter-output>
</test-method> <!-- testGetSubscriptList3 -->
<test-method signature="testGgetCategoryInfoList(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]" started-at="2023-03-14T09:21:27Z" name="testGgetCategoryInfoList" description="获取主页图书数据1" data-provider="data15" finished-at="2023-03-14T09:21:27Z" duration-ms="117" status="PASS">
<test-method signature="testGgetCategoryInfoList(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]" started-at="2023-03-23T16:16:47Z" name="testGgetCategoryInfoList" description="获取主页图书数据1" data-provider="data15" finished-at="2023-03-23T16:16:47Z" duration-ms="94" status="PASS">
<params>
<param index="0">
<value>
<![CDATA[com.lemon.pojo.API@61191222]]>
<![CDATA[com.lemon.pojo.API@77724cbe]]>
</value>
</param>
<param index="1">
......@@ -343,11 +343,11 @@
<reporter-output>
</reporter-output>
</test-method> <!-- testGgetCategoryInfoList -->
<test-method signature="testListBlankTopic(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]" started-at="2023-03-14T09:21:27Z" name="testListBlankTopic" description="【选题洞察】市场空白选题" data-provider="data16" finished-at="2023-03-14T09:21:28Z" duration-ms="1015" status="PASS">
<test-method signature="testListBlankTopic(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]" started-at="2023-03-23T16:16:47Z" name="testListBlankTopic" description="【选题洞察】市场空白选题" data-provider="data16" finished-at="2023-03-23T16:16:47Z" duration-ms="96" status="PASS">
<params>
<param index="0">
<value>
<![CDATA[com.lemon.pojo.API@58833798]]>
<![CDATA[com.lemon.pojo.API@27dc627a]]>
</value>
</param>
<param index="1">
......@@ -359,11 +359,11 @@
<reporter-output>
</reporter-output>
</test-method> <!-- testListBlankTopic -->
<test-method signature="testListHeatTopic4Report(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]" started-at="2023-03-14T09:21:28Z" name="testListHeatTopic4Report" description="【选题洞察】潜力增长选题" data-provider="data18" finished-at="2023-03-14T09:21:28Z" duration-ms="130" status="PASS">
<test-method signature="testListHeatTopic4Report(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]" started-at="2023-03-23T16:16:47Z" name="testListHeatTopic4Report" description="【选题洞察】潜力增长选题" data-provider="data18" finished-at="2023-03-23T16:16:47Z" duration-ms="124" status="PASS">
<params>
<param index="0">
<value>
<![CDATA[com.lemon.pojo.API@4d464510]]>
<![CDATA[com.lemon.pojo.API@37a9b687]]>
</value>
</param>
<param index="1">
......@@ -375,11 +375,11 @@
<reporter-output>
</reporter-output>
</test-method> <!-- testListHeatTopic4Report -->
<test-method signature="testListHeatTopic4Report(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]" started-at="2023-03-14T09:21:28Z" name="testListHeatTopic4Report" description="【选题洞察】潜力增长选题" data-provider="data18" finished-at="2023-03-14T09:21:28Z" duration-ms="121" status="PASS">
<test-method signature="testListHeatTopic4Report(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]" started-at="2023-03-23T16:16:47Z" name="testListHeatTopic4Report" description="【选题洞察】潜力增长选题" data-provider="data18" finished-at="2023-03-23T16:16:48Z" duration-ms="115" status="PASS">
<params>
<param index="0">
<value>
<![CDATA[com.lemon.pojo.API@4d464510]]>
<![CDATA[com.lemon.pojo.API@37a9b687]]>
</value>
</param>
<param index="1">
......@@ -391,11 +391,11 @@
<reporter-output>
</reporter-output>
</test-method> <!-- testListHeatTopic4Report -->
<test-method signature="testListIncreaseTopic4Report(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]" started-at="2023-03-14T09:21:28Z" name="testListIncreaseTopic4Report" description="【选题洞察】潜力增长选题&gt;新品贡献大" data-provider="data20" finished-at="2023-03-14T09:21:28Z" duration-ms="107" status="PASS">
<test-method signature="testListIncreaseTopic4Report(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]" started-at="2023-03-23T16:16:48Z" name="testListIncreaseTopic4Report" description="【选题洞察】潜力增长选题&gt;新品贡献大" data-provider="data20" finished-at="2023-03-23T16:16:48Z" duration-ms="112" status="PASS">
<params>
<param index="0">
<value>
<![CDATA[com.lemon.pojo.API@2519026b]]>
<![CDATA[com.lemon.pojo.API@16d07cf3]]>
</value>
</param>
<param index="1">
......@@ -407,11 +407,11 @@
<reporter-output>
</reporter-output>
</test-method> <!-- testListIncreaseTopic4Report -->
<test-method signature="testListIncreaseTopic4Report(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]" started-at="2023-03-14T09:21:28Z" name="testListIncreaseTopic4Report" description="【选题洞察】潜力增长选题&gt;新品贡献大" data-provider="data20" finished-at="2023-03-14T09:21:28Z" duration-ms="120" status="PASS">
<test-method signature="testListIncreaseTopic4Report(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]" started-at="2023-03-23T16:16:48Z" name="testListIncreaseTopic4Report" description="【选题洞察】潜力增长选题&gt;新品贡献大" data-provider="data20" finished-at="2023-03-23T16:16:48Z" duration-ms="109" status="PASS">
<params>
<param index="0">
<value>
<![CDATA[com.lemon.pojo.API@2519026b]]>
<![CDATA[com.lemon.pojo.API@16d07cf3]]>
</value>
</param>
<param index="1">
......@@ -423,11 +423,11 @@
<reporter-output>
</reporter-output>
</test-method> <!-- testListIncreaseTopic4Report -->
<test-method signature="testListNewBookTopic4Report(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@6edcd0d8]" started-at="2023-03-14T09:21:28Z" name="testListNewBookTopic4Report" description="【选题洞察】潜力增长选题&gt;新品贡献大" data-provider="data19" finished-at="2023-03-14T09:21:28Z" duration-ms="111" status="PASS">
<test-method signature="testListNewBookTopic4Report(com.lemon.pojo.API, com.lemon.pojo.Case)[pri:0, instance:com.lemon.cases.RaysDataCase@64aad6db]" started-at="2023-03-23T16:16:48Z" name="testListNewBookTopic4Report" description="【选题洞察】潜力增长选题&gt;新品贡献大" data-provider="data19" finished-at="2023-03-23T16:16:48Z" duration-ms="96" status="PASS">
<params>
<param index="0">
<value>
<![CDATA[com.lemon.pojo.API@64e7d698]]>
<![CDATA[com.lemon.pojo.API@525b1b70]]>
</value>
</param>
<param index="1">
......@@ -441,13 +441,13 @@
</test-method> <!-- testListNewBookTopic4Report -->
</class> <!-- com.lemon.cases.RaysDataCase -->
</test> <!-- 睿思数据 -->
<test started-at="2023-03-14T09:21:28Z" name="RAYS支付" finished-at="2023-03-14T09:21:30Z" duration-ms="1497">
<test started-at="2023-03-23T16:16:48Z" name="RAYS支付" finished-at="2023-03-23T16:16:49Z" duration-ms="1284">
<class name="com.lemon.cases.PayCase">
<test-method is-config="true" signature="init()[pri:0, instance:com.lemon.cases.PayCase@377008df]" started-at="2023-03-14T09:21:22Z" name="init" finished-at="2023-03-14T09:21:22Z" duration-ms="26" status="PASS">
<test-method is-config="true" signature="init()[pri:0, instance:com.lemon.cases.PayCase@253b380a]" started-at="2023-03-23T16:16:43Z" name="init" finished-at="2023-03-23T16:16:43Z" duration-ms="25" status="PASS">
<reporter-output>
</reporter-output>
</test-method> <!-- init -->
<test-method signature="testPay(int, java.lang.String, java.lang.String, java.lang.String)[pri:0, instance:com.lemon.cases.PayCase@377008df]" started-at="2023-03-14T09:21:28Z" name="testPay" data-provider="datas0" finished-at="2023-03-14T09:21:29Z" duration-ms="211" status="PASS">
<test-method signature="testPay(int, java.lang.String, java.lang.String, java.lang.String)[pri:0, instance:com.lemon.cases.PayCase@253b380a]" started-at="2023-03-23T16:16:48Z" name="testPay" data-provider="datas0" finished-at="2023-03-23T16:16:48Z" duration-ms="198" status="PASS">
<params>
<param index="0">
<value>
......@@ -473,7 +473,7 @@
<reporter-output>
</reporter-output>
</test-method> <!-- testPay -->
<test-method signature="testPay(int, java.lang.String, java.lang.String, java.lang.String)[pri:0, instance:com.lemon.cases.PayCase@377008df]" started-at="2023-03-14T09:21:29Z" name="testPay" data-provider="datas0" finished-at="2023-03-14T09:21:29Z" duration-ms="199" status="PASS">
<test-method signature="testPay(int, java.lang.String, java.lang.String, java.lang.String)[pri:0, instance:com.lemon.cases.PayCase@253b380a]" started-at="2023-03-23T16:16:48Z" name="testPay" data-provider="datas0" finished-at="2023-03-23T16:16:48Z" duration-ms="193" status="PASS">
<params>
<param index="0">
<value>
......@@ -499,7 +499,7 @@
<reporter-output>
</reporter-output>
</test-method> <!-- testPay -->
<test-method signature="testPay(int, java.lang.String, java.lang.String, java.lang.String)[pri:0, instance:com.lemon.cases.PayCase@377008df]" started-at="2023-03-14T09:21:29Z" name="testPay" data-provider="datas0" finished-at="2023-03-14T09:21:29Z" duration-ms="364" status="PASS">
<test-method signature="testPay(int, java.lang.String, java.lang.String, java.lang.String)[pri:0, instance:com.lemon.cases.PayCase@253b380a]" started-at="2023-03-23T16:16:48Z" name="testPay" data-provider="datas0" finished-at="2023-03-23T16:16:48Z" duration-ms="219" status="PASS">
<params>
<param index="0">
<value>
......@@ -525,7 +525,7 @@
<reporter-output>
</reporter-output>
</test-method> <!-- testPay -->
<test-method signature="testPay(int, java.lang.String, java.lang.String, java.lang.String)[pri:0, instance:com.lemon.cases.PayCase@377008df]" started-at="2023-03-14T09:21:29Z" name="testPay" data-provider="datas0" finished-at="2023-03-14T09:21:30Z" duration-ms="348" status="PASS">
<test-method signature="testPay(int, java.lang.String, java.lang.String, java.lang.String)[pri:0, instance:com.lemon.cases.PayCase@253b380a]" started-at="2023-03-23T16:16:48Z" name="testPay" data-provider="datas0" finished-at="2023-03-23T16:16:49Z" duration-ms="238" status="PASS">
<params>
<param index="0">
<value>
......@@ -551,7 +551,7 @@
<reporter-output>
</reporter-output>
</test-method> <!-- testPay -->
<test-method signature="testPay(int, java.lang.String, java.lang.String, java.lang.String)[pri:0, instance:com.lemon.cases.PayCase@377008df]" started-at="2023-03-14T09:21:30Z" name="testPay" data-provider="datas0" finished-at="2023-03-14T09:21:30Z" duration-ms="208" status="PASS">
<test-method signature="testPay(int, java.lang.String, java.lang.String, java.lang.String)[pri:0, instance:com.lemon.cases.PayCase@253b380a]" started-at="2023-03-23T16:16:49Z" name="testPay" data-provider="datas0" finished-at="2023-03-23T16:16:49Z" duration-ms="224" status="PASS">
<params>
<param index="0">
<value>
......@@ -577,7 +577,7 @@
<reporter-output>
</reporter-output>
</test-method> <!-- testPay -->
<test-method signature="testRaysPay(int, java.lang.String, java.lang.String, java.lang.String)[pri:0, instance:com.lemon.cases.PayCase@377008df]" started-at="2023-03-14T09:21:30Z" name="testRaysPay" data-provider="datas1" finished-at="2023-03-14T09:21:30Z" duration-ms="162" status="PASS">
<test-method signature="testRaysPay(int, java.lang.String, java.lang.String, java.lang.String)[pri:0, instance:com.lemon.cases.PayCase@253b380a]" started-at="2023-03-23T16:16:49Z" name="testRaysPay" data-provider="datas1" finished-at="2023-03-23T16:16:49Z" duration-ms="204" status="PASS">
<params>
<param index="0">
<value>
......@@ -603,7 +603,7 @@
<reporter-output>
</reporter-output>
</test-method> <!-- testRaysPay -->
<test-method is-config="true" signature="finish()[pri:0, instance:com.lemon.cases.PayCase@377008df]" started-at="2023-03-14T09:21:30Z" name="finish" finished-at="2023-03-14T09:21:30Z" duration-ms="41" status="PASS">
<test-method is-config="true" signature="finish()[pri:0, instance:com.lemon.cases.PayCase@253b380a]" started-at="2023-03-23T16:16:49Z" name="finish" finished-at="2023-03-23T16:16:49Z" duration-ms="42" status="PASS">
<reporter-output>
</reporter-output>
</test-method> <!-- finish -->
......
<html>
<html>
......@@ -57,9 +57,9 @@ function toggleAllBoxes() {
<tr>
<td>Tests passed/Failed/Skipped:</td><td>6/0/0</td>
</tr><tr>
<td>Started on:</td><td>Tue Mar 14 17:21:28 CST 2023</td>
<td>Started on:</td><td>Fri Mar 24 00:16:48 CST 2023</td>
</tr>
<tr><td>Total time:</td><td>1 seconds (1497 ms)</td>
<tr><td>Total time:</td><td>1 seconds (1284 ms)</td>
</tr><tr>
<td>Included groups:</td><td></td>
</tr><tr>
......@@ -78,32 +78,32 @@ function toggleAllBoxes() {
<td title='com.lemon.cases.PayCase.testPay()'><b>testPay</b><br>Test class: com.lemon.cases.PayCase<br>Parameters: 1, RAYS自跳RAYS, https://weixin23.5rs.me/channelcenter/v1.0/accountSetting/getOpreateManageInfo?officialAccountsId=23, {"errCode":0,"message":"操作成功!","data":{"officialAccountsId":23,"payAccounts":23,"officialAccountsName":"书童小睿","domain":"weixin23.5rs.me","payDomain":"weixin23.5rs.me","manageDomain":"wechat22.5rs.me","icon":"https://oss.5rs.me/oss/uploadfe/png/942c1c8f4f2a7bc81f82743c48bbaa1a.png","description":"属于你的双十一狂欢会","iosAlipayOpen":0,"payMchId":"1639325477","currentPagePay":0,"phoneAuthOpen":0,"payMethod":1}}</td>
<td></td>
<td>0</td>
<td>com.lemon.cases.PayCase@377008df</td></tr>
<td>com.lemon.cases.PayCase@253b380a</td></tr>
<tr>
<td title='com.lemon.cases.PayCase.testPay()'><b>testPay</b><br>Test class: com.lemon.cases.PayCase<br>Parameters: 2, 蓝海生态跳RAYS, https://weixin28.5rs.me/channelcenter/v1.0/accountSetting/getOpreateManageInfo?officialAccountsId=28, {"errCode":0,"message":"操作成功!","data":{"officialAccountsId":28,"payAccounts":23,"officialAccountsName":"RAYS蓝海生态","domain":"weixin28.5rs.me","payDomain":"weixin23.5rs.me","manageDomain":"wechat22.5rs.me","icon":"https://oss.5rs.me/oss/uploadfe/jpg/bbee8ff1fe52e5c58ab669d937a7f406.jpg","description":"RAYS,给你别致的读书体验","iosAlipayOpen":0,"payMchId":"1639325477","currentPagePay":0,"phoneAuthOpen":0,"payMethod":1}}</td>
<td></td>
<td>0</td>
<td>com.lemon.cases.PayCase@377008df</td></tr>
<td>com.lemon.cases.PayCase@253b380a</td></tr>
<tr>
<td title='com.lemon.cases.PayCase.testPay()'><b>testPay</b><br>Test class: com.lemon.cases.PayCase<br>Parameters: 3, 上海教育跳RAYS, https://weixin65750.rayswdcb.com/channelcenter/v1.0/accountSetting/getOpreateManageInfo?officialAccountsId=65750, {"errCode":0,"message":"操作成功!","data":{"officialAccountsId":65750,"payAccounts":23,"officialAccountsName":"上海教育出版社有限公司","domain":"weixin65750.rayswdcb.com","payDomain":"weixin23.5rs.me","manageDomain":"wechat75903.rayswang.com","icon":"https://oss.5rs.me/oss/uploadfe/jpg/a7684e17ab41c8e43e7576e7321b8a77.jpg","description":"上海教育出版社有限公司","iosAlipayOpen":0,"payMchId":"1639325477","currentPagePay":0,"phoneAuthOpen":0,"payMethod":1}}</td>
<td></td>
<td>0</td>
<td>com.lemon.cases.PayCase@377008df</td></tr>
<td>com.lemon.cases.PayCase@253b380a</td></tr>
<tr>
<td title='com.lemon.cases.PayCase.testPay()'><b>testPay</b><br>Test class: com.lemon.cases.PayCase<br>Parameters: 4, 小蓝书跳小蓝书, https://weixin65842.rayshbjy.com/channelcenter/v1.0/accountSetting/getOpreateManageInfo?officialAccountsId=65842, {"errCode":0,"message":"操作成功!","data":{"officialAccountsId":65842,"payAccounts":65967,"officialAccountsName":"小蓝书高中生服务平台","domain":"weixin65842.rayshbjy.com","payDomain":"wechat65842.rayshbjy.com","manageDomain":"wechat65842.rayshbjy.com","icon":"https://oss.5rs.me/oss/uploadfe/jpg/3c1aa1fa65912a1a2673bc6ca05039d2.jpg","description":"小蓝书携手一线教研专家,为全国高中生提供一站式服务:教育资讯、新高考选科工具,优质图书、课程推荐,专家、学霸交流等。","iosAlipayOpen":0,"payMchId":"1521882781","currentPagePay":0,"phoneAuthOpen":0,"payMethod":1}}</td>
<td></td>
<td>0</td>
<td>com.lemon.cases.PayCase@377008df</td></tr>
<td>com.lemon.cases.PayCase@253b380a</td></tr>
<tr>
<td title='com.lemon.cases.PayCase.testPay()'><b>testPay</b><br>Test class: com.lemon.cases.PayCase<br>Parameters: 5, 新世纪跳新世纪, https://weixin65700.rayscjsn.com/channelcenter/v1.0/accountSetting/getOpreateManageInfo?officialAccountsId=65700, {"errCode":0,"message":"操作成功!","data":{"officialAccountsId":65700,"payAccounts":65998,"officialAccountsName":"广东新世纪出版社有限公司","domain":"weixin65700.rayscjsn.com","payDomain":"wechat65700.rayscjsn.com","manageDomain":"wechat65700.rayscjsn.com","icon":"https://oss.5rs.me/resources/jpg/j5zxhrw9N3EqbCR7oVFTHaP4W2DByZmg.jpg","iosAlipayOpen":0,"payMchId":"1594177521","currentPagePay":0,"phoneAuthOpen":0,"payMethod":1}}</td>
<td></td>
<td>0</td>
<td>com.lemon.cases.PayCase@377008df</td></tr>
<td>com.lemon.cases.PayCase@253b380a</td></tr>
<tr>
<td title='com.lemon.cases.PayCase.testRaysPay()'><b>testRaysPay</b><br>Test class: com.lemon.cases.PayCase<br>Parameters: 1, 小睿伴学支付跳RAYS, https://wechat50687.5rs.me/channelcenter/v1.0/accountSetting/getOpreateManageInfo?officialAccountsId=50687, {"errCode":0,"message":"操作成功!","data":{"officialAccountsId":50687,"payAccounts":23,"officialAccountsName":"小睿伴学","domain":"wechat50687.5rs.me","payDomain":"weixin23.5rs.me","manageDomain":"wechat22.5rs.me","icon":"https://oss.5rs.me/oss/upload/image/jpg/bb8353c7cec744b99060ca3bf31b72f0.jpg","description":"小睿伴学","iosAlipayOpen":0,"payMchId":"1639325477","currentPagePay":0,"phoneAuthOpen":0,"payMethod":1}}</td>
<td></td>
<td>0</td>
<td>com.lemon.cases.PayCase@377008df</td></tr>
<td>com.lemon.cases.PayCase@253b380a</td></tr>
</table><p>
</body>
</html>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<?xml version="1.0" encoding="UTF-8"?>
<?xml version="1.0" encoding="UTF-8"?>
<!-- Generated by org.testng.reporters.JUnitXMLReporter -->
<testsuite ignored="0" hostname="Ray-MacBook-Pro-2.local" failures="0" tests="6" name="RAYS支付" time="1.497" errors="0" timestamp="14 3月 2023 09:21:30 GMT">
<testcase classname="com.lemon.cases.PayCase" name="testPay" time="0.211"/>
<testcase classname="com.lemon.cases.PayCase" name="testPay" time="0.199"/>
<testcase classname="com.lemon.cases.PayCase" name="testPay" time="0.364"/>
<testcase classname="com.lemon.cases.PayCase" name="testPay" time="0.348"/>
<testcase classname="com.lemon.cases.PayCase" name="testPay" time="0.208"/>
<testcase classname="com.lemon.cases.PayCase" name="testRaysPay" time="0.162"/>
<testsuite ignored="0" hostname="Ray-MacBook-Pro-2.local" failures="0" tests="6" name="RAYS支付" time="1.284" errors="0" timestamp="23 3月 2023 16:16:49 GMT">
<testcase classname="com.lemon.cases.PayCase" name="testPay" time="0.198"/>
<testcase classname="com.lemon.cases.PayCase" name="testPay" time="0.193"/>
<testcase classname="com.lemon.cases.PayCase" name="testPay" time="0.219"/>
<testcase classname="com.lemon.cases.PayCase" name="testPay" time="0.238"/>
<testcase classname="com.lemon.cases.PayCase" name="testPay" time="0.224"/>
<testcase classname="com.lemon.cases.PayCase" name="testRaysPay" time="0.204"/>
</testsuite> <!-- RAYS支付 -->
This source diff could not be displayed because it is too large. You can view the blob instead.
<?xml version="1.0" encoding="UTF-8"?>
<?xml version="1.0" encoding="UTF-8"?>
<?xml version="1.0" encoding="UTF-8"?>
<!-- Generated by org.testng.reporters.JUnitXMLReporter -->
<testsuite ignored="0" hostname="Ray-MacBook-Pro-2.local" failures="0" tests="27" name="睿思数据" time="6.242" errors="0" timestamp="14 3月 2023 09:21:28 GMT">
<testcase classname="com.lemon.cases.RaysDataCase" name="testAAAAALogin" time="0.758"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testAAAAALogin" time="0.15"/>
<testsuite ignored="0" hostname="Ray-MacBook-Pro-2.local" failures="0" tests="27" name="睿思数据" time="4.688" errors="0" timestamp="23 3月 2023 16:16:48 GMT">
<testcase classname="com.lemon.cases.RaysDataCase" name="testAAAAALogin" time="0.746"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testAAAAALogin" time="0.113"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testAAAAALogin" time="0.18"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testAAAAALogin" time="0.21"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testAAAAALogin" time="0.228"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testGetCategoryInfoList" time="0.106"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testGetCompeteTopicList" time="0.209"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testGetCompeteTopicList" time="0.399"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testGetHomePageBookCommentChart" time="0.142"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testAAAAALogin" time="0.12"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testAAAAALogin" time="0.146"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testAAAAALogin" time="0.109"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testAAAAALogin" time="0.17"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testGetCategoryInfoList" time="0.16"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testGetCompeteTopicList" time="0.135"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testGetCompeteTopicList" time="0.128"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testGetHomePageBookCommentChart" time="0.222"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testGetHomePageBookSalesChart" time="0.191"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testGetHomePageBookStatis" time="0.214"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testGetHomePageTopicChart" time="0.196"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testGetHomePageTopicWarn" time="0.151"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testGetHomePageTopicWarn1" time="0.108"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testGetLatestRecordList" time="0.126"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testGetLoginInfo" time="0.116"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testGetSubscriptList" time="0.113"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testGetSubscriptList2" time="0.135"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testGetSubscriptList3" time="0.208"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testGgetCategoryInfoList" time="0.117"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testListBlankTopic" time="1.015"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testListHeatTopic4Report" time="0.13"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testListHeatTopic4Report" time="0.121"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testListIncreaseTopic4Report" time="0.107"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testListIncreaseTopic4Report" time="0.12"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testListNewBookTopic4Report" time="0.111"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testGetHomePageBookStatis" time="0.309"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testGetHomePageTopicChart" time="0.155"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testGetHomePageTopicWarn" time="0.114"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testGetHomePageTopicWarn1" time="0.105"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testGetLatestRecordList" time="0.118"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testGetLoginInfo" time="0.108"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testGetSubscriptList" time="0.1"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testGetSubscriptList2" time="0.106"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testGetSubscriptList3" time="0.122"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testGgetCategoryInfoList" time="0.094"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testListBlankTopic" time="0.096"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testListHeatTopic4Report" time="0.124"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testListHeatTopic4Report" time="0.115"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testListIncreaseTopic4Report" time="0.112"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testListIncreaseTopic4Report" time="0.109"/>
<testcase classname="com.lemon.cases.RaysDataCase" name="testListNewBookTopic4Report" time="0.096"/>
</testsuite> <!-- 睿思数据 -->
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment