bigbluebutton-Github/bigbluebutton-tests/playwright/presentation/presentation.js

206 lines
8.6 KiB
JavaScript
Raw Normal View History

2022-03-29 21:53:07 +08:00
const { expect, default: test } = require('@playwright/test');
const { MultiUsers } = require('../user/multiusers');
2021-11-27 03:04:28 +08:00
const Page = require('../core/page');
const e = require('../core/elements');
const { checkSvgIndex, getSlideOuterHtml, uploadSinglePresentation, uploadMultiplePresentations } = require('./util.js');
2022-11-08 22:32:55 +08:00
const { ELEMENT_WAIT_LONGER_TIME, ELEMENT_WAIT_EXTRA_LONG_TIME } = require('../core/constants');
2021-12-04 01:01:36 +08:00
const { sleep } = require('../core/helpers');
2022-03-29 21:53:07 +08:00
const { getSettings } = require('../core/settings');
2022-09-16 19:27:29 +08:00
const { waitAndClearDefaultPresentationNotification } = require('../notifications/util');
2021-11-27 03:04:28 +08:00
class Presentation extends MultiUsers {
2021-11-27 03:04:28 +08:00
constructor(browser, context) {
super(browser, context);
2021-11-27 03:04:28 +08:00
}
async skipSlide() {
await this.modPage.waitForSelector(e.whiteboard, ELEMENT_WAIT_LONGER_TIME);
await checkSvgIndex(this.modPage, '/svg/1');
2021-11-27 03:04:28 +08:00
await this.modPage.waitAndClick(e.nextSlide);
await this.modPage.waitForSelector(e.whiteboard);
await sleep(1000);
2021-11-27 03:04:28 +08:00
await checkSvgIndex(this.modPage, '/svg/2');
2021-11-27 03:04:28 +08:00
await this.modPage.waitAndClick(e.prevSlide);
await this.modPage.waitForSelector(e.whiteboard);
await sleep(1000);
2021-11-27 03:04:28 +08:00
await checkSvgIndex(this.modPage, '/svg/1');
2021-11-27 03:04:28 +08:00
}
2022-01-20 03:50:59 +08:00
async hideAndRestorePresentation() {
2022-03-29 21:53:07 +08:00
const { presentationHidden } = getSettings();
if (!presentationHidden) {
await this.modPage.waitForSelector(e.whiteboard);
await this.modPage.waitAndClick(e.minimizePresentation);
}
2022-01-20 03:50:59 +08:00
await this.modPage.wasRemoved(e.presentationContainer);
await this.modPage.waitAndClick(e.restorePresentation);
await this.modPage.hasElement(e.presentationContainer);
}
async startExternalVideo() {
2022-03-29 21:53:07 +08:00
const { externalVideoPlayer } = getSettings();
test.fail(!externalVideoPlayer, 'External video is disabled');
2022-01-20 03:50:59 +08:00
await this.modPage.waitForSelector(e.whiteboard);
await this.modPage.waitAndClick(e.actions);
2022-01-20 21:03:18 +08:00
await this.modPage.waitAndClick(e.shareExternalVideoBtn);
2022-01-20 03:50:59 +08:00
await this.modPage.waitForSelector(e.externalVideoModalHeader);
await this.modPage.type(e.videoModalInput, e.youtubeLink);
await this.modPage.waitAndClick(e.startShareVideoBtn);
const modFrame = await this.getFrame(this.modPage, e.youtubeFrame);
const userFrame = await this.getFrame(this.userPage, e.youtubeFrame);
await modFrame.hasElement('video');
await userFrame.hasElement('video');
}
async uploadSinglePresentationTest() {
2021-11-27 03:04:28 +08:00
await this.modPage.waitForSelector(e.skipSlide);
const modSlides0 = await getSlideOuterHtml(this.modPage);
const userSlides0 = await getSlideOuterHtml(this.userPage);
2021-11-27 03:04:28 +08:00
await expect(modSlides0).toEqual(userSlides0);
await uploadSinglePresentation(this.modPage, e.uploadPresentationFileName);
2021-11-27 03:04:28 +08:00
const modSlides1 = await getSlideOuterHtml(this.modPage);
const userSlides1 = await getSlideOuterHtml(this.userPage);
2021-11-27 03:04:28 +08:00
await expect(modSlides1).toEqual(userSlides1);
await expect(modSlides0).not.toEqual(modSlides1);
await expect(userSlides0).not.toEqual(userSlides1);
}
async uploadMultiplePresentationsTest() {
await this.modPage.waitForSelector(e.skipSlide);
const modSlides0 = await this.modPage.page.evaluate(getSvgOuterHtml);
const userSlides0 = await this.userPage.page.evaluate(getSvgOuterHtml);
await expect(modSlides0).toEqual(userSlides0);
await uploadMultiplePresentations(this.modPage, [e.uploadPresentationFileName, e.questionSlideFileName]);
const modSlides1 = await this.userPage.page.evaluate(async () => document.querySelector('svg g g g').outerHTML);
const userSlides1 = await this.modPage.page.evaluate(async () => document.querySelector('svg g g g').outerHTML);
await expect(modSlides1).toEqual(userSlides1);
await expect(modSlides0).not.toEqual(modSlides1);
await expect(userSlides0).not.toEqual(userSlides1);
}
async fitToWidthTest() {
await this.modPage.waitForSelector(e.whiteboard, ELEMENT_WAIT_LONGER_TIME);
await this.modPage.waitForSelector(e.skipSlide);
await this.modPage.waitAndClick(e.userListToggleBtn);
await uploadSinglePresentation(this.modPage, e.uploadPresentationFileName);
const width1 = await this.modPage.page.locator(e.whiteboard).getAttribute("width");
await this.modPage.waitAndClick(e.fitToWidthButton);
const width2 = await this.modPage.page.locator(e.whiteboard).getAttribute("width");
await expect(Number(width2) > Number(width1)).toBeTruthy();
}
2022-11-08 22:32:55 +08:00
async downloadPresentation(testInfo) {
2022-03-29 21:53:07 +08:00
const { presentationDownloadable } = getSettings();
test.fail(!presentationDownloadable, 'Presentation download is disable');
2021-11-27 03:04:28 +08:00
await this.modPage.waitForSelector(e.whiteboard, ELEMENT_WAIT_LONGER_TIME);
await this.modPage.waitAndClick(e.actions);
2022-01-20 21:03:18 +08:00
await this.modPage.waitAndClick(e.managePresentations);
2022-11-08 22:32:55 +08:00
await this.modPage.waitAndClick(e.exportPresentationToPublicChat);
await this.modPage.hasElement(e.downloadPresentationToast);
await this.userPage.waitForSelector(e.whiteboard, ELEMENT_WAIT_LONGER_TIME);
await this.userPage.hasElement(e.downloadPresentation, ELEMENT_WAIT_EXTRA_LONG_TIME);
await this.userPage.handleDownload(e.downloadPresentation, testInfo);
2021-11-27 03:04:28 +08:00
}
async removeAllPresentation() {
await this.modPage.waitForSelector(e.whiteboard, ELEMENT_WAIT_LONGER_TIME);
await this.modPage.waitAndClick(e.actions);
2022-01-20 21:03:18 +08:00
await this.modPage.waitAndClick(e.managePresentations);
2021-11-27 03:04:28 +08:00
await this.modPage.waitAndClick(e.removePresentation);
await this.modPage.waitAndClick(e.confirmManagePresentation);
await this.modPage.wasRemoved(e.whiteboard);
await this.modPage.hasElementDisabled(e.minimizePresentation);
await this.userPage.wasRemoved(e.whiteboard);
await this.userPage.hasElementDisabled(e.minimizePresentation);
2021-11-27 03:04:28 +08:00
}
async uploadAndRemoveAllPresentations() {
2022-09-16 19:27:29 +08:00
await waitAndClearDefaultPresentationNotification(this.modPage);
await uploadSinglePresentation(this.modPage, e.uploadPresentationFileName);
const modSlides1 = await getSlideOuterHtml(this.modPage);
const userSlides1 = await getSlideOuterHtml(this.userPage);
await expect(modSlides1).toEqual(userSlides1);
// Remove
await this.modPage.waitForSelector(e.whiteboard, ELEMENT_WAIT_LONGER_TIME);
await this.modPage.waitAndClick(e.actions);
await this.modPage.waitAndClick(e.managePresentations);
await this.modPage.waitAndClick(e.removePresentation);
await this.modPage.waitAndClick(e.removePresentation);
await this.modPage.waitAndClick(e.confirmManagePresentation);
await this.modPage.wasRemoved(e.whiteboard);
await this.modPage.hasElementDisabled(e.minimizePresentation);
await this.userPage.wasRemoved(e.whiteboard);
await this.userPage.hasElementDisabled(e.minimizePresentation);
// Check removed presentations inside the Manage Presentations
await this.modPage.waitAndClick(e.actions);
await this.modPage.waitAndClick(e.managePresentations);
await this.modPage.wasRemoved(e.presentationsList);
await this.modPage.waitAndClick(e.confirmManagePresentation);
// Making viewer a presenter
await this.modPage.waitAndClick(e.userListItem);
await this.modPage.waitAndClick(e.makePresenter);
await this.userPage.waitAndClick(e.actions);
await this.userPage.waitAndClick(e.managePresentations);
await this.userPage.wasRemoved(e.presentationsList);
}
async removePreviousPresentationFromPreviousPresenter() {
2022-09-16 19:27:29 +08:00
await waitAndClearDefaultPresentationNotification(this.modPage);
await uploadSinglePresentation(this.modPage, e.uploadPresentationFileName);
const modSlides1 = await getSlideOuterHtml(this.modPage);
const userSlides1 = await getSlideOuterHtml(this.userPage);
await expect(modSlides1).toEqual(userSlides1);
await this.modPage.waitAndClick(e.userListItem);
await this.modPage.waitAndClick(e.makePresenter);
await this.userPage.waitAndClick(e.actions);
await this.userPage.waitAndClick(e.managePresentations);
await this.userPage.waitAndClick(e.removePresentation);
await this.userPage.waitAndClick(e.removePresentation);
await this.userPage.waitAndClick(e.confirmManagePresentation);
2022-09-17 04:53:17 +08:00
await this.userPage.wasRemoved(e.whiteboard);
await this.userPage.waitAndClick(e.actions);
await this.userPage.waitAndClick(e.managePresentations);
await this.userPage.wasRemoved(e.presentationsList);
}
2021-11-27 03:04:28 +08:00
async getFrame(page, frameSelector) {
await page.waitForSelector(frameSelector);
2021-12-04 01:01:36 +08:00
await sleep(1000);
const handleFrame = await page.page.frame({ url: /youtube/ });
const frame = new Page(page.browser, handleFrame);
2021-11-27 03:04:28 +08:00
await frame.waitForSelector(e.ytFrameTitle);
return frame;
}
}
2021-12-04 01:01:36 +08:00
exports.Presentation = Presentation;