Commit 04f15b11 by zhangying

补充乐器陪练课的2case

parent e8acdd4a
package com.live.cases.musicPlay;
import com.alibaba.fastjson.JSONObject;
import com.live.enums.ApiModele;
import com.live.enums.RequestType;
import com.live.enums.Terminal;
import com.live.utils.XMBaseTest;
import org.testng.Assert;
import org.testng.annotations.BeforeMethod;
import org.testng.annotations.Test;
/**
* Created by zhangying on 2020/02/04
*/
public class TestGetUseAbleAccountByStudentId extends XMBaseTest {
@BeforeMethod
public void beforeTest() {
xmAppApi.setApiModule(ApiModele.CloudClass_B) // API 所属模块 必传 读取配置文件config.properties配置的api地址
.setApiName("API_getUseAbleAccountByStudentId") // API 名称 必传
.setLoginUser("zhangy-b") // http 接口,测试账号 必传
.setTerminal(Terminal.B); // 所属端位(B端,C端,M端等, 必传)
super.beforeTest();
}
/**
* 学员上课数据-修改扣课时数,查询学员课时账户
*/
@Test
public void testGetUseAbleAccountByStudentId() {
JSONObject jsonObject = new JSONObject();
jsonObject.put("studentId","1235119596803903489");
System.out.println("jsonObject ="+jsonObject );
xmAppApi.doRequest(RequestType.JSON, params, jsonObject.toJSONString(), headers);
JSONObject jsonBody = xmAppApi.getBodyInJSON();
System.out.println("jsonBody ="+jsonBody );
Assert.assertNotEquals(0, jsonBody.getJSONArray("result").size());
Assert.assertEquals("true", jsonBody.getString("success"));
Assert.assertEquals("200", jsonBody.getString("code"));
}
}
package com.live.cases.musicPlay;
import com.alibaba.fastjson.JSONObject;
import com.live.enums.ApiModele;
import com.live.enums.RequestType;
import com.live.enums.Terminal;
import com.live.utils.XMBaseTest;
import org.testng.Assert;
import org.testng.annotations.BeforeMethod;
import org.testng.annotations.Test;
/**
* Created by zhangying on 2020/02/04
*/
public class TestUpdateStudentVisitCheckedData extends XMBaseTest {
@BeforeMethod
public void beforeTest() {
xmAppApi.setApiModule(ApiModele.CloudClass_B) // API 所属模块 必传 读取配置文件config.properties配置的api地址
.setApiName("API_updateStudentVisitCheckedData") // API 名称 必传
.setLoginUser("zhangy-b") // http 接口,测试账号 必传
.setTerminal(Terminal.B); // 所属端位(B端,C端,M端等, 必传)
super.beforeTest();
}
/**
* 乐器陪练-学员上课数据,修改扣课时数为0
*/
@Test
public void testUpdateStudentVisitCheckedData() {
JSONObject jsonObject = new JSONObject();
jsonObject.put("consumeHourClassId","1237292779809337345");
jsonObject.put("consumeHourNum","0");
jsonObject.put("consumeUserId","1235115979394306049");
jsonObject.put("instId","1235115978015883266");
jsonObject.put("liveStudentId","1357211987609444353");
System.out.println("jsonObject ="+jsonObject );
xmAppApi.doRequest(RequestType.JSON, params, jsonObject.toJSONString(), headers);
JSONObject jsonBody = xmAppApi.getBodyInJSON();
System.out.println("jsonBody ="+jsonBody );
// Assert.assertNotEquals(0, jsonBody.getJSONArray("result").size());
// Assert.assertEquals("false", jsonBody.getString("success"));
Assert.assertEquals("操作成功!", jsonBody.getString("message"));
}
/**
* 乐器陪练-学员上课数据,修改扣课时数为1
*/
@Test
public void testUpdateStudentVisitCheckedData1() {
JSONObject jsonObject = new JSONObject();
jsonObject.put("consumeHourClassId","1237292779809337345");
jsonObject.put("consumeHourNum","1");
jsonObject.put("consumeUserId","1235115979394306049");
jsonObject.put("instId","1235115978015883266");
jsonObject.put("liveStudentId","1357211987609444353");
System.out.println("jsonObject ="+jsonObject );
xmAppApi.doRequest(RequestType.JSON, params, jsonObject.toJSONString(), headers);
System.out.println(xmAppApi);
JSONObject jsonBody = xmAppApi.getBodyInJSON();
System.out.println("jsonBody ="+jsonBody );
// Assert.assertNotEquals(0, jsonBody.getJSONArray("result").size());
// Assert.assertEquals("false", jsonBody.getString("success"));
Assert.assertEquals("不能超过剩余课时数", jsonBody.getString("message"));
}
}
...@@ -154,5 +154,17 @@ ...@@ -154,5 +154,17 @@
"apiContentType": "application/json;charset=utf-8", "apiContentType": "application/json;charset=utf-8",
"apiName": "转成短链接", "apiName": "转成短链接",
"desc": "转成短链接" "desc": "转成短链接"
},
"API_getUseAbleAccountByStudentId": {
"apiPath": "/business/public/classHour/getUseAbleAccountByStudentId",
"apiContentType": "application/json;charset=utf-8",
"apiName": "查询学员课时账户",
"desc": "查询学员课时账户"
},
"API_updateStudentVisitCheckedData": {
"apiPath": "/apollo/public/businessLive/updateStudentVisitCheckedData",
"apiContentType": "application/json;charset=utf-8",
"apiName": "修改学员扣课时",
"desc": "修改学员扣课时"
} }
} }
\ No newline at end of file
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