From 33c41fc84c8f61da2c2368e3fd3fa663e17889be Mon Sep 17 00:00:00 2001 From: Mohamed Amine Ben Salah <damineone@gmail.com> Date: Tue, 24 Mar 2020 15:13:51 -0300 Subject: [PATCH] adds shared notes single user test --- .../tests/puppeteer/notes/elements.js | 3 +++ .../tests/puppeteer/notes/sharednotes.js | 19 +++++++++++++++++++ .../tests/puppeteer/notes/util.js | 18 ++++++++++++++++++ .../tests/puppeteer/sharednotes.test.js | 17 +++++++++++++++++ 4 files changed, 57 insertions(+) create mode 100644 bigbluebutton-html5/tests/puppeteer/notes/elements.js create mode 100644 bigbluebutton-html5/tests/puppeteer/notes/sharednotes.js create mode 100644 bigbluebutton-html5/tests/puppeteer/notes/util.js create mode 100644 bigbluebutton-html5/tests/puppeteer/sharednotes.test.js diff --git a/bigbluebutton-html5/tests/puppeteer/notes/elements.js b/bigbluebutton-html5/tests/puppeteer/notes/elements.js new file mode 100644 index 0000000000..2c0719e3d6 --- /dev/null +++ b/bigbluebutton-html5/tests/puppeteer/notes/elements.js @@ -0,0 +1,3 @@ +exports.sharedNotes = 'div[data-test="sharedNotes"]'; +exports.hideNoteLabel = 'button[data-test="hideNoteLabel"]'; +exports.etherpad = 'iframe[title="etherpad"]'; diff --git a/bigbluebutton-html5/tests/puppeteer/notes/sharednotes.js b/bigbluebutton-html5/tests/puppeteer/notes/sharednotes.js new file mode 100644 index 0000000000..23664c0a9c --- /dev/null +++ b/bigbluebutton-html5/tests/puppeteer/notes/sharednotes.js @@ -0,0 +1,19 @@ +const Create = require('../breakout/create'); +const util = require('./util'); + +class SharedNotes extends Create { + constructor() { + super('shared-notes'); + } + + async test() { + const response = await util.startSharedNotes(this.page1); + return response; + } + + async close() { + await this.page1.close(); + await this.page2.close(); + } +} +module.exports = exports = SharedNotes; diff --git a/bigbluebutton-html5/tests/puppeteer/notes/util.js b/bigbluebutton-html5/tests/puppeteer/notes/util.js new file mode 100644 index 0000000000..82754966ed --- /dev/null +++ b/bigbluebutton-html5/tests/puppeteer/notes/util.js @@ -0,0 +1,18 @@ +const se = require('./elements'); + +async function startSharedNotes(test) { + await test.waitForSelector(se.sharedNotes); + await test.click(se.sharedNotes, true); + await test.waitForSelector(se.hideNoteLabel); + const resp = await test.page.evaluate(getTestElement, se.etherpad); + await test.waitForSelector(se.etherpad); + return resp; +} + +async function getTestElement(element) { + const response = document.querySelectorAll(element).length >= 1; + return response; +} + +exports.getTestElement = getTestElement; +exports.startSharedNotes = startSharedNotes; diff --git a/bigbluebutton-html5/tests/puppeteer/sharednotes.test.js b/bigbluebutton-html5/tests/puppeteer/sharednotes.test.js new file mode 100644 index 0000000000..67aad3cd7c --- /dev/null +++ b/bigbluebutton-html5/tests/puppeteer/sharednotes.test.js @@ -0,0 +1,17 @@ +const SharedNotes = require('./notes/sharednotes'); + +describe('Shared notes', () => { + test('Open Shared notes', async () => { + const test = new SharedNotes(); + let response; + try { + await test.init(); + response = await test.test(); + } catch (e) { + console.log(e); + } finally { + await test.close(); + } + expect(response).toBe(true); + }); +}); -- GitLab