2022-03-29 21:53:07 +08:00
|
|
|
const { expect, default: test } = require('@playwright/test');
|
2021-12-02 12:12:14 +08:00
|
|
|
const { MultiUsers } = require('../user/multiusers');
|
2021-11-26 02:23:58 +08:00
|
|
|
const e = require('../core/elements');
|
|
|
|
const util = require('./util.js');
|
|
|
|
const utilPresentation = require('../presentation/util');
|
|
|
|
const { ELEMENT_WAIT_LONGER_TIME } = require('../core/constants');
|
|
|
|
|
2021-12-02 12:12:14 +08:00
|
|
|
class Polling extends MultiUsers {
|
2021-11-26 02:23:58 +08:00
|
|
|
constructor(browser, context) {
|
2021-12-02 12:12:14 +08:00
|
|
|
super(browser, context);
|
2021-11-26 02:23:58 +08:00
|
|
|
this.newInputText = 'new option';
|
|
|
|
}
|
|
|
|
|
|
|
|
async createPoll() {
|
|
|
|
await this.modPage.waitForSelector(e.whiteboard, ELEMENT_WAIT_LONGER_TIME);
|
|
|
|
await util.startPoll(this.modPage);
|
|
|
|
await this.modPage.hasElement(e.pollMenuButton);
|
|
|
|
}
|
|
|
|
|
|
|
|
async pollAnonymous() {
|
|
|
|
await this.modPage.waitForSelector(e.whiteboard, ELEMENT_WAIT_LONGER_TIME);
|
|
|
|
await util.startPoll(this.modPage, false, true);
|
|
|
|
await this.modPage.waitForSelector(e.publishPollingLabel);
|
|
|
|
await this.userPage.waitAndClick(e.pollAnswerOptionBtn);
|
2021-12-01 22:02:26 +08:00
|
|
|
await this.userPage.wasRemoved(e.receivedAnswer);
|
2021-11-26 02:23:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
async quickPoll() {
|
|
|
|
await this.modPage.waitForSelector(e.whiteboard, ELEMENT_WAIT_LONGER_TIME);
|
|
|
|
await utilPresentation.uploadPresentation(this.modPage, e.questionSlideFileName);
|
|
|
|
|
|
|
|
await this.modPage.waitAndClick(e.quickPoll);
|
|
|
|
await this.modPage.waitForSelector(e.pollMenuButton);
|
|
|
|
|
|
|
|
await this.userPage.hasElement(e.pollingContainer);
|
|
|
|
}
|
|
|
|
|
|
|
|
async pollUserResponse() {
|
|
|
|
await this.modPage.waitForSelector(e.whiteboard);
|
|
|
|
await util.openPoll(this.modPage);
|
|
|
|
|
|
|
|
await this.modPage.type(e.pollQuestionArea, e.pollQuestion);
|
|
|
|
await this.modPage.waitAndClick(e.userResponseBtn);
|
|
|
|
await this.modPage.waitAndClick(e.startPoll);
|
|
|
|
|
|
|
|
await this.userPage.waitForSelector(e.pollingContainer);
|
|
|
|
await this.userPage.type(e.pollAnswerOptionInput, e.answerMessage);
|
|
|
|
await this.userPage.waitAndClick(e.pollSubmitAnswer);
|
|
|
|
|
|
|
|
await this.modPage.hasText(e.receivedAnswer, e.answerMessage);
|
|
|
|
|
|
|
|
await this.modPage.waitAndClick(e.publishPollingLabel);
|
|
|
|
await this.modPage.waitForSelector(e.restartPoll);
|
|
|
|
|
|
|
|
await this.modPage.hasElement(e.pollResults);
|
|
|
|
}
|
|
|
|
|
|
|
|
async stopPoll() {
|
|
|
|
await this.modPage.waitForSelector(e.whiteboard, ELEMENT_WAIT_LONGER_TIME);
|
|
|
|
await util.startPoll(this.modPage);
|
|
|
|
await this.userPage.waitForSelector(e.pollingContainer);
|
|
|
|
await this.modPage.waitAndClick(e.cancelPollBtn);
|
|
|
|
await this.userPage.wasRemoved(e.pollingContainer);
|
|
|
|
}
|
|
|
|
|
|
|
|
async pollResultsOnChat() {
|
2022-03-29 21:53:07 +08:00
|
|
|
const { pollChatMessage } = getSettings();
|
|
|
|
test.fail(!pollChatMessage, 'Poll results on chat is disabled');
|
|
|
|
|
2021-11-26 02:23:58 +08:00
|
|
|
await this.modPage.waitForSelector(e.whiteboard, ELEMENT_WAIT_LONGER_TIME);
|
|
|
|
await util.startPoll(this.modPage, true);
|
|
|
|
await this.modPage.waitAndClick(e.chatButton);
|
|
|
|
|
|
|
|
await this.modPage.hasElement(e.chatPollMessageText);
|
|
|
|
await this.userPage.hasElement(e.chatPollMessageText);
|
|
|
|
}
|
|
|
|
|
|
|
|
async pollResultsOnWhiteboard() {
|
|
|
|
await this.modPage.waitForSelector(e.whiteboard, ELEMENT_WAIT_LONGER_TIME);
|
|
|
|
await util.startPoll(this.modPage, true);
|
|
|
|
await this.modPage.hasElement(e.pollResults);
|
|
|
|
}
|
|
|
|
|
|
|
|
async pollResultsInDifferentPresentation() {
|
|
|
|
await this.modPage.waitForSelector(e.whiteboard, ELEMENT_WAIT_LONGER_TIME);
|
|
|
|
await util.startPoll(this.modPage);
|
|
|
|
|
|
|
|
await utilPresentation.uploadPresentation(this.modPage, e.questionSlideFileName);
|
|
|
|
await this.modPage.waitAndClick(e.publishPollingLabel);
|
|
|
|
|
|
|
|
// Check poll results
|
|
|
|
await this.modPage.hasElement(e.pollResults);
|
|
|
|
}
|
|
|
|
|
|
|
|
async manageResponseChoices() {
|
|
|
|
await this.modPage.waitForSelector(e.whiteboard, ELEMENT_WAIT_LONGER_TIME);
|
|
|
|
await this.startNewPoll();
|
|
|
|
const initialRespCount = await this.modPage.getSelectorCount(e.pollOptionItem);
|
|
|
|
|
|
|
|
// Add
|
|
|
|
await this.modPage.waitAndClick(e.addPollItem);
|
|
|
|
await this.typeOnLastChoiceInput();
|
|
|
|
await this.modPage.waitAndClick(e.startPoll);
|
|
|
|
|
|
|
|
await expect(initialRespCount + 1).toEqual(await this.getAnswerOptionCount());
|
|
|
|
await this.checkLastOptionText();
|
|
|
|
|
|
|
|
// Delete
|
|
|
|
await this.startNewPoll();
|
|
|
|
await this.modPage.waitAndClick(e.deletePollOption);
|
|
|
|
await this.modPage.waitAndClick(e.startPoll);
|
|
|
|
|
|
|
|
await expect(initialRespCount - 1).toEqual(await this.getAnswerOptionCount());
|
|
|
|
|
|
|
|
// Edit
|
|
|
|
await this.startNewPoll();
|
|
|
|
await this.typeOnLastChoiceInput();
|
|
|
|
await this.modPage.waitAndClick(e.startPoll);
|
|
|
|
|
|
|
|
await expect(initialRespCount).toEqual(await this.getAnswerOptionCount());
|
|
|
|
await this.checkLastOptionText();
|
|
|
|
}
|
|
|
|
|
|
|
|
async startNewPoll() {
|
2021-12-02 12:12:14 +08:00
|
|
|
const hasPollStarted = await this.modPage.checkElement(e.pollMenuButton);
|
2021-11-26 02:23:58 +08:00
|
|
|
if (hasPollStarted) {
|
|
|
|
await this.modPage.waitAndClick(e.cancelPollBtn);
|
|
|
|
await this.userPage.wasRemoved(e.pollingContainer);
|
|
|
|
}
|
|
|
|
await util.openPoll(this.modPage);
|
|
|
|
}
|
|
|
|
|
|
|
|
async getAnswerOptionCount() {
|
|
|
|
await this.userPage.waitForSelector(e.pollingContainer);
|
|
|
|
return this.userPage.getSelectorCount(e.pollAnswerOptionBtn);
|
|
|
|
}
|
|
|
|
|
|
|
|
async typeOnLastChoiceInput() {
|
2022-02-05 03:26:35 +08:00
|
|
|
const lastInput = this.modPage.getLocatorByIndex(e.pollOptionItem, -1);
|
2021-11-26 02:23:58 +08:00
|
|
|
await lastInput.fill(this.newInputText);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
async checkLastOptionText() {
|
|
|
|
await this.userPage.waitForSelector(e.pollingContainer);
|
2022-02-05 03:26:35 +08:00
|
|
|
const lastOptionText = this.userPage.getLocatorByIndex(e.pollAnswerOptionBtn, -1);
|
|
|
|
await expect(lastOptionText).toHaveText(this.newInputText);
|
2021-11-26 02:23:58 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-04 01:01:36 +08:00
|
|
|
exports.Polling = Polling;
|