mattermost-desktop/test/specs/app_test.js

116 lines
3.8 KiB
JavaScript
Raw Normal View History

2018-05-30 08:23:57 -07:00
// Copyright (c) 2015-2016 Yuya Ochiai
// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
2016-05-02 06:34:00 -07:00
'use strict';
const fs = require('fs');
const env = require('../modules/environment');
2016-09-25 07:14:01 -07:00
describe('application', function desc() {
2017-09-22 08:41:42 -07:00
this.timeout(30000);
2016-05-02 06:34:00 -07:00
2016-12-27 05:10:53 -08:00
beforeEach(() => {
env.createTestUserDataDir();
2016-12-27 05:10:53 -08:00
env.cleanTestConfig();
2016-05-21 01:23:23 -07:00
this.app = env.getSpectronApp();
2018-02-07 03:23:32 -08:00
return this.app.start();
2016-05-02 06:34:00 -07:00
});
2018-03-13 07:08:07 -07:00
afterEach(async () => {
2016-05-21 01:23:23 -07:00
if (this.app && this.app.isRunning()) {
2018-03-13 07:08:07 -07:00
await this.app.stop();
2016-05-21 01:23:23 -07:00
}
2016-05-02 06:34:00 -07:00
});
2018-03-13 07:08:07 -07:00
it('should show a window', async () => {
await this.app.client.waitUntilWindowLoaded();
const count = await this.app.client.getWindowCount();
count.should.equal(1);
const opened = await this.app.browserWindow.isDevToolsOpened();
opened.should.be.false;
const visible = await this.app.browserWindow.isVisible();
visible.should.be.true;
2016-06-05 08:41:35 -07:00
});
2018-03-13 07:08:07 -07:00
it.skip('should restore window bounds', async () => {
2016-12-27 06:29:52 -08:00
// bounds seems to be incorrectly calculated in some environments
// - Windows 10: OK
// - CircleCI: NG
2016-12-27 05:10:53 -08:00
const expectedBounds = {x: 100, y: 200, width: 300, height: 400};
fs.writeFileSync(env.boundsInfoPath, JSON.stringify(expectedBounds));
2018-03-13 07:08:07 -07:00
await this.app.restart();
const bounds = await this.app.browserWindow.getBounds();
bounds.should.deep.equal(expectedBounds);
2016-12-27 05:10:53 -08:00
});
2018-03-13 07:08:07 -07:00
it('should NOT restore window bounds if the origin is located on outside of viewarea', async () => {
2016-12-27 06:29:52 -08:00
// bounds seems to be incorrectly calculated in some environments (e.g. CircleCI)
// - Windows 10: OK
// - CircleCI: NG
fs.writeFileSync(env.boundsInfoPath, JSON.stringify({x: -100000, y: 200, width: 300, height: 400}));
2018-03-13 07:08:07 -07:00
await this.app.restart();
let bounds = await this.app.browserWindow.getBounds();
bounds.x.should.satisfy((x) => (x > -10000));
fs.writeFileSync(env.boundsInfoPath, JSON.stringify({x: 100, y: 200000, width: 300, height: 400}));
await this.app.restart();
bounds = await this.app.browserWindow.getBounds();
bounds.y.should.satisfy((y) => (y < 10000));
2016-12-27 05:10:53 -08:00
});
2018-03-13 07:08:07 -07:00
it('should show settings.html when there is no config file', async () => {
await this.app.client.waitUntilWindowLoaded();
await this.app.client.pause(1000);
2018-03-13 07:08:07 -07:00
const url = await this.app.client.getUrl();
url.should.match(/\/settings.html$/);
const existing = await this.app.client.isExisting('#newServerModal');
existing.should.equal(true);
2016-05-02 06:34:00 -07:00
});
2018-03-13 07:08:07 -07:00
it('should show index.html when there is config file', async () => {
2016-05-02 06:34:00 -07:00
fs.writeFileSync(env.configFilePath, JSON.stringify({
url: env.mattermostURL,
2016-05-02 06:34:00 -07:00
}));
2018-03-13 07:08:07 -07:00
await this.app.restart();
2018-03-13 07:08:07 -07:00
const url = await this.app.client.getUrl();
url.should.match(/\/index.html$/);
2016-05-02 06:34:00 -07:00
});
2018-03-13 07:08:07 -07:00
it('should upgrade v0 config file', async () => {
const Config = require('../../src/common/config').default;
const config = new Config(env.configFilePath);
2016-05-02 06:34:00 -07:00
fs.writeFileSync(env.configFilePath, JSON.stringify({
url: env.mattermostURL,
2016-05-02 06:34:00 -07:00
}));
2018-03-13 07:08:07 -07:00
await this.app.restart();
const url = await this.app.client.getUrl();
url.should.match(/\/index.html$/);
const str = fs.readFileSync(env.configFilePath, 'utf8');
const localConfigData = JSON.parse(str);
localConfigData.version.should.equal(config.defaultData.version);
2016-05-02 06:34:00 -07:00
});
2016-09-25 07:14:01 -07:00
it.skip('should be stopped when the app instance already exists', (done) => {
2018-02-07 03:23:32 -08:00
const secondApp = env.getSpectronApp();
2016-09-25 07:14:01 -07:00
2018-02-07 03:23:32 -08:00
// In the correct case, 'start().then' is not called.
// So need to use setTimeout in order to finish this test.
const timer = setTimeout(() => {
done();
}, 3000);
secondApp.start().then(() => {
clearTimeout(timer);
return secondApp.stop();
}).then(() => {
done(new Error('Second app instance exists'));
});
});
2016-05-02 06:34:00 -07:00
});