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

146 lines
4.7 KiB
JavaScript
Raw Normal View History

2016-05-02 06:34:00 -07:00
'use strict';
const path = require('path');
const fs = require('fs');
const env = require('../../modules/environment');
2016-05-02 08:42:13 -07:00
function initClient(client) {
return client
2016-06-05 08:41:35 -07:00
.url('file://' + path.join(env.sourceRootDir, 'dist/browser/settings.html'))
.waitUntilWindowLoaded();
2016-05-02 08:42:13 -07:00
}
function addClientCommands(client) {
client.addCommand('loadSettingsPage', function() {
return this
.url('file://' + path.join(env.sourceRootDir, 'dist/browser/settings.html'))
.waitUntilWindowLoaded();
});
}
2016-05-02 06:34:00 -07:00
describe('browser/settings.html', function() {
this.timeout(10000);
const config = {
version: 1,
teams: [{
name: 'example_1',
url: env.mattermostURL
}, {
name: 'example_2',
url: env.mattermostURL
}]
};
beforeEach(function() {
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
});
afterEach(function() {
2016-05-21 01:23:23 -07:00
if (this.app && this.app.isRunning()) {
return this.app.stop()
}
2016-05-02 06:34:00 -07:00
});
it('should show index.thml when Cancel button is clicked', function() {
2016-06-05 08:41:35 -07:00
return initClient(this.app.client)
.click('#btnCancel')
.pause(1000)
.getUrl().should.eventually.match(/\/index.html$/)
2016-05-02 06:34:00 -07:00
});
it('should show index.thml when Save button is clicked', function() {
2016-06-05 08:41:35 -07:00
return initClient(this.app.client)
.click('#btnSave')
.pause(1000)
.getUrl().should.eventually.match(/\/index.html$/)
2016-05-02 06:34:00 -07:00
});
2016-05-02 08:42:13 -07:00
describe('Options', function() {
describe('Hide Menu Bar', function() {
it('should appear on win32 or linux', function() {
2016-06-05 08:41:35 -07:00
const expected = (process.platform === 'win32' || process.platform === 'linux');
return initClient(this.app.client)
.isExisting('#inputHideMenuBar').should.eventually.equal(expected)
2016-05-02 08:42:13 -07:00
});
2016-05-21 04:57:59 -07:00
[true, false].forEach(function(v) {
it(`should be loaded from config: ${v}`, function() {
env.shouldTestForPlatforms(this, ['win32', 'linux']);
var new_config = {};
Object.assign(new_config, config);
new_config.hideMenuBar = v;
fs.writeFileSync(env.configFilePath, JSON.stringify(new_config));
2016-06-05 08:41:35 -07:00
return this.app.restart().then(() => {
return initClient(this.app.client)
.isSelected('#inputHideMenuBar input').should.eventually.equal(v)
.browserWindow.isMenuBarAutoHide().should.eventually.equal(v);
2016-05-21 01:23:23 -07:00
});
2016-05-02 08:42:13 -07:00
});
2016-05-21 04:57:59 -07:00
});
it('should be saved as config.json', function() {
env.shouldTestForPlatforms(this, ['win32', 'linux']);
2016-06-05 08:41:35 -07:00
return this.app.restart().then(() => {
return initClient(this.app.client)
.click('#inputHideMenuBar input')
.click('#btnSave')
.pause(1000)
})
.then(() => {
const saved_config = JSON.parse(fs.readFileSync(env.configFilePath, 'utf8'));
saved_config.hideMenuBar.should.be.true;
});
2016-05-21 04:57:59 -07:00
});
2016-05-02 08:42:13 -07:00
});
describe('Allow mixed content', function() {
[true, false].forEach(function(v) {
it(`should be loaded from config: ${v}`, function() {
var new_config = {};
Object.assign(new_config, config);
new_config.disablewebsecurity = v;
fs.writeFileSync(env.configFilePath, JSON.stringify(new_config));
return this.app.restart().then(() => {
addClientCommands(this.app.client);
return this.app.client
.getAttribute('.mattermostView', 'disablewebsecurity').then((disablewebsecurity) => {
// disablewebsecurity is an array of String
disablewebsecurity.forEach((d) => {
v.toString().should.equal(d)
})
})
.loadSettingsPage()
.isSelected('#inputDisableWebSecurity input').should.eventually.equal(v);
});
});
});
[true, false].forEach(function(v) {
it(`should be saved as config.json: ${v}`, function() {
return this.app.restart().then(() => {
addClientCommands(this.app.client);
return this.app.client
.loadSettingsPage()
.isSelected('#inputDisableWebSecurity input').then((isSelected) => {
if (isSelected !== v) {
return this.app.client.click('#inputDisableWebSecurity input')
}
})
.click('#btnSave')
.pause(1000)
.then(() => {
const saved_config = JSON.parse(fs.readFileSync(env.configFilePath, 'utf8'));
saved_config.disablewebsecurity.should.equal(v);
});
});
});
});
});
2016-05-02 08:42:13 -07:00
});
2016-05-02 06:34:00 -07:00
});