Commit 1d3155c4 by zhangying

review

parent eb170586
......@@ -28,7 +28,7 @@ public class TestChangeCourseState extends XMBaseTest {
}
/**
* 测试改变直播课次状态-开始直播
* 测试改变直播课次状态-大班直播-开始直播
*/
@Test
public void testChangeCourseState() throws InterruptedException {
......@@ -58,10 +58,10 @@ public class TestChangeCourseState extends XMBaseTest {
* 测试改变直播课次状态-结束直播
*/
@Test(description = "修改课程状态为结束")
public void testChangeCourseState1() throws InterruptedException {
public void testChangeCourseState1() {
GetLiveCourseData getLiveCourseData=new GetLiveCourseData();
JSONObject getInteractionCourseData = getLiveCourseData.getInteractionClassLiveListWithStatus("STARTING");
JSONObject getInteractionCourseData = getLiveCourseData.getLargeClassLiveList();
System.out.println(" ************"+getInteractionCourseData.getJSONObject("result"));
String liveCourseId = getInteractionCourseData.getJSONObject("result").getJSONArray("records").getJSONObject(0).getString("liveCourseId");
System.out.println("liveCourseId ="+liveCourseId);
......@@ -77,9 +77,63 @@ public class TestChangeCourseState extends XMBaseTest {
Assert.assertEquals("true", jsonBody.getString("success"));
Assert.assertEquals("操作成功!", jsonBody.getString("message"));
Assert.assertEquals("FINISH", classLiveList.getJSONObject("result").getJSONArray("records").getJSONObject(0).getString("courseState"));
// Assert.assertEquals(liveCourseId,classLiveList.getJSONObject("result").getJSONArray("records").getJSONObject(0).getString("liveCourseId"));
}
/**
* 测试改变直播课次状态-大班互动-开始直播
*/
@Test
public void testChangeCourseState2() throws InterruptedException {
GetLiveCourseData getLiveCourseData=new GetLiveCourseData();
JSONObject largeCourse=getLiveCourseData.createLargeInteractionClassLive();
String liveCourseId=largeCourse.getString("result");
System.out.println("liveCourseId ="+liveCourseId);
JSONObject jsonObject = new JSONObject();
jsonObject.put("liveCourseId",liveCourseId);
jsonObject.put("courseState","STARTING");
xmAppApi.doRequest(RequestType.JSON, params, jsonObject.toJSONString(), headers);
JSONObject jsonBody = xmAppApi.getBodyInJSON();
JSONObject classLiveList = getLiveCourseData.getInteractionClassLiveListWithStatus("STARTING");
Assert.assertEquals("true", jsonBody.getString("success"));
Assert.assertEquals("操作成功!", jsonBody.getString("message"));
Assert.assertEquals("STARTING", classLiveList.getJSONObject("result").getJSONArray("records").getJSONObject(0).getString("courseState"));
Assert.assertEquals(liveCourseId,classLiveList.getJSONObject("result").getJSONArray("records").getJSONObject(0).getString("liveCourseId"));
}
/**
* 测试改变直播课次状态-结束直播
*/
@Test(description = "修改课程状态为结束")
public void testChangeCourseState3() {
GetLiveCourseData getLiveCourseData=new GetLiveCourseData();
JSONObject getInteractionCourseData = getLiveCourseData.getInteractionClassLiveListWithStatus("STARTING");
System.out.println(" ************"+getInteractionCourseData.getJSONObject("result"));
String liveCourseId = getInteractionCourseData.getJSONObject("result").getJSONArray("records").getJSONObject(0).getString("liveCourseId");
System.out.println("liveCourseId ="+liveCourseId);
JSONObject jsonObject = new JSONObject();
jsonObject.put("liveCourseId",liveCourseId);
jsonObject.put("courseState","FINISH");
xmAppApi.doRequest(RequestType.JSON, params, jsonObject.toJSONString(), headers);
JSONObject jsonBody = xmAppApi.getBodyInJSON();
JSONObject classLiveList = getLiveCourseData.getInteractionClassLiveListWithStatus("FINISH");
Assert.assertEquals("true", jsonBody.getString("success"));
Assert.assertEquals("操作成功!", jsonBody.getString("message"));
Assert.assertEquals("FINISH", classLiveList.getJSONObject("result").getJSONArray("records").getJSONObject(0).getString("courseState"));
// Assert.assertEquals(liveCourseId,classLiveList.getJSONObject("result").getJSONArray("records").getJSONObject(0).getString("liveCourseId"));
}
}
# 数据库配置
jdbc.name=test
jdbc.url=jdbc:mysql://10.158.0.123:3306/xm_data?characterEncoding=UTF-8
jdbc.username=qaman
jdbc.password=qaman
#jdbc.url=jdbc:mysql://120.27.248.253:3306/xm_data?characterEncoding=UTF-8
#jdbc.username=root
#jdbc.password=root
#jdbc.url=jdbc:mysql://10.158.0.123:3306/xm_data?characterEncoding=UTF-8
#jdbc.username=qaman
#jdbc.password=qaman
jdbc.url=jdbc:mysql://120.27.248.253:3306/xm_data?characterEncoding=UTF-8
jdbc.username=root
jdbc.password=root
jdbc.driverClassName=com.mysql.jdbc.Driver
######################### 连接池的配置信息 #################
......
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