aaron
057377207a
Some checks failed
release / begin-notification (push) Has been cancelled
release / build-linux (push) Has been cancelled
release / build-msi-installer (push) Has been cancelled
release / build-mac-installer (push) Has been cancelled
release / upload-to-s3 (push) Has been cancelled
release / github-release (push) Has been cancelled
release / end-notification (push) Has been cancelled
58 lines
2.3 KiB
JavaScript
58 lines
2.3 KiB
JavaScript
// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
'use strict';
|
|
|
|
const fs = require('fs');
|
|
|
|
const env = require('../../modules/environment');
|
|
const {asyncSleep} = require('../../modules/utils');
|
|
|
|
describe('header', function desc() {
|
|
this.timeout(30000);
|
|
|
|
describe('MM-T2637 Double-Clicking on the header should minimize/maximize the app', async () => {
|
|
let header;
|
|
let browserWindow;
|
|
let initialBounds;
|
|
|
|
before(async () => {
|
|
env.createTestUserDataDir();
|
|
env.cleanTestConfig();
|
|
initialBounds = {x: 0, y: 0, width: 800, height: 400, maximized: false};
|
|
fs.writeFileSync(env.boundsInfoPath, JSON.stringify(initialBounds));
|
|
this.app = await env.getApp();
|
|
const mainWindow = await this.app.windows().find((window) => window.url().includes('index'));
|
|
browserWindow = await this.app.browserWindow(mainWindow);
|
|
header = await mainWindow.locator('div.topBar');
|
|
});
|
|
|
|
after(async () => {
|
|
if (this.app) {
|
|
try {
|
|
await this.app.close();
|
|
// eslint-disable-next-line no-empty
|
|
} catch (err) {}
|
|
}
|
|
await env.clearElectronInstances();
|
|
});
|
|
|
|
it('MM-T2637_1 should maximize on double-clicking the header', async () => {
|
|
const headerBounds = await header.boundingBox();
|
|
await header.dblclick({position: {x: headerBounds.width / 2, y: headerBounds.y / 2}});
|
|
await asyncSleep(1000);
|
|
const isMaximized = await browserWindow.evaluate((window) => window.isMaximized());
|
|
isMaximized.should.be.equal(true);
|
|
});
|
|
|
|
it('MM-T2637_2 should restore on double-clicking the header when maximized', async () => {
|
|
const maximizedHeaderBounds = await header.boundingBox();
|
|
await header.dblclick({position: {x: maximizedHeaderBounds.width / 2, y: maximizedHeaderBounds.y / 2}});
|
|
await asyncSleep(1000);
|
|
const revertedBounds = await browserWindow.evaluate((window) => window.getContentBounds());
|
|
revertedBounds.height.should.be.equal(initialBounds.height);
|
|
revertedBounds.width.should.be.equal(initialBounds.width);
|
|
});
|
|
});
|
|
});
|