mattermost-desktop/test/specs/app_test.js

87 lines
2.4 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() {
2016-05-02 06:34:00 -07:00
this.timeout(10000);
2016-09-25 07:14:01 -07:00
beforeEach((done) => {
2016-05-21 01:23:23 -07:00
this.app = env.getSpectronApp();
fs.unlink(env.configFilePath, () => {
2016-06-05 08:41:35 -07:00
done();
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-09-25 07:14:01 -07:00
return this.app.stop();
2016-05-21 01:23:23 -07:00
}
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().should.eventually.equal(1).
browserWindow.isDevToolsOpened().should.eventually.be.false.
browserWindow.isVisible().should.eventually.be.true;
2016-06-05 08:41:35 -07: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().should.eventually.match(/\/settings.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 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().should.eventually.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().should.eventually.match(/\/index.html$/);
}).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
});