Use Spectron to execute test
This commit is contained in:
@@ -20,15 +20,10 @@ describe('browser/index.html', function() {
|
||||
}]
|
||||
};
|
||||
|
||||
var chromedriver;
|
||||
var client;
|
||||
before(function(done) {
|
||||
chromedriver = env.spawnChromeDriver();
|
||||
client = env.getWebDriverIoClient();
|
||||
|
||||
this.app = env.getSpectronApp();
|
||||
fs.unlink(env.configFilePath, function(err) {
|
||||
// waiting for chromedriver
|
||||
setTimeout(done, 1000);
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
@@ -37,70 +32,72 @@ describe('browser/index.html', function() {
|
||||
});
|
||||
|
||||
afterEach(function() {
|
||||
return client.end();
|
||||
});
|
||||
|
||||
after(function() {
|
||||
chromedriver.kill();
|
||||
if (this.app && this.app.isRunning()) {
|
||||
return this.app.stop()
|
||||
}
|
||||
});
|
||||
|
||||
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();
|
||||
return this.app.start().then(() => {
|
||||
this.app.client
|
||||
.init()
|
||||
.isExisting('#tabBar').then(function(isExisting) {
|
||||
isExisting.should.be.false();
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
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();
|
||||
return this.app.start().then(() => {
|
||||
this.app.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();
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
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();
|
||||
return this.app.start().then(() => {
|
||||
this.app.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();
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
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();
|
||||
return this.app.start().then(() => {
|
||||
this.app.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();
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
it('should show error when using incorrect URL', function() {
|
||||
@@ -112,9 +109,10 @@ describe('browser/index.html', function() {
|
||||
url: 'http://false'
|
||||
}]
|
||||
}));
|
||||
return client
|
||||
.init()
|
||||
.waitForVisible('#mattermostView0-fail', 20000)
|
||||
.end();
|
||||
return this.app.start().then(() => {
|
||||
this.app.client
|
||||
.init()
|
||||
.waitForVisible('#mattermostView0-fail', 20000)
|
||||
});
|
||||
});
|
||||
});
|
||||
|
@@ -29,12 +29,9 @@ describe('browser/settings.html', function() {
|
||||
var chromedriver;
|
||||
var client;
|
||||
before(function(done) {
|
||||
chromedriver = env.spawnChromeDriver();
|
||||
client = env.getWebDriverIoClient();
|
||||
|
||||
this.app = env.getSpectronApp();
|
||||
fs.unlink(env.configFilePath, function(err) {
|
||||
// waiting for chromedriver
|
||||
setTimeout(done, 1000);
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
@@ -43,50 +40,51 @@ describe('browser/settings.html', function() {
|
||||
});
|
||||
|
||||
afterEach(function() {
|
||||
return client.end();
|
||||
});
|
||||
|
||||
after(function() {
|
||||
chromedriver.kill();
|
||||
if (this.app && this.app.isRunning()) {
|
||||
return this.app.stop()
|
||||
}
|
||||
});
|
||||
|
||||
it('should show index.thml when Cancel button is clicked', function() {
|
||||
return initClient(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();
|
||||
return this.app.start().then(() => {
|
||||
initClient(this.app.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');
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
it('should show index.thml when Save button is clicked', function() {
|
||||
return initClient(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();
|
||||
return this.app.start().then(() => {
|
||||
initClient(this.app.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');
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
describe('Options', function() {
|
||||
describe('Hide Menu Bar', function() {
|
||||
it('should appear on win32 or linux', function() {
|
||||
return initClient(client)
|
||||
.isExisting('#inputHideMenuBar').then(function(isExisting) {
|
||||
if (process.platform === 'win32' || process.platform === 'linux') {
|
||||
isExisting.should.be.true();
|
||||
}
|
||||
else {
|
||||
isExisting.should.be.false();
|
||||
}
|
||||
})
|
||||
.end();
|
||||
return this.app.start().then(() => {
|
||||
initClient(this.app.client)
|
||||
.isExisting('#inputHideMenuBar').then(function(isExisting) {
|
||||
if (process.platform === 'win32' || process.platform === 'linux') {
|
||||
isExisting.should.be.true();
|
||||
}
|
||||
else {
|
||||
isExisting.should.be.false();
|
||||
}
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
if (process.platform === 'win32' || process.platform === 'linux') {
|
||||
@@ -96,24 +94,26 @@ describe('browser/settings.html', function() {
|
||||
Object.assign(new_config, config);
|
||||
new_config.hideMenuBar = v;
|
||||
fs.writeFileSync(env.configFilePath, JSON.stringify(new_config));
|
||||
return initClient(client)
|
||||
.isSelected('#inputHideMenuBar input').then(function(value) {
|
||||
value.should.equal(v);
|
||||
})
|
||||
.end();
|
||||
return this.app.start().then(() => {
|
||||
initClient(this.app.client)
|
||||
.isSelected('#inputHideMenuBar input').then(function(value) {
|
||||
value.should.equal(v);
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
it('should be saved as config.json', function() {
|
||||
return initClient(client)
|
||||
.click('#inputHideMenuBar input')
|
||||
.click('#btnSave')
|
||||
.pause(1000)
|
||||
.then(function() {
|
||||
const saved_config = JSON.parse(fs.readFileSync(env.configFilePath, 'utf8'));
|
||||
saved_config.hideMenuBar.should.be.true();
|
||||
})
|
||||
.end();
|
||||
return this.app.start().then(() => {
|
||||
initClient(this.app.client)
|
||||
.click('#inputHideMenuBar input')
|
||||
.click('#btnSave')
|
||||
.pause(1000)
|
||||
.then(function() {
|
||||
const saved_config = JSON.parse(fs.readFileSync(env.configFilePath, 'utf8'));
|
||||
saved_config.hideMenuBar.should.be.true();
|
||||
});
|
||||
});
|
||||
});
|
||||
}
|
||||
});
|
||||
|
Reference in New Issue
Block a user