mattermost-desktop/test/specs/browser/index_test.js

175 lines
5.1 KiB
JavaScript
Raw Normal View History

2016-05-02 06:34:00 -07:00
'use strict';
const fs = require('fs');
2016-08-20 04:18:08 -07:00
const http = require('http');
const path = require('path');
2016-05-02 06:34:00 -07:00
const env = require('../../modules/environment');
2016-09-25 07:14:01 -07:00
describe('browser/index.html', function desc() {
2016-05-02 06:34:00 -07:00
this.timeout(10000);
const config = {
version: 1,
teams: [{
name: 'example_1',
url: env.mattermostURL + '1'
}, {
name: 'example_2',
url: env.mattermostURL + '2'
}]
};
2016-08-20 04:18:08 -07:00
const serverPort = 8181;
2016-09-25 07:14:01 -07:00
before(() => {
function serverCallback(req, res) {
2016-08-20 04:18:08 -07:00
res.writeHead(200, {
'Content-Type': 'text/html'
});
res.end(fs.readFileSync(path.resolve(env.sourceRootDir, 'test/modules/test.html'), 'utf-8'));
2016-09-25 07:14:01 -07:00
}
this.server = http.createServer(serverCallback).listen(serverPort, '127.0.0.1');
2016-08-20 04:18:08 -07:00
});
2016-09-25 07:14:01 -07:00
beforeEach(() => {
2016-05-02 06:34:00 -07:00
fs.writeFileSync(env.configFilePath, JSON.stringify(config));
2016-06-05 08:41:35 -07:00
this.app = env.getSpectronApp();
return this.app.start();
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
after((done) => {
2016-08-20 04:18:08 -07:00
this.server.close(done);
2016-09-25 07:14:01 -07:00
});
2016-08-20 04:18:08 -07:00
2016-09-25 07:14:01 -07:00
it('should NOT show tabs when there is one team', () => {
2016-05-02 06:34:00 -07:00
fs.writeFileSync(env.configFilePath, JSON.stringify({
url: env.mattermostURL
}));
2016-06-05 08:41:35 -07:00
return this.app.restart().then(() => {
2016-09-25 07:14:01 -07:00
return this.app.client.waitUntilWindowLoaded().
isExisting('#tabBar').should.eventually.be.false;
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 set src of webview from config file', () => {
return this.app.client.waitUntilWindowLoaded().
getAttribute('#mattermostView0', 'src').should.eventually.equal(config.teams[0].url).
getAttribute('#mattermostView1', 'src').should.eventually.equal(config.teams[1].url).
isExisting('#mattermostView2').should.eventually.be.false;
2016-05-02 06:34:00 -07:00
});
2016-09-25 07:14:01 -07:00
it('should set name of tab from config file', () => {
return this.app.client.waitUntilWindowLoaded().
getText('#teamTabItem0').should.eventually.equal(config.teams[0].name).
getText('#teamTabItem1').should.eventually.equal(config.teams[1].name);
2016-05-02 06:34:00 -07:00
});
2016-09-25 07:14:01 -07:00
it('should show only the selected team', () => {
return this.app.client.waitUntilWindowLoaded().
isVisible('#mattermostView0').should.eventually.be.true.
isVisible('#mattermostView1').should.eventually.be.false.
click('#teamTabItem1').
pause(1000).
isVisible('#mattermostView1').should.eventually.be.true.
isVisible('#mattermostView0').should.eventually.be.false;
2016-05-02 06:34:00 -07:00
});
2016-09-25 07:14:01 -07:00
it('should show error when using incorrect URL', () => {
this.timeout(30000);
2016-05-02 06:34:00 -07:00
fs.writeFileSync(env.configFilePath, JSON.stringify({
version: 1,
teams: [{
name: 'error_1',
url: 'http://false'
}]
}));
2016-06-05 08:41:35 -07:00
return this.app.restart().then(() => {
2016-09-25 07:14:01 -07:00
return this.app.client.waitUntilWindowLoaded().
waitForVisible('#mattermostView0-fail', 20000);
2016-05-21 01:23:23 -07:00
});
2016-05-02 06:34:00 -07:00
});
2016-08-20 04:18:08 -07:00
2016-09-25 07:14:01 -07:00
it('should set window title by using webview\'s one', () => {
2016-08-20 04:18:08 -07:00
fs.writeFileSync(env.configFilePath, JSON.stringify({
version: 1,
teams: [{
name: 'title_test',
url: `http://localhost:${serverPort}`
}]
}));
return this.app.restart().then(() => {
2016-09-25 07:14:01 -07:00
return this.app.client.waitUntilWindowLoaded().pause(1000);
}).then(() => {
return this.app.browserWindow.getTitle().should.eventually.equal('Mattermost Desktop testing html');
});
2016-08-20 04:18:08 -07:00
});
2016-09-25 07:14:01 -07:00
it('should update window title when the activated tab\'s title is updated', () => {
2016-08-20 04:18:08 -07:00
fs.writeFileSync(env.configFilePath, JSON.stringify({
version: 1,
teams: [{
name: 'title_test_0',
url: `http://localhost:${serverPort}`
}, {
name: 'title_test_1',
url: `http://localhost:${serverPort}`
}]
}));
return this.app.restart().then(() => {
2016-09-25 07:14:01 -07:00
return this.app.client.waitUntilWindowLoaded().pause(500);
}).then(() => {
return this.app.client.
windowByIndex(1).
execute(() => {
document.title = 'Title 0';
}).
windowByIndex(0).
browserWindow.getTitle().should.eventually.equal('Title 0').
windowByIndex(2).
execute(() => {
document.title = 'Title 1';
}).
windowByIndex(0).
browserWindow.getTitle().should.eventually.equal('Title 0');
});
2016-08-20 04:18:08 -07:00
});
2016-09-25 07:14:01 -07:00
it('should update window title when a tab is selected', () => {
2016-08-20 04:18:08 -07:00
fs.writeFileSync(env.configFilePath, JSON.stringify({
version: 1,
teams: [{
name: 'title_test_0',
url: `http://localhost:${serverPort}`
}, {
name: 'title_test_1',
url: `http://localhost:${serverPort}`
}]
}));
return this.app.restart().then(() => {
2016-09-25 07:14:01 -07:00
return this.app.client.
waitUntilWindowLoaded().
pause(500).
windowByIndex(1).
execute(() => {
2016-08-20 04:18:08 -07:00
document.title = 'Title 0';
2016-09-25 07:14:01 -07:00
}).
windowByIndex(2).
execute(() => {
2016-08-20 04:18:08 -07:00
document.title = 'Title 1';
2016-09-25 07:14:01 -07:00
}).
windowByIndex(0).
browserWindow.getTitle().should.eventually.equal('Title 0').
click('#teamTabItem1').
browserWindow.getTitle().should.eventually.equal('Title 1');
2016-08-20 04:18:08 -07:00
});
});
2016-05-02 06:34:00 -07:00
});