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
120 lines
5.4 KiB
JavaScript
120 lines
5.4 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');
|
|
|
|
const config = env.demoConfig;
|
|
|
|
describe('menu_bar/dropdown', function desc() {
|
|
const beforeFunc = async () => {
|
|
env.createTestUserDataDir();
|
|
env.cleanTestConfig();
|
|
fs.writeFileSync(env.configFilePath, JSON.stringify(config));
|
|
await asyncSleep(1000);
|
|
this.app = await env.getApp();
|
|
};
|
|
|
|
const afterFunc = async () => {
|
|
if (this.app) {
|
|
await this.app.close();
|
|
}
|
|
await env.clearElectronInstances();
|
|
};
|
|
|
|
this.timeout(30000);
|
|
|
|
it('MM-T4405 should set name of menu item from config file', async () => {
|
|
await beforeFunc();
|
|
|
|
const mainWindow = this.app.windows().find((window) => window.url().includes('index'));
|
|
const dropdownView = this.app.windows().find((window) => window.url().includes('dropdown'));
|
|
await mainWindow.click('.ServerDropdownButton');
|
|
const firstMenuItem = await dropdownView.innerText('.ServerDropdown button.ServerDropdown__button:nth-child(1) span');
|
|
const secondMenuItem = await dropdownView.innerText('.ServerDropdown button.ServerDropdown__button:nth-child(2) span');
|
|
|
|
firstMenuItem.should.equal(config.teams[0].name);
|
|
secondMenuItem.should.equal(config.teams[1].name);
|
|
|
|
await afterFunc();
|
|
});
|
|
|
|
describe('MM-T4406 should only show dropdown when button is clicked', async () => {
|
|
let mainWindow;
|
|
let browserWindow;
|
|
|
|
before(async () => {
|
|
await beforeFunc();
|
|
mainWindow = this.app.windows().find((window) => window.url().includes('index'));
|
|
browserWindow = await this.app.browserWindow(mainWindow);
|
|
});
|
|
after(afterFunc);
|
|
|
|
it('MM-T4406_1 should show the dropdown', async () => {
|
|
let dropdownHeight = await browserWindow.evaluate((window) => window.getBrowserViews().find((view) => view.webContents.getURL().includes('dropdown')).getBounds().height);
|
|
dropdownHeight.should.equal(0);
|
|
|
|
await mainWindow.click('.ServerDropdownButton');
|
|
dropdownHeight = await browserWindow.evaluate((window) => window.getBrowserViews().find((view) => view.webContents.getURL().includes('dropdown')).getBounds().height);
|
|
dropdownHeight.should.be.greaterThan(0);
|
|
});
|
|
|
|
it('MM-T4406_2 should hide the dropdown', async () => {
|
|
await mainWindow.click('.TabBar');
|
|
const dropdownHeight = await browserWindow.evaluate((window) => window.getBrowserViews().find((view) => view.webContents.getURL().includes('dropdown')).getBounds().height);
|
|
dropdownHeight.should.equal(0);
|
|
});
|
|
});
|
|
|
|
it('MM-T4407 should open the new server prompt after clicking the add button', async () => {
|
|
await beforeFunc();
|
|
|
|
const mainWindow = this.app.windows().find((window) => window.url().includes('index'));
|
|
const dropdownView = this.app.windows().find((window) => window.url().includes('dropdown'));
|
|
await mainWindow.click('.ServerDropdownButton');
|
|
await dropdownView.click('.ServerDropdown__button.addServer');
|
|
|
|
const newServerModal = await this.app.waitForEvent('window', {
|
|
predicate: (window) => window.url().includes('newServer'),
|
|
});
|
|
const modalTitle = await newServerModal.innerText('#newServerModal .modal-title');
|
|
modalTitle.should.equal('Add Server');
|
|
|
|
await afterFunc();
|
|
});
|
|
|
|
describe('MM-T4408 Switch Servers', async () => {
|
|
let mainWindow;
|
|
let browserWindow;
|
|
let dropdownView;
|
|
|
|
before(async () => {
|
|
await beforeFunc();
|
|
mainWindow = this.app.windows().find((window) => window.url().includes('index'));
|
|
browserWindow = await this.app.browserWindow(mainWindow);
|
|
dropdownView = this.app.windows().find((window) => window.url().includes('dropdown'));
|
|
});
|
|
after(afterFunc);
|
|
|
|
it('MM-T4408_1 should show the first view', async () => {
|
|
const firstViewIsAttached = await browserWindow.evaluate((window, url) => Boolean(window.getBrowserViews().find((view) => view.webContents.getURL() === url)), env.exampleURL);
|
|
firstViewIsAttached.should.be.true;
|
|
const secondViewIsAttached = await browserWindow.evaluate((window) => Boolean(window.getBrowserViews().find((view) => view.webContents.getURL() === 'https://github.com/')));
|
|
secondViewIsAttached.should.be.false;
|
|
});
|
|
|
|
it('MM-T4408_2 should show the second view after clicking the menu item', async () => {
|
|
await mainWindow.click('.ServerDropdownButton');
|
|
await dropdownView.click('.ServerDropdown button.ServerDropdown__button:nth-child(2)');
|
|
|
|
const firstViewIsAttached = await browserWindow.evaluate((window, url) => Boolean(window.getBrowserViews().find((view) => view.webContents.getURL() === url)), env.exampleURL);
|
|
firstViewIsAttached.should.be.false;
|
|
const secondViewIsAttached = await browserWindow.evaluate((window) => Boolean(window.getBrowserViews().find((view) => view.webContents.getURL() === 'https://github.com/')));
|
|
secondViewIsAttached.should.be.true;
|
|
});
|
|
});
|
|
});
|