Rewrite tests with chai-as-promised

This commit is contained in:
Yuya Ochiai
2016-06-06 00:41:35 +09:00
parent 29c53aa992
commit e9f8140594
6 changed files with 83 additions and 146 deletions

View File

@@ -1,6 +1,5 @@
'use strict';
const should = require('should');
const path = require('path');
const fs = require('fs');
@@ -8,8 +7,8 @@ const env = require('../../modules/environment');
function initClient(client) {
return client
.init()
.url('file://' + path.join(env.sourceRootDir, 'dist/browser/settings.html'));
.url('file://' + path.join(env.sourceRootDir, 'dist/browser/settings.html'))
.waitUntilWindowLoaded();
}
describe('browser/settings.html', function() {
@@ -26,17 +25,10 @@ describe('browser/settings.html', function() {
}]
};
var chromedriver;
var client;
before(function(done) {
this.app = env.getSpectronApp();
fs.unlink(env.configFilePath, function(err) {
done();
});
});
beforeEach(function() {
fs.writeFileSync(env.configFilePath, JSON.stringify(config));
this.app = env.getSpectronApp();
return this.app.start();
});
afterEach(function() {
@@ -46,45 +38,25 @@ describe('browser/settings.html', function() {
});
it('should show index.thml when Cancel button is clicked', function() {
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');
});
});
return initClient(this.app.client)
.click('#btnCancel')
.pause(1000)
.getUrl().should.eventually.match(/\/index.html$/)
});
it('should show index.thml when Save button is clicked', function() {
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');
});
});
return initClient(this.app.client)
.click('#btnSave')
.pause(1000)
.getUrl().should.eventually.match(/\/index.html$/)
});
describe('Options', function() {
describe('Hide Menu Bar', function() {
it('should appear on win32 or linux', function() {
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();
}
});
});
const expected = (process.platform === 'win32' || process.platform === 'linux');
return initClient(this.app.client)
.isExisting('#inputHideMenuBar').should.eventually.equal(expected)
});
[true, false].forEach(function(v) {
@@ -94,28 +66,26 @@ describe('browser/settings.html', function() {
Object.assign(new_config, config);
new_config.hideMenuBar = v;
fs.writeFileSync(env.configFilePath, JSON.stringify(new_config));
return this.app.start().then(() => {
initClient(this.app.client)
.isSelected('#inputHideMenuBar input').then(function(value) {
value.should.equal(v);
this.app.browserWindow.isMenuBarAutoHide().should.equal(v);
});
return this.app.restart().then(() => {
return initClient(this.app.client)
.isSelected('#inputHideMenuBar input').should.eventually.equal(v)
.browserWindow.isMenuBarAutoHide().should.eventually.equal(v);
});
});
});
it('should be saved as config.json', function() {
env.shouldTestForPlatforms(this, ['win32', 'linux']);
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();
});
});
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;
});
});
});
});