bigbluebutton-Github/bigbluebutton-tests/playwright
2023-05-18 09:39:06 -03:00
..
api test: fix and update tests 2023-02-14 10:59:46 -03:00
audio keep improving audio tests 2023-05-18 09:39:06 -03:00
breakout Merge remote-tracking branch 'upstream/v2.6.x-release' into presentation-test-impr 2023-04-11 11:53:01 -03:00
chat test: add missing empty line in the end of the files 2023-04-05 18:10:19 -03:00
connectionFailure connection failure tests: remove debugging logs 2023-03-13 17:34:12 -04:00
connectionStatus breakout test creation and after creation 2022-09-22 17:17:15 -03:00
core Merge pull request #17710 from gabriellpr/options-serial-mode 2023-05-03 13:13:17 -04:00
customparameters Merge pull request #17710 from gabriellpr/options-serial-mode 2023-05-03 13:13:17 -04:00
layouts test: Update layout tests reference screenshots 2023-04-13 10:37:19 -03:00
learningdashboard Merge branch 'v2.6.x-release' into presentation-test-impr 2023-04-10 15:50:49 -03:00
notifications test: update and reintroduce tests 2023-03-13 16:34:31 -03:00
options closed the context page 2023-04-25 10:25:23 -03:00
polling test: add missing timeout on actions 2023-04-06 11:44:03 -03:00
presentation Merge pull request #17675 from gabriellpr/hide-toolbars 2023-05-02 09:02:28 -03:00
screenshare connection failure tests: this is what I wrote in February 2023 2023-03-07 21:33:22 -05:00
sharednotes test: fix commented links 2023-04-13 10:49:21 -03:00
stress update test usersJoinKeepingConnected 2022-07-22 17:44:46 -04:00
user test: add missing empty line in the end of the files 2023-04-05 18:10:19 -03:00
virtualizedlist test: fix and update tests 2023-02-14 10:59:46 -03:00
webcam test: fix webcam test name 2023-03-29 13:56:53 -03:00
whiteboard test: update screenshots of remaining whiteboard tests 2023-04-18 10:36:09 -03:00
.env.template add debug features 2022-02-28 18:21:50 -03:00
.gitignore add debug features 2022-02-28 18:21:50 -03:00
package-lock.json connection failure tests: "npm install deep-equal" (since I use it) 2023-03-07 21:34:49 -05:00
package.json connection failure tests: "npm install deep-equal" (since I use it) 2023-03-07 21:34:49 -05:00
playwright.config.js Merge remote-tracking branch 'upstream/v2.6.x-release' into webcam-tests 2023-03-29 10:29:58 -03:00
README.md test: update instructions to only test specific browser 2023-03-31 15:37:07 -04:00

BigBlueButton Playwright Tests

Tests for BigBlueButton using Playwright.

Setup (with an existing BigBlueButton server)

You need to install the dependencies:

$ cd ../bigbluebutton-tests/playwright
$ npm install
$ npx playwright install

You may also need to run the following command:

$ npx playwright install-deps

To run these tests with an existing BigBlueButton server, you need to find the server's URL and secret (can be done with bbb-conf --secret command). You need to put them into the .env file inside bigbluebutton-tests/playwright folder (variables BBB_URL and BBB_SECRET). Note: the value for BBB_URL follows the format of https://<hostname>/bigbluebutton/api.

Run tests

We recommend to use Node version 16 or higher to avoid errors in JavaScript. Tests can be executed using npx and npm test. You can run all tests in each of 3 supported environments (chromium, firefox, webkit) with one of the following commands:

$ npx playwright test
or
$ npm test

You can also run a single test suite and limit the execution to only one browser:

$ npx playwright test chat --project="firefox"
or
$ npm test chat -- --project="firefox" # or "chromium" for example

Additional commands

To see the tests running visually, you must run them in headed mode:

$ npm run test:headed chat

If you want to run a specific test or a specific group of tests, you can do so with the following command:

$ npm run test:filter "Send public message"

(note that this filter needs to be passed in "double quotes")

You can also use this also through the test tree, adding the test suite / group of tests before the test filter:

$ npm run test:filter "notifications chat"

If you don't have BBB_URL and BBB_SECRET set, but have ssh access to the test server, you can use the following command to obtain BBB_URL and BBB_SECRET via ssh:

$ npm run test:ssh -- HOSTNAME

Recording Meteor messages

A modified version of websockify can be used to record the Meteor messages exchanged between client and server, by inserted a WebSocket proxy between the client and server, configured to record the sessions.

First, on the server, obtain the modified websockify:

git clone https://github.com/BrentBaccala/websockify.git

Install additional dependencies:

sudo apt install python3-numpy

Then add the following stanza to /usr/share/bigbluebutton/nginx/bbb-html5.nginx:

location ~* /html5client/.*/websocket {
  proxy_pass http://127.0.0.1:4200;
  proxy_http_version 1.1;
  proxy_set_header Upgrade $http_upgrade;
  proxy_set_header Connection "Upgrade";
}

From the websockify directory, run websockify configured to proxy WebSocket connections from port 4200 to port 4100, recording the sessions to files named bbb.1, bbb.2, etc.:

./run -v --record=bbb --ws-target=ws://localhost:4100{path} 4200

Now reload nginx:

sudo systemctl reload nginx

Meteor messages for Big Blue Button sessions will now be recorded for later review.

It doesn't seem necessary to relay cookies, but that could be done by giving a --ws-relay-header=Cookie argument to websockify.

You can print the browser console log to standard output by setting the environment variable CONSOLE:

$ CONSOLE= npm test chat -- --project=firefox

CONSOLE can be blank (as in the example), or can be a comma-separated list of the following options:

Option Meaning
color (or "colour") colorize the output
label label each line with the BigBlueButton user
norefs remove JavaScript reference URLs
nots remove timestamps
nocl remove "clientLogger:" strings