mattermost-desktop/test/specs/app_test.js

121 lines
3.9 KiB
JavaScript
Raw Normal View History

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.cleanTestConfig();
2016-05-21 01:23:23 -07:00
this.app = env.getSpectronApp();
2016-05-02 06:34:00 -07:00
});
2016-09-25 07:14:01 -07:00
afterEach(() => {
2016-05-21 01:23:23 -07:00
if (this.app && this.app.isRunning()) {
2016-12-27 05:10:53 -08:00
return this.app.stop().then(() => {
env.cleanTestConfig();
});
2016-05-21 01:23:23 -07:00
}
2016-12-27 05:10:53 -08:00
env.cleanTestConfig();
2016-09-25 07:14:01 -07:00
return true;
2016-05-02 06:34:00 -07:00
});
2016-09-25 07:14:01 -07:00
it('should show a window', () => {
2016-06-05 08:41:35 -07:00
return this.app.start().then(() => {
2016-09-25 07:14:01 -07:00
return this.app.client.
waitUntilWindowLoaded().
getWindowCount().then((count) => count.should.equal(1)).
browserWindow.isDevToolsOpened().then((opened) => opened.should.be.false).
browserWindow.isVisible().then((visible) => visible.should.be.true);
2016-06-05 08:41:35 -07:00
});
});
2016-12-27 06:29:52 -08:00
it.skip('should restore window bounds', () => {
// 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));
return this.app.start().then(() => {
return this.app.browserWindow.getBounds();
}).then((bounds) => {
bounds.should.deep.equal(expectedBounds);
});
});
it('should NOT restore window bounds if the origin is located on outside of viewarea', () => {
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}));
2016-12-27 05:10:53 -08:00
return this.app.start().then(() => {
return this.app.browserWindow.getBounds();
}).then((bounds) => {
2016-12-27 06:29:52 -08:00
bounds.x.should.satisfy((x) => (x > -10000));
2016-12-27 05:10:53 -08:00
}).then(() => {
2016-12-27 06:29:52 -08:00
fs.writeFileSync(env.boundsInfoPath, JSON.stringify({x: 100, y: 200000, width: 300, height: 400}));
2016-12-27 05:10:53 -08:00
return this.app.restart();
2016-12-27 06:29:52 -08:00
}).then(() => {
return this.app.browserWindow.getBounds();
2016-12-27 05:10:53 -08:00
}).then((bounds) => {
2016-12-27 06:29:52 -08:00
bounds.y.should.satisfy((y) => (y < 10000));
2016-12-27 05:10:53 -08:00
});
});
2016-09-25 07:14:01 -07:00
it('should show settings.html when there is no config file', () => {
2016-05-21 01:23:23 -07:00
return this.app.start().then(() => {
2016-09-25 07:14:01 -07:00
return this.app.client.
waitUntilWindowLoaded().
getUrl().then((url) => url.should.match(/\/settings.html$/)).
isExisting('#newServerModal').then((existing) => existing.should.equal(true));
2016-05-21 01:23:23 -07:00
});
2016-05-02 06:34:00 -07:00
});
2016-09-25 07:14:01 -07:00
it('should show index.html when there is config file', () => {
2016-05-02 06:34:00 -07:00
fs.writeFileSync(env.configFilePath, JSON.stringify({
url: env.mattermostURL
}));
2016-05-21 01:23:23 -07:00
return this.app.start().then(() => {
2016-09-25 07:14:01 -07:00
return this.app.client.
waitUntilWindowLoaded().
getUrl().then((url) => url.should.match(/\/index.html$/));
2016-05-21 01:23:23 -07:00
});
2016-05-02 06:34:00 -07:00
});
2016-09-25 07:14:01 -07:00
it('should upgrade v0 config file', () => {
2016-05-02 06:34:00 -07:00
const settings = require('../../src/common/settings');
fs.writeFileSync(env.configFilePath, JSON.stringify({
url: env.mattermostURL
}));
2016-05-21 01:23:23 -07:00
return this.app.start().then(() => {
2016-09-25 07:14:01 -07:00
return this.app.client.
waitUntilWindowLoaded().
getUrl().then((url) => url.should.match(/\/index.html$/));
2016-09-25 07:14:01 -07:00
}).then(() => {
2016-06-05 08:41:35 -07:00
var str = fs.readFileSync(env.configFilePath, 'utf8');
var config = JSON.parse(str);
config.version.should.equal(settings.version);
2016-05-21 01:23:23 -07:00
});
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) => {
this.app.start().then(() => {
const secondApp = env.getSpectronApp();
2016-09-25 07:14:01 -07: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
});