Rearrange test directory
This commit is contained in:
120
test/specs/browser/index_test.js
Normal file
120
test/specs/browser/index_test.js
Normal file
@@ -0,0 +1,120 @@
|
||||
'use strict';
|
||||
|
||||
const should = require('should');
|
||||
const path = require('path');
|
||||
const fs = require('fs');
|
||||
|
||||
const env = require('../../modules/environment');
|
||||
|
||||
describe('browser/index.html', function() {
|
||||
this.timeout(10000);
|
||||
|
||||
const config = {
|
||||
version: 1,
|
||||
teams: [{
|
||||
name: 'example_1',
|
||||
url: env.mattermostURL + '1'
|
||||
}, {
|
||||
name: 'example_2',
|
||||
url: env.mattermostURL + '2'
|
||||
}]
|
||||
};
|
||||
|
||||
var chromedriver;
|
||||
var client;
|
||||
before(function(done) {
|
||||
chromedriver = env.spawnChromeDriver();
|
||||
client = env.getWebDriverIoClient();
|
||||
|
||||
fs.unlink(env.configFilePath, function(err) {
|
||||
// waiting for chromedriver
|
||||
setTimeout(done, 1000);
|
||||
});
|
||||
});
|
||||
|
||||
beforeEach(function() {
|
||||
fs.writeFileSync(env.configFilePath, JSON.stringify(config));
|
||||
});
|
||||
|
||||
afterEach(function() {
|
||||
return client.end();
|
||||
});
|
||||
|
||||
after(function() {
|
||||
chromedriver.kill();
|
||||
});
|
||||
|
||||
it('should NOT show tabs when there is one team', function() {
|
||||
fs.writeFileSync(env.configFilePath, JSON.stringify({
|
||||
url: env.mattermostURL
|
||||
}));
|
||||
return client
|
||||
.init()
|
||||
.isExisting('#tabBar').then(function(isExisting) {
|
||||
isExisting.should.be.false();
|
||||
})
|
||||
.end();
|
||||
});
|
||||
|
||||
it('should set src of webview from config file', function() {
|
||||
return client
|
||||
.init()
|
||||
.getAttribute('#mattermostView0', 'src').then(function(attribute) {
|
||||
attribute.should.equal(config.teams[0].url);
|
||||
})
|
||||
.getAttribute('#mattermostView1', 'src').then(function(attribute) {
|
||||
attribute.should.equal(config.teams[1].url);
|
||||
})
|
||||
.isExisting('#mattermostView2').then(function(isExisting) {
|
||||
isExisting.should.be.false();
|
||||
})
|
||||
.end();
|
||||
});
|
||||
|
||||
it('should set name of tab from config file', function() {
|
||||
return client
|
||||
.init()
|
||||
.getText('#teamTabItem0').then(function(text) {
|
||||
text.should.equal(config.teams[0].name);
|
||||
})
|
||||
.getText('#teamTabItem1').then(function(text) {
|
||||
text.should.equal(config.teams[1].name);
|
||||
})
|
||||
.isExisting('#teamTabItem2').then(function(isExisting) {
|
||||
isExisting.should.be.false();
|
||||
})
|
||||
.end();
|
||||
});
|
||||
|
||||
it('should show only the selected team', function() {
|
||||
return client
|
||||
.init()
|
||||
.pause(1000)
|
||||
.waitForVisible('#mattermostView0', 1000)
|
||||
.isVisible('#mattermostView1').then(function(visility) {
|
||||
visility.should.be.false();
|
||||
})
|
||||
.click('#teamTabItem1')
|
||||
.pause(1000)
|
||||
.waitForVisible('#mattermostView1', 1000)
|
||||
.isVisible('#mattermostView0').then(function(visility) {
|
||||
visility.should.be.false();
|
||||
})
|
||||
.end();
|
||||
});
|
||||
|
||||
it('should show error when using incorrect URL', function() {
|
||||
this.timeout(30000)
|
||||
fs.writeFileSync(env.configFilePath, JSON.stringify({
|
||||
version: 1,
|
||||
teams: [{
|
||||
name: 'error_1',
|
||||
url: 'http://false'
|
||||
}]
|
||||
}));
|
||||
return client
|
||||
.init()
|
||||
.waitForVisible('#mattermostView0-fail', 20000)
|
||||
.end();
|
||||
});
|
||||
});
|
72
test/specs/browser/settings_test.js
Normal file
72
test/specs/browser/settings_test.js
Normal file
@@ -0,0 +1,72 @@
|
||||
'use strict';
|
||||
|
||||
const should = require('should');
|
||||
const path = require('path');
|
||||
const fs = require('fs');
|
||||
|
||||
const env = require('../../modules/environment');
|
||||
|
||||
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
|
||||
}]
|
||||
};
|
||||
|
||||
var chromedriver;
|
||||
var client;
|
||||
before(function(done) {
|
||||
chromedriver = env.spawnChromeDriver();
|
||||
client = env.getWebDriverIoClient();
|
||||
|
||||
fs.unlink(env.configFilePath, function(err) {
|
||||
// waiting for chromedriver
|
||||
setTimeout(done, 1000);
|
||||
});
|
||||
});
|
||||
|
||||
beforeEach(function() {
|
||||
fs.writeFileSync(env.configFilePath, JSON.stringify(config));
|
||||
return client.init()
|
||||
.url('file://' + path.join(env.sourceRootDir, 'dist/browser/settings.html'))
|
||||
});
|
||||
|
||||
afterEach(function() {
|
||||
return client.end();
|
||||
});
|
||||
|
||||
after(function() {
|
||||
chromedriver.kill();
|
||||
});
|
||||
|
||||
it('should show index.thml when Cancel button is clicked', function() {
|
||||
return client
|
||||
.waitForExist('#btnCancel')
|
||||
.click('#btnCancel')
|
||||
.pause(1000)
|
||||
.getUrl().then(function(url) {
|
||||
var url_split = url.split('/');
|
||||
url_split[url_split.length - 1].should.equal('index.html');
|
||||
})
|
||||
.end();
|
||||
});
|
||||
|
||||
it('should show index.thml when Save button is clicked', function() {
|
||||
return client
|
||||
.waitForExist('#btnSave')
|
||||
.click('#btnSave')
|
||||
.pause(1000)
|
||||
.getUrl().then(function(url) {
|
||||
var url_split = url.split('/');
|
||||
url_split[url_split.length - 1].should.equal('index.html');
|
||||
})
|
||||
.end();
|
||||
});
|
||||
});
|
Reference in New Issue
Block a user