2020-08-06 02:44:17 +08:00
|
|
|
const Page = require('./core/page');
|
|
|
|
const Status = require('./user/status');
|
|
|
|
const MultiUsers = require('./user/multiusers');
|
2020-10-09 03:25:35 +08:00
|
|
|
const { toMatchImageSnapshot } = require('jest-image-snapshot');
|
2021-04-01 22:48:18 +08:00
|
|
|
const { MAX_MULTIUSERS_TEST_TIMEOUT, TEST_DURATION_TIME } = require('./core/constants'); // core constants (Timeouts vars imported)
|
|
|
|
const { NETWORK_PRESETS, USER_AGENTS, MOBILE_DEVICES } = require('./core/profiles');
|
2020-10-09 03:25:35 +08:00
|
|
|
|
|
|
|
expect.extend({ toMatchImageSnapshot });
|
2020-08-06 02:44:17 +08:00
|
|
|
|
|
|
|
const userTest = () => {
|
|
|
|
beforeEach(() => {
|
2021-02-17 04:57:10 +08:00
|
|
|
jest.setTimeout(MAX_MULTIUSERS_TEST_TIMEOUT);
|
2020-08-06 02:44:17 +08:00
|
|
|
});
|
|
|
|
|
2021-04-05 05:53:31 +08:00
|
|
|
// Mobile User Should have 'Mobile' tag under his name in Userslist
|
|
|
|
test('Mobile Tag Name For Mobile User', async () => {
|
|
|
|
const test = new Status();
|
|
|
|
let response;
|
|
|
|
let screenshot;
|
|
|
|
try {
|
|
|
|
const testName = 'mobileTagName';
|
|
|
|
await test.logger('begin of ', testName);
|
|
|
|
await test.init(Page.iPhoneXArgs(), undefined, undefined, undefined, testName);
|
|
|
|
await test.startRecording(testName);
|
|
|
|
await test.closeAudioModal();
|
|
|
|
response = await test.mobileTagName();
|
|
|
|
await test.logger('end of ', testName);
|
|
|
|
await test.stopRecording();
|
|
|
|
screenshot = await test.page.screenshot();
|
|
|
|
} catch (e) {
|
|
|
|
await test.logger(e);
|
|
|
|
} finally {
|
|
|
|
await test.close();
|
|
|
|
}
|
|
|
|
expect(response).toBe(true);
|
|
|
|
if (process.env.REGRESSION_TESTING === 'true') {
|
|
|
|
expect(screenshot).toMatchImageSnapshot({
|
|
|
|
failureThreshold: 1.08,
|
|
|
|
failureThresholdType: 'percent',
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
2021-04-02 08:54:55 +08:00
|
|
|
|
2021-04-05 05:53:31 +08:00
|
|
|
// Change user status icon and check if it has changed
|
|
|
|
test('Change status', async () => {
|
|
|
|
const test = new Status();
|
|
|
|
let response;
|
|
|
|
let screenshot;
|
|
|
|
try {
|
|
|
|
const testName = 'changeUserStatus';
|
|
|
|
await test.logger('begin of ', testName);
|
|
|
|
await test.init(Page.getArgs(), undefined, undefined, undefined, testName);
|
|
|
|
await test.startRecording(testName);
|
|
|
|
await test.closeAudioModal();
|
|
|
|
response = await test.test();
|
|
|
|
await test.logger('end of ', testName);
|
|
|
|
await test.stopRecording();
|
|
|
|
screenshot = await test.page.screenshot();
|
|
|
|
} catch (e) {
|
|
|
|
await test.logger(e);
|
|
|
|
} finally {
|
|
|
|
await test.close();
|
|
|
|
}
|
|
|
|
expect(response).toBe(true);
|
|
|
|
if (process.env.REGRESSION_TESTING === 'true') {
|
|
|
|
expect(screenshot).toMatchImageSnapshot({
|
|
|
|
failureThreshold: 1.08,
|
|
|
|
failureThresholdType: 'percent',
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
2020-08-06 02:44:17 +08:00
|
|
|
|
2021-04-05 05:53:31 +08:00
|
|
|
// Connect with 2 users and check if User1 sees User2
|
|
|
|
test('Multi user presence check', async () => {
|
|
|
|
const test = new MultiUsers();
|
|
|
|
let response;
|
|
|
|
let screenshot;
|
|
|
|
try {
|
|
|
|
const testName = 'multiUsersPresenceCheck';
|
|
|
|
await test.page1.logger('begin of ', testName);
|
|
|
|
await test.init(undefined, testName);
|
|
|
|
await test.page1.startRecording(testName);
|
|
|
|
await test.page1.closeAudioModal();
|
|
|
|
await test.page2.startRecording(testName);
|
|
|
|
await test.page2.closeAudioModal();
|
|
|
|
response = await test.test();
|
|
|
|
await test.page1.stopRecording();
|
|
|
|
await test.page2.stopRecording();
|
|
|
|
screenshot = await test.page1.page.screenshot();
|
|
|
|
await test.page1.logger('end of ', testName);
|
|
|
|
} catch (err) {
|
|
|
|
await test.page1.logger(err);
|
|
|
|
} finally {
|
|
|
|
await test.close(test.page1, test.page2);
|
|
|
|
}
|
|
|
|
expect(response).toBe(true);
|
|
|
|
if (process.env.REGRESSION_TESTING === 'true') {
|
|
|
|
expect(screenshot).toMatchImageSnapshot({
|
|
|
|
failureThreshold: 19.93,
|
|
|
|
failureThresholdType: 'percent',
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
2021-03-31 21:10:57 +08:00
|
|
|
|
2021-04-05 05:53:31 +08:00
|
|
|
// Open Connection Status Modal and check if appears
|
|
|
|
test('Connections Status Modal', async () => {
|
|
|
|
const test = new Status();
|
|
|
|
let response;
|
|
|
|
let screenshot;
|
|
|
|
try {
|
|
|
|
const testName = 'connectionStatusModal';
|
|
|
|
await test.logger('begin of ', testName);
|
|
|
|
await test.init(Page.getArgs(), undefined, undefined, undefined, testName);
|
|
|
|
await test.startRecording(testName);
|
|
|
|
await test.closeAudioModal();
|
|
|
|
response = await test.findConnectionStatusModal();
|
|
|
|
await test.stopRecording();
|
|
|
|
screenshot = await test.page.screenshot();
|
|
|
|
await test.logger('end of ', testName);
|
|
|
|
} catch (err) {
|
|
|
|
await test.logger(err);
|
|
|
|
} finally {
|
|
|
|
await test.close();
|
|
|
|
}
|
|
|
|
expect(response).toBe(true);
|
|
|
|
if (process.env.REGRESSION_TESTING === 'true') {
|
|
|
|
expect(screenshot).toMatchImageSnapshot({
|
|
|
|
failureThreshold: 19.93,
|
|
|
|
failureThresholdType: 'percent',
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
2021-03-31 21:10:57 +08:00
|
|
|
|
2021-04-05 05:53:31 +08:00
|
|
|
// Open Connection Status Modal, start Webcam Share, disable Webcams in
|
|
|
|
// Connection Status Modal and check if webcam sharing is still available
|
|
|
|
test('Disable Webcams From Connection Status Modal', async () => {
|
|
|
|
const test = new Status();
|
|
|
|
let response;
|
|
|
|
let screenshot;
|
|
|
|
try {
|
|
|
|
const testName = 'disableWebcamsFromConnectionStatus';
|
|
|
|
await test.logger('begin of ', testName);
|
|
|
|
await test.init(Page.getArgsWithVideo(), undefined, undefined, undefined, testName);
|
|
|
|
await test.startRecording(testName);
|
|
|
|
response = await test.disableWebcamsFromConnectionStatus();
|
|
|
|
await test.stopRecording();
|
|
|
|
screenshot = await test.page.screenshot();
|
|
|
|
await test.logger('end of ', testName);
|
|
|
|
} catch (err) {
|
|
|
|
await test.logger(err);
|
|
|
|
} finally {
|
|
|
|
await test.close();
|
|
|
|
}
|
|
|
|
expect(response).toBe(true);
|
|
|
|
if (process.env.REGRESSION_TESTING === 'true') {
|
|
|
|
expect(screenshot).toMatchImageSnapshot({
|
|
|
|
failureThreshold: 19.93,
|
|
|
|
failureThresholdType: 'percent',
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
2021-03-31 21:10:57 +08:00
|
|
|
|
2021-04-05 05:53:31 +08:00
|
|
|
// Open Connection Status Modal, start Screenshare, disable Screenshare in
|
|
|
|
// Connection Status Modal and check if Screensharing is still available
|
|
|
|
test('Disable Screenshare From Connection Status Modal', async () => {
|
|
|
|
const test = new Status();
|
|
|
|
let response;
|
|
|
|
let screenshot;
|
|
|
|
try {
|
|
|
|
const testName = 'disableScreenshareFromConnectionStatus';
|
|
|
|
await test.logger('begin of ', testName);
|
|
|
|
await test.init(Page.getArgs(), undefined, undefined, undefined, testName);
|
|
|
|
await test.startRecording(testName);
|
|
|
|
response = await test.disableScreenshareFromConnectionStatus();
|
|
|
|
await test.stopRecording();
|
|
|
|
screenshot = await test.page.screenshot();
|
|
|
|
await test.logger('end of ', testName);
|
|
|
|
} catch (err) {
|
|
|
|
await test.logger(err);
|
|
|
|
} finally {
|
|
|
|
await test.close();
|
|
|
|
}
|
|
|
|
expect(response).toBe(true);
|
|
|
|
if (process.env.REGRESSION_TESTING === 'true') {
|
|
|
|
expect(screenshot).toMatchImageSnapshot({
|
|
|
|
failureThreshold: 19.93,
|
|
|
|
failureThresholdType: 'percent',
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
2021-04-01 22:48:18 +08:00
|
|
|
|
|
|
|
// Connect with a Good3G NETWORK_PRESET profil, Open Connection Status Modal
|
|
|
|
// and check if User1 appears in reported connection issues
|
|
|
|
test('Report a User in Connection Issues', async () => {
|
|
|
|
const test = new Status();
|
|
|
|
let response;
|
|
|
|
let screenshot;
|
|
|
|
try {
|
|
|
|
const testName = 'reportUserInConnectionIssues';
|
|
|
|
await test.logger('begin of ', testName);
|
2021-04-02 10:14:37 +08:00
|
|
|
await test.init(Page.getArgsWithAudioAndVideo(), undefined, undefined, undefined, testName, NETWORK_PRESETS.Regular4G);
|
2021-04-01 22:48:18 +08:00
|
|
|
await test.startRecording(testName);
|
|
|
|
response = await test.reportUserInConnectionIssues();
|
|
|
|
await test.stopRecording();
|
|
|
|
screenshot = await test.page.screenshot();
|
|
|
|
await test.logger('end of ', testName);
|
|
|
|
} catch (err) {
|
|
|
|
await test.logger(err);
|
|
|
|
} finally {
|
|
|
|
await test.close();
|
|
|
|
}
|
|
|
|
expect(response).toBe(true);
|
|
|
|
if (process.env.REGRESSION_TESTING === 'true') {
|
|
|
|
expect(screenshot).toMatchImageSnapshot({
|
|
|
|
failureThreshold: 19.93,
|
|
|
|
failureThresholdType: 'percent',
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}, TEST_DURATION_TIME);
|
2021-04-07 08:09:43 +08:00
|
|
|
|
2021-04-07 08:39:18 +08:00
|
|
|
// Force bad connection profile, force disconnection
|
|
|
|
// and appear with offline status in Connection Status Modal
|
|
|
|
test('User Offline due to connection problem appears in Connection Status Modal', async () => {
|
|
|
|
const test = new MultiUsers();
|
|
|
|
let response;
|
|
|
|
let screenshot;
|
|
|
|
try {
|
|
|
|
const testName = 'userOfflineWithInternetProblem';
|
|
|
|
await test.page1.logger('begin of ', testName);
|
|
|
|
await test.init(undefined, testName);
|
|
|
|
await test.page1.startRecording(testName);
|
|
|
|
response = await test.userOfflineWithInternetProblem();
|
|
|
|
await test.page1.stopRecording();
|
|
|
|
screenshot = await test.page1.page.screenshot();
|
|
|
|
await test.page1.logger('end of ', testName);
|
|
|
|
} catch (err) {
|
|
|
|
await test.page1.logger(err);
|
|
|
|
} finally {
|
|
|
|
await test.closePage(test.page1);
|
|
|
|
}
|
|
|
|
expect(response).toBe(true);
|
|
|
|
if (process.env.REGRESSION_TESTING === 'true') {
|
|
|
|
expect(screenshot).toMatchImageSnapshot({
|
|
|
|
failureThreshold: 19.93,
|
|
|
|
failureThresholdType: 'percent',
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}, TEST_DURATION_TIME);
|
|
|
|
|
2021-04-07 08:09:43 +08:00
|
|
|
// Raise and Lower Hand and make sure that the User2 Avatar color
|
|
|
|
// and its avatar in raised hand toast are the same
|
|
|
|
test('Raise Hand Toast', async () => {
|
|
|
|
const test = new MultiUsers();
|
|
|
|
let response;
|
|
|
|
let screenshot;
|
|
|
|
try {
|
|
|
|
const testName = 'raiseAndLowerHandToast';
|
|
|
|
await test.page1.logger('begin of ', testName);
|
|
|
|
await test.init(undefined, testName);
|
|
|
|
await test.page1.startRecording(testName);
|
|
|
|
await test.page2.startRecording(testName);
|
|
|
|
const response1 = await test.raiseHandTest();
|
|
|
|
const responseColors = await test.getAvatarColorAndCompareWithUserListItem();
|
|
|
|
const response2 = await test.lowerHandTest();
|
|
|
|
response = response1 && responseColors && response2;
|
|
|
|
await test.page1.stopRecording();
|
|
|
|
await test.page2.stopRecording();
|
|
|
|
screenshot = await test.page1.page.screenshot();
|
|
|
|
await test.page1.logger('end of ', testName);
|
|
|
|
} catch (err) {
|
|
|
|
await test.page1.logger(err);
|
|
|
|
} finally {
|
|
|
|
await test.close(test.page1, test.page2);
|
|
|
|
}
|
|
|
|
expect(response).toBe(true);
|
|
|
|
if (process.env.REGRESSION_TESTING === 'true') {
|
|
|
|
expect(screenshot).toMatchImageSnapshot({
|
|
|
|
failureThreshold: 19.93,
|
|
|
|
failureThresholdType: 'percent',
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
2020-08-06 02:44:17 +08:00
|
|
|
};
|
|
|
|
module.exports = exports = userTest;
|