bigbluebutton-Github/bigbluebutton-tests/playwright/core/helpers.js

85 lines
3.1 KiB
JavaScript
Raw Normal View History

require('dotenv').config();
const sha1 = require('sha1');
const axios = require('axios');
2023-02-14 21:59:46 +08:00
const { test, expect } = require('@playwright/test');
const xml2js = require('xml2js');
const parameters = require('./parameters');
function getRandomInt(min, max) {
min = Math.ceil(min);
max = Math.floor(max);
return Math.floor(Math.random() * (max - min)) + min;
}
function apiCallUrl(name, callParams) {
const query = new URLSearchParams(callParams).toString();
2023-02-14 21:59:46 +08:00
const apiCall = `${name}${query}${parameters.secret}`;
const checksum = sha1(apiCall);
const url = `${parameters.server}/${name}?${query}&checksum=${checksum}`;
return url;
}
function apiCall(name, callParams) {
const url = apiCallUrl(name, callParams);
return axios.get(url, { adapter: 'http' }).then(response => xml2js.parseStringPromise(response.data));
}
2023-02-14 21:59:46 +08:00
function createMeetingUrl(params, customParameter, customMeetingId) {
const meetingID = (customMeetingId) ? customMeetingId : `random-${getRandomInt(1000000, 10000000).toString()}`;
const mp = params.moderatorPW;
const ap = params.attendeePW;
2023-02-14 21:59:46 +08:00
const baseQuery = `name=${meetingID}&meetingID=${meetingID}&attendeePW=${ap}&moderatorPW=${mp}`
2021-12-15 01:10:44 +08:00
+ `&allowStartStopRecording=true&autoStartRecording=false&welcome=${params.welcome}`;
2023-02-14 21:59:46 +08:00
const query = customParameter !== undefined ? `${baseQuery}&${customParameter}` : baseQuery;
const apiCall = `create${query}${params.secret}`;
const checksum = sha1(apiCall);
const url = `${params.server}/create?${query}&checksum=${checksum}`;
return url;
}
2023-02-14 21:59:46 +08:00
function createMeetingPromise(params, customParameter, customMeetingId) {
const url = createMeetingUrl(params, customParameter, customMeetingId);
return axios.get(url, { adapter: 'http' });
}
async function createMeeting(params, customParameter) {
const promise = createMeetingPromise(params, customParameter);
const response = await promise;
expect(response.status).toEqual(200);
2023-02-14 21:59:46 +08:00
const xmlResponse = await xml2js.parseStringPromise(response.data);
return xmlResponse.response.meetingID[0];
}
function getJoinURL(meetingID, params, moderator, customParameter) {
const pw = moderator ? params.moderatorPW : params.attendeePW;
2023-02-14 21:59:46 +08:00
const baseQuery = `fullName=${params.fullName}&meetingID=${meetingID}&password=${pw}`;
const query = customParameter !== undefined ? `${baseQuery}&${customParameter}` : baseQuery;
const apiCall = `join${query}${params.secret}`;
const checksum = sha1(apiCall);
return `${params.server}/join?${query}&checksum=${checksum}`;
}
2022-12-01 21:43:36 +08:00
function linkIssue(issueNumber) {
test.info().annotations.push({
type: 'Issue/PR',
description: `https://github.com/bigbluebutton/bigbluebutton/issues/${issueNumber}`,
});
}
2021-11-27 04:01:41 +08:00
function sleep(time) {
return new Promise((resolve) => {
setTimeout(resolve, time);
});
}
exports.getRandomInt = getRandomInt;
exports.apiCallUrl = apiCallUrl;
exports.apiCall = apiCall;
exports.createMeetingUrl = createMeetingUrl;
exports.createMeetingPromise = createMeetingPromise;
exports.createMeeting = createMeeting;
exports.getJoinURL = getJoinURL;
2022-12-01 21:43:36 +08:00
exports.linkIssue = linkIssue;
2021-11-27 04:01:41 +08:00
exports.sleep = sleep;