bigbluebutton-Github/bigbluebutton-html5/tests/puppeteer/notifications.obj.js
2021-02-26 12:52:17 -03:00

225 lines
7.4 KiB
JavaScript

const Notifications = require('./notifications/notifications');
const ShareScreen = require('./screenshare/screenshare');
const Audio = require('./audio/audio');
const Page = require('./core/page');
const { toMatchImageSnapshot } = require('jest-image-snapshot');
const { MAX_NOTIFICATIONS_TEST_TIMEOUT } = require('./core/constants'); // core constants (Timeouts vars imported)
expect.extend({ toMatchImageSnapshot });
const notificationsTest = () => {
beforeEach(() => {
jest.setTimeout(MAX_NOTIFICATIONS_TEST_TIMEOUT);
});
test('Save settings notification', async () => {
const test = new Notifications();
let response;
let screenshot;
try {
const testName = 'saveSettingsNotification';
await test.page1.logger('begin of ', testName);
response = await test.saveSettingsNotification(testName);
await test.page1.logger('end of ', testName);
await test.page1.stopRecording();
screenshot = await test.page1.page.screenshot();
} catch (e) {
await test.page1.logger(e);
} finally {
await test.close(test.page1, test.page2);
await test.page1.logger('Save Setting notification !');
}
expect(response).toBe(true);
if (process.env.REGRESSION_TESTING === 'true') {
expect(screenshot).toMatchImageSnapshot({
failureThreshold: 1.56,
failureThresholdType: 'percent',
});
}
});
test('Public Chat notification', async () => {
const test = new Notifications();
let response;
let screenshot;
try {
const testName = 'publicChatNotification';
await test.page1.logger('begin of ', testName);
response = await test.publicChatNotification(testName);
await test.page1.logger('end of ', testName);
await test.page1.stopRecording();
screenshot = await test.page1.page.screenshot();
} catch (e) {
await test.page1.logger(e);
} finally {
await test.close(test.page1, test.page2);
await test.page1.logger('Public Chat notification !');
}
expect(response).toBe(true);
if (process.env.REGRESSION_TESTING === 'true') {
expect(screenshot).toMatchImageSnapshot({
failureThreshold: 1,
failureThresholdType: 'percent',
});
}
});
test('Private Chat notification', async () => {
const test = new Notifications();
let response;
let screenshot;
try {
const testName = 'privateChatNotification';
await test.page1.logger('begin of ', testName);
response = await test.privateChatNotification(testName);
await test.page1.logger('end of ', testName);
await test.page1.stopRecording();
screenshot = await test.page1.page.screenshot();
} catch (e) {
await test.page1.logger(e);
} finally {
await test.close(test.page1, test.page2);
await test.page1.logger('Private Chat notification !');
}
expect(response).toBe(true);
if (process.env.REGRESSION_TESTING === 'true') {
expect(screenshot).toMatchImageSnapshot({
failureThreshold: 0.6,
failureThresholdType: 'percent',
});
}
});
test('User join notification', async () => {
const test = new Notifications();
let response;
let screenshot;
try {
const testName = 'userJoinNotification';
await test.page3.logger('begin of ', testName);
response = await test.getUserJoinPopupResponse(testName);
await test.page3.logger('end of ', testName);
await test.page3.stopRecording();
screenshot = await test.page3.page.screenshot();
} catch (e) {
await test.page3.logger(e);
} finally {
await test.closePages();
await test.page3.logger('User join notification !');
}
expect(response).toBe(true);
if (process.env.REGRESSION_TESTING === 'true') {
expect(screenshot).toMatchImageSnapshot({
failureThreshold: 0.6,
failureThresholdType: 'percent',
});
}
});
test('Presentation upload notification', async () => {
const test = new Notifications();
let response;
let screenshot;
try {
const testName = 'uploadPresentationNotification';
await test.page3.logger('begin of ', testName);
response = await test.fileUploaderNotification(testName);
await test.page3.logger('end of ', testName);
await test.page3.stopRecording();
screenshot = await test.page3.page.screenshot();
} catch (e) {
await test.page3.logger(e);
} finally {
await test.closePage(test.page3);
await test.page3.logger('Presentation upload notification !');
}
expect(response).toBe(true);
if (process.env.REGRESSION_TESTING === 'true') {
expect(screenshot).toMatchImageSnapshot({
failureThreshold: 2.64,
failureThresholdType: 'percent',
});
}
});
test('Poll results notification', async () => {
const test = new Notifications();
let response;
let screenshot;
try {
const testName = 'pollResultsNotification';
await test.page3.logger('begin of ', testName);
await test.initUser3(Page.getArgs(), undefined, testName);
response = await test.publishPollResults(testName);
await test.page3.logger('end of ', testName);
await test.page3.stopRecording();
screenshot = await test.page3.page.screenshot();
} catch (e) {
await test.page3.logger(e);
} finally {
await test.closePage(test.page3);
await test.page3.logger('Poll results notification !');
}
expect(response).toContain('Poll results were published');
if (process.env.REGRESSION_TESTING === 'true') {
expect(screenshot).toMatchImageSnapshot({
failureThreshold: 7.26,
failureThresholdType: 'percent',
});
}
});
test('Screenshare notification', async () => {
const test = new Notifications();
let response;
let screenshot;
try {
const testName = 'screenShareNotification';
await test.page3.logger('begin of ', testName);
response = await test.screenshareToast(testName);
await test.page3.logger('end of ', testName);
await test.page3.stopRecording();
screenshot = await test.page3.page.screenshot();
} catch (e) {
await test.page3.logger(e);
} finally {
await test.closePage(test.page3);
await test.page3.logger('Screenshare notification !');
}
expect(response).toBe('Screenshare has started');
if (process.env.REGRESSION_TESTING === 'true') {
expect(screenshot).toMatchImageSnapshot({
failureThreshold: 7.25,
failureThresholdType: 'percent',
});
}
});
test('Audio notifications', async () => {
const test = new Notifications();
let response;
let screenshot;
try {
const testName = 'audioNotification';
await test.page3.logger('begin of ', testName);
response = await test.audioNotification(testName);
await test.page3.logger('end of ', testName);
await test.page3.stopRecording();
screenshot = await test.page3.page.screenshot();
} catch (e) {
await test.page3.logger(e);
} finally {
await test.closePage(test.page3);
await test.page3.logger('Audio notification !');
}
expect(response).toBe(true);
if (process.env.REGRESSION_TESTING === 'true') {
expect(screenshot).toMatchImageSnapshot({
failureThreshold: 1.05,
failureThresholdType: 'percent',
});
}
});
};
module.exports = exports = notificationsTest;