Commit 667ddd0c authored by 赵然's avatar 赵然

Merge branch 'zr' into develop

parents 40e2fbaf b45e0060
...@@ -37,12 +37,13 @@ public class 自有活动出奖_DuibaTest extends DuibaTestBase { ...@@ -37,12 +37,13 @@ public class 自有活动出奖_DuibaTest extends DuibaTestBase {
Response response = newActivityService.doJoin2("21803","h5ps61"); Response response = newActivityService.doJoin2("21803","h5ps61");
String orderId = response.jsonPath().getString("orderId"); String orderId = response.jsonPath().getString("orderId");
response = newActivityService.getOrderStatus2(orderId); response = newActivityService.getOrderStatus2(orderId);
response.print();
String result = response.jsonPath().getString("result"); String result = response.jsonPath().getString("result");
int i = 30; int i = 30;
while(i>0&&result.equals("0")){ while(i>0&&result.equals("0")){
Thread.sleep(1000); Thread.sleep(1000);
response = newActivityService.getOrderStatus2(orderId); response = newActivityService.getOrderStatus2(orderId);
response.prettyPeek(); response.print();
result = response.jsonPath().getString("result"); result = response.jsonPath().getString("result");
i--; i--;
} }
......
...@@ -461,6 +461,9 @@ public class ManagerService { ...@@ -461,6 +461,9 @@ public class ManagerService {
map.put("gameStarting","true"); map.put("gameStarting","true");
map.put("channelType","0"); map.put("channelType","0");
map.put("customFalg","false");
map.put("customKey","");
logger.info("请求保存自定义活动工具接口:"+saveUrl); logger.info("请求保存自定义活动工具接口:"+saveUrl);
Response saveResponse=given().contentType("application/x-www-form-urlencoded;charset=UTF-8").cookies(authorization.ssoLogin()).params(map).post("http://"+saveUrl); Response saveResponse=given().contentType("application/x-www-form-urlencoded;charset=UTF-8").cookies(authorization.ssoLogin()).params(map).post("http://"+saveUrl);
saveResponse.prettyPrint(); saveResponse.prettyPrint();
...@@ -668,6 +671,8 @@ public class ManagerService { ...@@ -668,6 +671,8 @@ public class ManagerService {
map.put("directSendCoupon","FALSE"); map.put("directSendCoupon","FALSE");
map.put("channelType","0"); map.put("channelType","0");
map.put("customFalg","false");
map.put("customKey","");
Response saveResponse=given().contentType("application/x-www-form-urlencoded;charset=UTF-8").cookies(authorization.ssoLogin()).params(map).post("http://"+saveUrl); Response saveResponse=given().contentType("application/x-www-form-urlencoded;charset=UTF-8").cookies(authorization.ssoLogin()).params(map).post("http://"+saveUrl);
saveResponse.prettyPrint(); saveResponse.prettyPrint();
try{ try{
......
...@@ -176,7 +176,8 @@ public class EditManagerInfoService { ...@@ -176,7 +176,8 @@ public class EditManagerInfoService {
map.put("token",token); map.put("token",token);
map.put("customFalg","false");
map.put("customKey","");
Response saveResponse = given().contentType("application/x-www-form-urlencoded;charset=UTF-8").cookies(authorization.ssoLogin()).params(map).post("http://"+saveUrl); Response saveResponse = given().contentType("application/x-www-form-urlencoded;charset=UTF-8").cookies(authorization.ssoLogin()).params(map).post("http://"+saveUrl);
saveResponse.prettyPrint(); saveResponse.prettyPrint();
try{ try{
......
...@@ -117,6 +117,9 @@ public class CustomHdToolCtrlService { ...@@ -117,6 +117,9 @@ public class CustomHdToolCtrlService {
//活动策划 & 视觉策划 //活动策划 & 视觉策划
params.put("plotterUser","张三"); params.put("plotterUser","张三");
params.put("createUser","李四"); params.put("createUser","李四");
params.put("customFalg","false");
params.put("customKey","");
//获取创建活动的token //获取创建活动的token
String token = editConfig(customHdToolVO.getActId()).jsonPath().getString("data.token"); String token = editConfig(customHdToolVO.getActId()).jsonPath().getString("data.token");
params.put("token",token); params.put("token",token);
......
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