2016-12-02 01:15:05 +03:00
|
|
|
const assert = require('assert')
|
|
|
|
const {dialog} = require('electron').remote
|
|
|
|
|
|
|
|
describe('dialog module', () => {
|
|
|
|
describe('showOpenDialog', () => {
|
|
|
|
it('throws errors when the options are invalid', () => {
|
|
|
|
assert.throws(() => {
|
|
|
|
dialog.showOpenDialog({properties: false})
|
|
|
|
}, /Properties must be an array/)
|
|
|
|
|
|
|
|
assert.throws(() => {
|
|
|
|
dialog.showOpenDialog({title: 300})
|
|
|
|
}, /Title must be a string/)
|
|
|
|
|
|
|
|
assert.throws(() => {
|
|
|
|
dialog.showOpenDialog({buttonLabel: []})
|
2016-12-02 01:16:33 +03:00
|
|
|
}, /Button label must be a string/)
|
2016-12-02 01:15:05 +03:00
|
|
|
|
|
|
|
assert.throws(() => {
|
|
|
|
dialog.showOpenDialog({defaultPath: {}})
|
|
|
|
}, /Default path must be a string/)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('showSaveDialog', () => {
|
|
|
|
it('throws errors when the options are invalid', () => {
|
|
|
|
assert.throws(() => {
|
|
|
|
dialog.showSaveDialog({title: 300})
|
|
|
|
}, /Title must be a string/)
|
|
|
|
|
|
|
|
assert.throws(() => {
|
|
|
|
dialog.showSaveDialog({buttonLabel: []})
|
2016-12-02 01:16:33 +03:00
|
|
|
}, /Button label must be a string/)
|
2016-12-02 01:15:05 +03:00
|
|
|
|
|
|
|
assert.throws(() => {
|
|
|
|
dialog.showSaveDialog({defaultPath: {}})
|
|
|
|
}, /Default path must be a string/)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('showMessageBox', () => {
|
|
|
|
it('throws errors when the options are invalid', () => {
|
|
|
|
assert.throws(() => {
|
|
|
|
dialog.showMessageBox({type: 'not-a-valid-type'})
|
|
|
|
}, /Invalid message box type/)
|
|
|
|
|
|
|
|
assert.throws(() => {
|
|
|
|
dialog.showMessageBox({buttons: false})
|
|
|
|
}, /Buttons must be an array/)
|
|
|
|
|
|
|
|
assert.throws(() => {
|
2016-12-12 21:05:01 +03:00
|
|
|
dialog.showMessageBox({title: 300})
|
2016-12-02 01:15:05 +03:00
|
|
|
}, /Title must be a string/)
|
|
|
|
|
|
|
|
assert.throws(() => {
|
2016-12-12 21:05:01 +03:00
|
|
|
dialog.showMessageBox({message: []})
|
2016-12-02 01:15:05 +03:00
|
|
|
}, /Message must be a string/)
|
|
|
|
|
|
|
|
assert.throws(() => {
|
2016-12-12 21:05:01 +03:00
|
|
|
dialog.showMessageBox({detail: 3.14})
|
2016-12-02 01:15:05 +03:00
|
|
|
}, /Detail must be a string/)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('showErrorBox', () => {
|
|
|
|
it('throws errors when the options are invalid', () => {
|
|
|
|
assert.throws(() => {
|
|
|
|
dialog.showErrorBox()
|
|
|
|
}, /Insufficient number of arguments/)
|
|
|
|
|
|
|
|
assert.throws(() => {
|
|
|
|
dialog.showErrorBox(3, 'four')
|
|
|
|
}, /Error processing argument at index 0/)
|
|
|
|
|
|
|
|
assert.throws(() => {
|
|
|
|
dialog.showErrorBox('three', 4)
|
|
|
|
}, /Error processing argument at index 1/)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|