bigbluebutton-Github/bigbluebutton-tests/playwright/polling/polling.spec.js

73 lines
2.2 KiB
JavaScript
Raw Normal View History

const { test } = require('../fixtures');
const { fullyParallel } = require('../playwright.config');
2021-11-26 02:23:58 +08:00
const { Polling } = require('./poll');
const { initializePages } = require('../core/helpers');
const { encodeCustomParams } = require('../parameters/util');
const { PARAMETER_HIDE_PRESENTATION_TOAST } = require('../core/constants');
const hidePresentationToast = encodeCustomParams(PARAMETER_HIDE_PRESENTATION_TOAST);
2021-11-26 02:23:58 +08:00
2024-05-15 05:07:58 +08:00
test.describe('Polling @ci', async () => {
2023-04-28 20:30:29 +08:00
const polling = new Polling();
test.describe.configure({ mode: fullyParallel ? 'parallel' : 'serial' });
test[fullyParallel ? 'beforeEach' : 'beforeAll'](async ({ browser }) => {
await initializePages(polling, browser, { isMultiUser: true, joinParameter: hidePresentationToast });
2023-04-28 20:30:29 +08:00
});
2022-01-20 03:50:59 +08:00
2023-04-28 20:30:29 +08:00
// Manage
2024-05-15 05:07:58 +08:00
test('Create poll', async () => {
2023-04-28 20:30:29 +08:00
await polling.createPoll();
});
2022-01-20 03:50:59 +08:00
2024-05-15 05:07:58 +08:00
test('Create anonymous poll', async () => {
2023-04-28 20:30:29 +08:00
await polling.pollAnonymous();
});
2022-01-20 03:50:59 +08:00
2024-05-15 05:07:58 +08:00
test('Create quick poll - from the slide', async () => {
2023-04-28 20:30:29 +08:00
await polling.quickPoll();
});
2022-01-20 03:50:59 +08:00
2024-05-15 05:07:58 +08:00
test('Create poll with user response', async () => {
2023-04-28 20:30:29 +08:00
await polling.pollUserResponse();
});
2024-05-15 05:07:58 +08:00
test('Stop a poll manually', async () => {
2023-04-28 20:30:29 +08:00
await polling.stopPoll();
});
test('Manage response choices', async () => {
await polling.manageResponseChoices();
});
test('Not able to start new poll without presentation', async () => {
await polling.notAbleStartNewPollWithoutPresentation();
});
2023-05-06 02:12:32 +08:00
2024-05-15 05:07:58 +08:00
test('Custom input', async () => {
2023-05-06 02:12:32 +08:00
await polling.customInput();
});
2024-05-15 05:07:58 +08:00
test('Allow multiple choices', async () => {
2023-05-06 02:12:32 +08:00
await polling.allowMultipleChoices();
});
test('Smart slides questions', async () => {
2023-05-06 02:12:32 +08:00
await polling.smartSlidesQuestions();
2022-01-20 03:50:59 +08:00
});
// Results
2024-05-15 05:07:58 +08:00
test('Poll results in chat message', async () => {
await polling.pollResultsOnChat();
});
2022-01-20 03:50:59 +08:00
2024-05-15 05:07:58 +08:00
test('Poll results on whiteboard', async () => {
await polling.pollResultsOnWhiteboard();
});
2022-01-20 03:50:59 +08:00
test('Poll results in a different presentation', async ({}, testInfo) => {
test.fixme(!testInfo.config.fullyParallel, 'Currently only works in parallel mode. Poll results not being displayed in the presentation');
await polling.pollResultsInDifferentPresentation();
2021-11-26 02:23:58 +08:00
});
2021-12-04 01:01:36 +08:00
});