mirror of https://github.com/OpenVidu/openvidu.git
openvidu-test-e2e: recording tests renamed
parent
bdd54e01e5
commit
c38d905a46
|
@ -1030,12 +1030,12 @@ public class OpenViduTestAppE2eTest {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@DisplayName("Local record")
|
@DisplayName("Local browser record")
|
||||||
void localRecordTest() throws Exception {
|
void localBrowserRecordTest() throws Exception {
|
||||||
|
|
||||||
setupBrowser("chrome");
|
setupBrowser("chrome");
|
||||||
|
|
||||||
log.info("Local record");
|
log.info("Local browser record");
|
||||||
|
|
||||||
user.getDriver().findElement(By.id("add-user-btn")).click();
|
user.getDriver().findElement(By.id("add-user-btn")).click();
|
||||||
user.getDriver().findElement(By.className("join-btn")).click();
|
user.getDriver().findElement(By.className("join-btn")).click();
|
||||||
|
@ -1087,13 +1087,13 @@ public class OpenViduTestAppE2eTest {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@DisplayName("Remote composed record")
|
@DisplayName("Composed record")
|
||||||
void remoteComposedRecordTest() throws Exception {
|
void composedRecordTest() throws Exception {
|
||||||
isRecordingTest = true;
|
isRecordingTest = true;
|
||||||
|
|
||||||
setupBrowser("chrome");
|
setupBrowser("chrome");
|
||||||
|
|
||||||
log.info("Remote composed record");
|
log.info("Composed record");
|
||||||
|
|
||||||
final String sessionName = "COMPOSED_RECORDED_SESSION";
|
final String sessionName = "COMPOSED_RECORDED_SESSION";
|
||||||
final String resolution = "1280x720";
|
final String resolution = "1280x720";
|
||||||
|
@ -1238,13 +1238,13 @@ public class OpenViduTestAppE2eTest {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@DisplayName("Remote composed quick start record")
|
@DisplayName("Composed quick start record")
|
||||||
void remoteComposedQuickStartRecordTest() throws Exception {
|
void composedQuickStartRecordTest() throws Exception {
|
||||||
isRecordingTest = true;
|
isRecordingTest = true;
|
||||||
|
|
||||||
setupBrowser("chrome");
|
setupBrowser("chrome");
|
||||||
|
|
||||||
log.info("Remote composed quick start record");
|
log.info("Composed quick start record");
|
||||||
|
|
||||||
CountDownLatch initLatch = new CountDownLatch(1);
|
CountDownLatch initLatch = new CountDownLatch(1);
|
||||||
io.openvidu.test.browsers.utils.CustomWebhook.main(new String[0], initLatch);
|
io.openvidu.test.browsers.utils.CustomWebhook.main(new String[0], initLatch);
|
||||||
|
@ -1413,13 +1413,13 @@ public class OpenViduTestAppE2eTest {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@DisplayName("Remote individual record")
|
@DisplayName("Individual record")
|
||||||
void remoteIndividualRecordTest() throws Exception {
|
void individualRecordTest() throws Exception {
|
||||||
isRecordingTest = true;
|
isRecordingTest = true;
|
||||||
|
|
||||||
setupBrowser("chrome");
|
setupBrowser("chrome");
|
||||||
|
|
||||||
log.info("Remote individual record");
|
log.info("Individual record");
|
||||||
|
|
||||||
final String sessionName = "TestSession";
|
final String sessionName = "TestSession";
|
||||||
final String recordingName = "CUSTOM_NAME";
|
final String recordingName = "CUSTOM_NAME";
|
||||||
|
@ -1519,13 +1519,13 @@ public class OpenViduTestAppE2eTest {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@DisplayName("Remote record cross-browser audio-only and video-only")
|
@DisplayName("Record cross-browser audio-only and video-only")
|
||||||
void remoteRecordAudioOnlyVideoOnlyTest() throws Exception {
|
void recordAudioOnlyVideoOnlyTest() throws Exception {
|
||||||
isRecordingTest = true;
|
isRecordingTest = true;
|
||||||
|
|
||||||
setupBrowser("chromeAlternateScreenShare");
|
setupBrowser("chromeAlternateScreenShare");
|
||||||
|
|
||||||
log.info("Remote record cross-browser audio-only and video-only");
|
log.info("Record cross-browser audio-only and video-only");
|
||||||
|
|
||||||
final String SESSION_NAME = "TestSession";
|
final String SESSION_NAME = "TestSession";
|
||||||
final String RECORDING_COMPOSED_VIDEO = "COMPOSED_VIDEO_ONLY";
|
final String RECORDING_COMPOSED_VIDEO = "COMPOSED_VIDEO_ONLY";
|
||||||
|
|
Loading…
Reference in New Issue