bigbluebutton-Github/bigbluebutton-html5/tests/puppeteer/user/multiusers.js

60 lines
1.8 KiB
JavaScript
Raw Normal View History

const Page = require('../core/page');
const params = require('../params');
const util = require('../chat/util');
class MultiUsers {
constructor() {
this.page1 = new Page();
this.page2 = new Page();
2020-02-22 02:06:05 +08:00
this.page3 = new Page();
}
// Join BigBlueButton meeting
async init(meetingId) {
await this.page1.init(Page.getArgs(), meetingId, params);
await this.page2.init(Page.getArgs(), this.page1.meetingId, { ...params, fullName: 'User2' });
}
// Run the test for the page
async checkForOtherUser() {
const firstCheck = await this.page1.page.evaluate(() => document.querySelectorAll('[data-test="userListItem"]').length > 0);
const secondCheck = await this.page2.page.evaluate(() => document.querySelectorAll('[data-test="userListItem"]').length > 0);
return {
firstCheck,
secondCheck,
};
}
async multiUsersPublicChat() {
await util.sendPublicChatMessage(this.page1, this.page2);
const responsePublicMessage = await util.checkForPublicMessageReception(this.page1, this.page2);
const checkPublicChat = responsePublicMessage == true;
return checkPublicChat == true;
}
async multiUsersPrivateChat() {
await util.openPrivateChatMessage(this.page1, this.page2);
await util.sendPrivateChatMessage(this.page1, this.page2);
const responsePrivateMessage = await util.checkForPrivateMessageReception(this.page1, this.page2);
const checkPrivateChat = responsePrivateMessage == true;
return checkPrivateChat == true;
}
async test() {
const checks = await this.checkForOtherUser();
return checks.firstCheck !== false && checks.secondCheck !== false;
}
// Close all Pages
async close() {
await this.page1.close();
await this.page2.close();
}
2020-03-21 04:31:58 +08:00
2020-03-23 20:15:10 +08:00
async closePage(page) {
await page.close();
2020-03-21 04:31:58 +08:00
}
}
module.exports = exports = MultiUsers;