-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy pathRoomsCallScreen.test.ts
439 lines (397 loc) · 21.6 KB
/
RoomsCallScreen.test.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
import { buildUrlWithMockAdapter, defaultMockCallAdapterState, defaultMockRemoteParticipant, test } from './fixture';
import { expect, Page } from '@playwright/test';
import {
dataUiId,
existsOnPage,
hidePiPiP,
isTestProfileMobile,
pageClick,
stableScreenshot,
waitForSelector
} from '../../common/utils';
import { IDS } from '../../common/constants';
test.describe('Rooms DeviceButton tests for different roles', async () => {
test('All devices are shown for Presenter', async ({ page, serverUrl }) => {
const initialState = defaultMockCallAdapterState([], 'Presenter', true);
await page.goto(buildUrlWithMockAdapter(serverUrl, { ...initialState }));
await waitForSelector(page, dataUiId(IDS.videoGallery));
if (await existsOnPage(page, dataUiId(IDS.deviceButton))) {
await pageClick(page, dataUiId(IDS.deviceButton));
} else {
await waitForSelector(page, dataUiId(IDS.moreButton));
await pageClick(page, dataUiId(IDS.moreButton));
await waitForSelector(page, dataUiId('call-composite-more-menu-devices-button'));
await pageClick(page, dataUiId('call-composite-more-menu-devices-button'));
}
expect(await stableScreenshot(page)).toMatchSnapshot('rooms-call-screen-devices-presenter.png');
});
test('All devices are shown for Attendee', async ({ page, serverUrl }) => {
const initialState = defaultMockCallAdapterState([], 'Attendee', true);
await page.goto(buildUrlWithMockAdapter(serverUrl, { ...initialState }));
await waitForSelector(page, dataUiId(IDS.videoGallery));
if (await existsOnPage(page, dataUiId(IDS.deviceButton))) {
await pageClick(page, dataUiId(IDS.deviceButton));
} else {
await waitForSelector(page, dataUiId(IDS.moreButton));
await pageClick(page, dataUiId(IDS.moreButton));
await waitForSelector(page, dataUiId('call-composite-more-menu-devices-button'));
await pageClick(page, dataUiId('call-composite-more-menu-devices-button'));
}
expect(await stableScreenshot(page)).toMatchSnapshot('rooms-call-screen-devices-Attendee.png');
});
});
test.describe('Rooms CallScreen tests for different roles', async () => {
test('All CallControls are enabled for Presenter', async ({ page, serverUrl }, testInfo) => {
const initialState = defaultMockCallAdapterState([], 'Presenter', true);
await page.goto(buildUrlWithMockAdapter(serverUrl, { ...initialState }));
await waitForSelector(page, dataUiId(IDS.videoGallery));
expect(await stableScreenshot(page)).toMatchSnapshot('rooms-call-screen-presenter.png');
if (isTestProfileMobile(testInfo)) {
await pageClick(page, dataUiId(IDS.moreButton));
expect(await stableScreenshot(page)).toMatchSnapshot('rooms-call-screen-presenter-click-more-button.png');
}
});
test('Screen Share is disabled for Attendee', async ({ page, serverUrl }, testInfo) => {
const initialState = defaultMockCallAdapterState([], 'Attendee', true);
await page.goto(buildUrlWithMockAdapter(serverUrl, { ...initialState }));
await waitForSelector(page, dataUiId(IDS.videoGallery));
await page.waitForTimeout(2000);
expect(await stableScreenshot(page)).toMatchSnapshot('rooms-call-screen-attendee.png');
if (isTestProfileMobile(testInfo)) {
await pageClick(page, dataUiId(IDS.moreButton));
expect(await stableScreenshot(page)).toMatchSnapshot('rooms-call-screen-attendee-click-more-button.png');
}
});
test('Only few CallControls are enabled for Consumer with remote participants', async ({
page,
serverUrl
}, testInfo) => {
const paul = defaultMockRemoteParticipant('Paul Bridges');
const vasily = defaultMockRemoteParticipant('Vasily Podkolzin');
const participants = [paul, vasily];
const initialState = defaultMockCallAdapterState(participants, 'Consumer', true);
await page.goto(buildUrlWithMockAdapter(serverUrl, { ...initialState }));
await waitForSelector(page, dataUiId(IDS.videoGallery));
expect(await stableScreenshot(page)).toMatchSnapshot('rooms-call-screen-consumer-remote-participants.png');
if (isTestProfileMobile(testInfo)) {
await pageClick(page, dataUiId(IDS.moreButton));
expect(await stableScreenshot(page)).toMatchSnapshot('rooms-call-screen-consumer-click-more-button.png');
}
});
});
test.describe('Rooms Participant ParticipantItem tests for different roles', async () => {
test('Remove button is enabled for Presenter', async ({ page, serverUrl }) => {
const paul = defaultMockRemoteParticipant('Paul Bridges');
const participants = [paul];
const initialState = defaultMockCallAdapterState(participants, 'Presenter', true);
await page.goto(buildUrlWithMockAdapter(serverUrl, { ...initialState }));
await openRemoveParticipantMenu(page);
expect(await stableScreenshot(page, { dismissTooltips: true })).toMatchSnapshot(
'rooms-call-remove-participant-presenter.png'
);
});
test('No ellipses button for remote participant items for Attendee', async ({ page, serverUrl }) => {
const paul = defaultMockRemoteParticipant('Paul Bridges');
const participants = [paul];
const initialState = defaultMockCallAdapterState(participants, 'Attendee', true);
await page.goto(buildUrlWithMockAdapter(serverUrl, { ...initialState }));
await expectNoRemoveParticipantMenuItem(page);
});
test('No Mute button for remote participant items for Attendee', async ({ page, serverUrl }) => {
const paul = defaultMockRemoteParticipant('Paul Bridges');
const participants = [paul];
const initialState = defaultMockCallAdapterState(participants, 'Attendee', true);
await page.goto(buildUrlWithMockAdapter(serverUrl, { ...initialState }));
await expectNoMuteParticipantMenuItem(page);
});
test('No Mute All button for Attendee', async ({ page, serverUrl }) => {
const paul = defaultMockRemoteParticipant('Paul Bridges');
const participants = [paul];
const initialState = defaultMockCallAdapterState(participants, 'Attendee', true);
await page.goto(buildUrlWithMockAdapter(serverUrl, { ...initialState }));
await expectNoMuteAllMenuItem(page);
});
test('No Mute button for remote participant items for Consumer', async ({ page, serverUrl }) => {
const paul = defaultMockRemoteParticipant('Paul Bridges');
const participants = [paul];
const initialState = defaultMockCallAdapterState(participants, 'Consumer', true);
await page.goto(buildUrlWithMockAdapter(serverUrl, { ...initialState }));
await expectNoMuteAllMenuItem(page);
});
test('No Mute All for Consumer', async ({ page, serverUrl }) => {
const paul = defaultMockRemoteParticipant('Paul Bridges');
const participants = [paul];
const initialState = defaultMockCallAdapterState(participants, 'Consumer', true);
await page.goto(buildUrlWithMockAdapter(serverUrl, { ...initialState }));
await expectNoMuteParticipantMenuItem(page);
});
test('Mute button present for remote participant items for Presenter', async ({ page, serverUrl }) => {
const paul = defaultMockRemoteParticipant('Paul Bridges');
const participants = [paul];
const initialState = defaultMockCallAdapterState(participants, 'Presenter', true);
await page.goto(buildUrlWithMockAdapter(serverUrl, { ...initialState }));
await expectMuteParticipantMenuItem(page);
});
test('Mute All button present for remote participant items for Presenter', async ({ page, serverUrl }) => {
const paul = defaultMockRemoteParticipant('Paul Bridges');
const participants = [paul];
const initialState = defaultMockCallAdapterState(participants, 'Presenter', true);
await page.goto(buildUrlWithMockAdapter(serverUrl, { ...initialState }));
await expectMuteAllMenuItem(page);
});
test('Mute button participant item disabled for muted remote participants for Presenter', async ({
page,
serverUrl
}) => {
const displayNames = ['Tony Hawk', 'Marie Curie', 'Gal Gadot'];
const participants = displayNames.map((name) => defaultMockRemoteParticipant(name));
for (const participant of participants) {
participant.isMuted = true;
}
const initialState = defaultMockCallAdapterState(participants, 'Presenter', true);
await page.goto(buildUrlWithMockAdapter(serverUrl, { ...initialState }));
await openMuteParticipantMenuItem(page);
expect(await stableScreenshot(page, { dismissTooltips: true })).toMatchSnapshot(
'rooms-call-disabled-mute-remote-participant-item-presenter.png'
);
});
test('Mute All button disabled for muted remote participants for Presenter', async ({ page, serverUrl }) => {
const displayNames = ['Tony Hawk', 'Marie Curie', 'Gal Gadot'];
const participants = displayNames.map((name) => defaultMockRemoteParticipant(name));
for (const participant of participants) {
participant.isMuted = true;
}
const initialState = defaultMockCallAdapterState(participants, 'Presenter', true);
await page.goto(buildUrlWithMockAdapter(serverUrl, { ...initialState }));
await openMuteAllMenuItem(page);
expect(await stableScreenshot(page, { dismissTooltips: true })).toMatchSnapshot(
'rooms-call-disabled-mute-all-remote-participant-item-presenter.png'
);
});
test('No ellipses button for remote participant items for Consumer', async ({ page, serverUrl }) => {
const paul = defaultMockRemoteParticipant('Paul Bridges');
const participants = [paul];
const initialState = defaultMockCallAdapterState(participants, 'Consumer', true);
await page.goto(buildUrlWithMockAdapter(serverUrl, { ...initialState }));
await expectNoRemoveParticipantMenuItem(page);
});
});
const openRemoveParticipantMenu = async (page: Page): Promise<void> => {
await waitForSelector(page, dataUiId(IDS.videoGallery));
if (await existsOnPage(page, dataUiId('call-composite-participants-button'))) {
// The control bar is legacy because it has the participant button
await pageClick(page, dataUiId('call-composite-participants-button'));
// Look for a people menu item if there is one and click it to show flyout
// with participant list
if (await existsOnPage(page, dataUiId('participant-button-people-menu-item'))) {
await pageClick(page, dataUiId('participant-button-people-menu-item'));
}
await page.hover(dataUiId('participant-item'));
await waitForSelector(page, dataUiId('participant-item-menu-button'));
await pageClick(page, dataUiId('participant-item-menu-button'));
await waitForSelector(page, dataUiId('participant-list-remove-participant-button'));
} else {
// Click the more button to show the people button on the new control bar
// in case we are on mobile
await pageClick(page, dataUiId('common-call-composite-more-button'));
await waitForSelector(page, dataUiId('call-composite-more-menu-people-button'));
await pageClick(page, dataUiId('call-composite-more-menu-people-button'));
await hidePiPiP(page);
await waitForSelector(page, dataUiId('participant-list'));
await waitForSelector(page, dataUiId('participant-item'));
await pageClick(page, dataUiId('participant-item'));
await waitForSelector(page, dataUiId('drawer-menu'));
}
};
const expectNoRemoveParticipantMenuItem = async (page: Page): Promise<void> => {
await waitForSelector(page, dataUiId(IDS.videoGallery));
if (await existsOnPage(page, dataUiId('call-composite-participants-button'))) {
// The control bar is legacy because it has the participant button
await pageClick(page, dataUiId('call-composite-participants-button'));
// Look for a people menu item if there is one and click it to show flyout
// with participant list
if (await existsOnPage(page, dataUiId('participant-button-people-menu-item'))) {
await pageClick(page, dataUiId('participant-button-people-menu-item'));
}
await page.hover(dataUiId('participant-item'));
const menuButton = await page.$$(dataUiId('participant-item-menu-button'));
if (menuButton.length > 0) {
await pageClick(page, dataUiId('participant-item-menu-button'));
const removeParticipantButton = await page.$$(dataUiId('participant-list-remove-participant-button'));
expect(removeParticipantButton.length).toBe(0);
}
} else {
// Click the more button to show the people button on the new control bar
// in case we are on mobile
await pageClick(page, dataUiId('common-call-composite-more-button'));
await waitForSelector(page, dataUiId('call-composite-more-menu-people-button'));
await pageClick(page, dataUiId('call-composite-more-menu-people-button'));
await hidePiPiP(page);
await waitForSelector(page, dataUiId('participant-list'));
await waitForSelector(page, dataUiId('participant-item'));
await pageClick(page, dataUiId('participant-item'));
const removeParticipantButton = await page.$$(dataUiId('participant-list-remove-participant-button'));
expect(removeParticipantButton.length).toBe(0);
}
};
const expectNoMuteParticipantMenuItem = async (page: Page): Promise<void> => {
await waitForSelector(page, dataUiId(IDS.videoGallery));
if (await existsOnPage(page, dataUiId('call-composite-participants-button'))) {
// The control bar is legacy because it has the participant button
await pageClick(page, dataUiId('call-composite-participants-button'));
// Look for a people menu item if there is one and click it to show flyout
// with participant list
if (await existsOnPage(page, dataUiId('participant-button-people-menu-item'))) {
await pageClick(page, dataUiId('participant-button-people-menu-item'));
}
await page.hover(dataUiId('participant-item'));
const menuButton = await page.$$(dataUiId('participant-item-menu-button'));
if (menuButton.length > 0) {
await pageClick(page, dataUiId('participant-item-menu-button'));
const muteParticipantButton = await page.$$(dataUiId('participant-item-mute-participant'));
expect(muteParticipantButton.length).toBe(0);
}
} else {
// Click the more button to show the people button on the new control bar
// in case we are on mobile
await pageClick(page, dataUiId('common-call-composite-more-button'));
await waitForSelector(page, dataUiId('call-composite-more-menu-people-button'));
await pageClick(page, dataUiId('call-composite-more-menu-people-button'));
await hidePiPiP(page);
await waitForSelector(page, dataUiId('participant-list'));
await waitForSelector(page, dataUiId('participant-item'));
await pageClick(page, dataUiId('participant-item'));
const muteParticipantButton = await page.$$('[data-icon-name="ContextualMenuMicMutedIcon"]');
expect(muteParticipantButton.length).toBe(0);
}
};
const expectNoMuteAllMenuItem = async (page: Page): Promise<void> => {
await waitForSelector(page, dataUiId(IDS.videoGallery));
if (await existsOnPage(page, dataUiId('call-composite-participants-button'))) {
// The control bar is legacy because it has the participant button
await pageClick(page, dataUiId('call-composite-participants-button'));
const menuButton = await page.$$(dataUiId('people-pane-header-more-button'));
if (menuButton.length > 0) {
await pageClick(page, dataUiId('people-pane-header-more-button'));
const muteAllButton = await page.$$(dataUiId('people-pane-mute-all-remote-participants'));
expect(muteAllButton.length).toBe(0);
}
} else {
// Click the more button to show the people button on the new control bar
// in case we are on mobile
await pageClick(page, dataUiId('common-call-composite-more-button'));
const drawerPeopleMenuDiv = await page.$('div[role="menu"] >> text=People');
await drawerPeopleMenuDiv?.click();
const menuButton = await page.$$(dataUiId('people-pane-header-more-button'));
if (menuButton.length > 0) {
await waitForSelector(page, '[data-icon-name="ContextualMenuMicMutedIcon"]');
const muteAllButton = await page.$$('[data-icon-name="ContextualMenuMicMutedIcon"]');
expect(muteAllButton.length).toBe(0);
}
}
};
const expectMuteAllMenuItem = async (page: Page): Promise<void> => {
await waitForSelector(page, dataUiId(IDS.videoGallery));
if (await existsOnPage(page, dataUiId('call-composite-participants-button'))) {
// The control bar is legacy because it has the participant button
await pageClick(page, dataUiId('call-composite-participants-button'));
const menuButton = await page.$$(dataUiId('people-pane-header-more-button'));
if (menuButton.length > 0) {
await pageClick(page, dataUiId('people-pane-header-more-button'));
const muteAllButton = await page.$$(dataUiId('people-pane-mute-all-remote-participants'));
expect(muteAllButton.length).toBe(1);
}
} else {
// Click the more button to show the people button on the new control bar
// in case we are on mobile
await pageClick(page, dataUiId('common-call-composite-more-button'));
const drawerPeopleMenuDiv = await page.$('div[role="menu"] >> text=People');
await drawerPeopleMenuDiv?.click();
await pageClick(page, dataUiId('people-pane-header-more-button'));
await waitForSelector(page, '[data-icon-name="ContextualMenuMicMutedIcon"]');
const muteAllButton = await page.$$('[data-icon-name="ContextualMenuMicMutedIcon"]');
expect(muteAllButton.length).toBe(1);
}
};
const expectMuteParticipantMenuItem = async (page: Page): Promise<void> => {
await waitForSelector(page, dataUiId(IDS.videoGallery));
if (await existsOnPage(page, dataUiId('call-composite-participants-button'))) {
// The control bar is legacy because it has the participant button
await pageClick(page, dataUiId('call-composite-participants-button'));
// Look for a people menu item if there is one and click it to show flyout
// with participant list
if (await existsOnPage(page, dataUiId('participant-button-people-menu-item'))) {
await pageClick(page, dataUiId('participant-button-people-menu-item'));
}
await page.hover(dataUiId('participant-item'));
const menuButton = await page.$$(dataUiId('participant-item-menu-button'));
if (menuButton.length > 0) {
await pageClick(page, dataUiId('participant-item-menu-button'));
const muteParticipantButton = await page.$$(dataUiId('participant-item-mute-participant'));
expect(muteParticipantButton.length).toBe(1);
}
} else {
// Click the more button to show the people button on the new control bar
// in case we are on mobile
await pageClick(page, dataUiId('common-call-composite-more-button'));
await waitForSelector(page, dataUiId('call-composite-more-menu-people-button'));
await pageClick(page, dataUiId('call-composite-more-menu-people-button'));
await hidePiPiP(page);
await waitForSelector(page, dataUiId('participant-list'));
await waitForSelector(page, dataUiId('participant-item'));
await pageClick(page, dataUiId('participant-item'));
await waitForSelector(page, '[data-icon-name="ContextualMenuMicMutedIcon"]');
const muteParticipantButton = await page.$$('[data-icon-name="ContextualMenuMicMutedIcon"]');
expect(muteParticipantButton.length).toBe(1);
}
};
const openMuteParticipantMenuItem = async (page: Page): Promise<void> => {
await waitForSelector(page, dataUiId(IDS.videoGallery));
if (await existsOnPage(page, dataUiId('call-composite-participants-button'))) {
// The control bar is legacy because it has the participant button
await pageClick(page, dataUiId('call-composite-participants-button'));
// Look for a people menu item if there is one and click it to show flyout
// with participant list
if (await existsOnPage(page, dataUiId('participant-button-people-menu-item'))) {
await pageClick(page, dataUiId('participant-button-people-menu-item'));
}
await page.hover(dataUiId('participant-item'));
const menuButton = await page.$$(dataUiId('participant-item-menu-button'));
if (menuButton.length > 0) {
await pageClick(page, dataUiId('participant-item-menu-button'));
}
} else {
// Click the more button to show the people button on the new control bar
// in case we are on mobile
await pageClick(page, dataUiId('common-call-composite-more-button'));
await waitForSelector(page, dataUiId('call-composite-more-menu-people-button'));
await pageClick(page, dataUiId('call-composite-more-menu-people-button'));
await hidePiPiP(page);
await waitForSelector(page, dataUiId('participant-list'));
await waitForSelector(page, dataUiId('participant-item'));
await pageClick(page, dataUiId('participant-item'));
await waitForSelector(page, '[data-icon-name="ContextualMenuMicMutedIcon"]');
}
};
const openMuteAllMenuItem = async (page: Page): Promise<void> => {
await waitForSelector(page, dataUiId(IDS.videoGallery));
if (await existsOnPage(page, dataUiId('call-composite-participants-button'))) {
// The control bar is legacy because it has the participant button
await pageClick(page, dataUiId('call-composite-participants-button'));
const menuButton = await page.$$(dataUiId('people-pane-header-more-button'));
if (menuButton.length > 0) {
await pageClick(page, dataUiId('people-pane-header-more-button'));
await waitForSelector(page, dataUiId('people-pane-mute-all-remote-participants'));
}
} else {
// Click the more button to show the people button on the new control bar
// in case we are on mobile
await pageClick(page, dataUiId('common-call-composite-more-button'));
const drawerPeopleMenuDiv = await page.$('div[role="menu"] >> text=People');
await drawerPeopleMenuDiv?.click();
await pageClick(page, dataUiId('people-pane-header-more-button'));
await waitForSelector(page, '[data-icon-name="ContextualMenuMicMutedIcon"]');
}
};