2020-08-06 02:44:17 +08:00
|
|
|
const Page = require('./core/page');
|
|
|
|
const Draw = require('./whiteboard/draw');
|
2020-10-09 03:25:35 +08:00
|
|
|
const { toMatchImageSnapshot } = require('jest-image-snapshot');
|
2021-02-17 04:57:10 +08:00
|
|
|
const { MAX_WHITEBOARD_TEST_TIMEOUT } = require('./core/constants');
|
2020-10-09 03:25:35 +08:00
|
|
|
|
|
|
|
expect.extend({ toMatchImageSnapshot });
|
2020-08-06 02:44:17 +08:00
|
|
|
|
|
|
|
const whiteboardTest = () => {
|
|
|
|
beforeEach(() => {
|
2021-02-17 04:57:10 +08:00
|
|
|
jest.setTimeout(MAX_WHITEBOARD_TEST_TIMEOUT);
|
2020-08-06 02:44:17 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
test('Draw rectangle', async () => {
|
|
|
|
const test = new Draw();
|
|
|
|
let response;
|
2020-10-09 03:25:35 +08:00
|
|
|
let screenshot;
|
2020-08-06 02:44:17 +08:00
|
|
|
try {
|
2020-10-27 23:54:55 +08:00
|
|
|
const testName = 'drawRectangle';
|
2021-02-17 04:57:10 +08:00
|
|
|
await test.logger('begin of ', testName);
|
2020-08-06 02:44:17 +08:00
|
|
|
await test.init(Page.getArgs());
|
2020-10-27 23:54:55 +08:00
|
|
|
await test.logger('Test Name: ', testName);
|
2020-08-06 02:44:17 +08:00
|
|
|
await test.closeAudioModal();
|
|
|
|
response = await test.test();
|
2021-02-17 04:57:10 +08:00
|
|
|
await test.logger('end of ', testName);
|
2020-10-09 03:25:35 +08:00
|
|
|
screenshot = await test.page.screenshot();
|
2020-08-06 02:44:17 +08:00
|
|
|
} catch (e) {
|
2021-02-17 04:57:10 +08:00
|
|
|
await test.logger(e);
|
2020-08-06 02:44:17 +08:00
|
|
|
} finally {
|
|
|
|
await test.close();
|
|
|
|
}
|
|
|
|
expect(response).toBe(true);
|
2020-10-09 03:25:35 +08:00
|
|
|
if (process.env.REGRESSION_TESTING === 'true') {
|
|
|
|
expect(screenshot).toMatchImageSnapshot({
|
2020-10-27 23:54:55 +08:00
|
|
|
failureThreshold: 0.9,
|
2020-10-09 03:25:35 +08:00
|
|
|
failureThresholdType: 'percent',
|
|
|
|
});
|
|
|
|
}
|
2020-08-06 02:44:17 +08:00
|
|
|
});
|
|
|
|
};
|
|
|
|
module.exports = exports = whiteboardTest;
|