2016-03-25 22:57:17 +03:00
|
|
|
const assert = require('assert')
|
|
|
|
const ChildProcess = require('child_process')
|
2016-04-18 19:23:44 +03:00
|
|
|
const https = require('https')
|
2016-06-03 06:12:20 +03:00
|
|
|
const net = require('net')
|
2016-04-18 19:23:44 +03:00
|
|
|
const fs = require('fs')
|
2016-03-25 22:57:17 +03:00
|
|
|
const path = require('path')
|
2016-12-02 20:34:16 +03:00
|
|
|
const {ipcRenderer, remote} = require('electron')
|
2016-08-03 22:47:53 +03:00
|
|
|
const {closeWindow} = require('./window-helpers')
|
2016-03-25 22:57:17 +03:00
|
|
|
|
2016-05-23 23:12:02 +03:00
|
|
|
const {app, BrowserWindow, ipcMain} = remote
|
2016-03-25 22:57:17 +03:00
|
|
|
|
|
|
|
describe('electron module', function () {
|
2016-04-28 21:21:52 +03:00
|
|
|
it('does not expose internal modules to require', function () {
|
2016-04-28 19:58:59 +03:00
|
|
|
assert.throws(function () {
|
2016-03-25 22:57:17 +03:00
|
|
|
require('clipboard')
|
2016-04-28 19:58:59 +03:00
|
|
|
}, /Cannot find module 'clipboard'/)
|
2016-03-25 22:57:17 +03:00
|
|
|
})
|
2016-05-23 23:12:02 +03:00
|
|
|
|
|
|
|
describe('require("electron")', function () {
|
|
|
|
let window = null
|
|
|
|
|
|
|
|
beforeEach(function () {
|
|
|
|
window = new BrowserWindow({
|
|
|
|
show: false,
|
|
|
|
width: 400,
|
|
|
|
height: 400
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
afterEach(function () {
|
2016-08-03 22:47:53 +03:00
|
|
|
return closeWindow(window).then(function () { window = null })
|
2016-05-23 23:12:02 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
it('always returns the internal electron module', function (done) {
|
|
|
|
ipcMain.once('answer', function () {
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
window.loadURL('file://' + path.join(__dirname, 'fixtures', 'api', 'electron-module-app', 'index.html'))
|
|
|
|
})
|
|
|
|
})
|
2016-03-25 22:57:17 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
describe('app module', function () {
|
2016-12-02 20:34:16 +03:00
|
|
|
let server, secureUrl
|
|
|
|
const certPath = path.join(__dirname, 'fixtures', 'certificates')
|
|
|
|
|
|
|
|
before(function () {
|
|
|
|
const options = {
|
|
|
|
key: fs.readFileSync(path.join(certPath, 'server.key')),
|
|
|
|
cert: fs.readFileSync(path.join(certPath, 'server.pem')),
|
|
|
|
ca: [
|
|
|
|
fs.readFileSync(path.join(certPath, 'rootCA.pem')),
|
|
|
|
fs.readFileSync(path.join(certPath, 'intermediateCA.pem'))
|
|
|
|
],
|
|
|
|
requestCert: true,
|
|
|
|
rejectUnauthorized: false
|
|
|
|
}
|
|
|
|
|
|
|
|
server = https.createServer(options, function (req, res) {
|
|
|
|
if (req.client.authorized) {
|
|
|
|
res.writeHead(200)
|
|
|
|
res.end('<title>authorized</title>')
|
|
|
|
} else {
|
|
|
|
res.writeHead(401)
|
|
|
|
res.end('<title>denied</title>')
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
server.listen(0, '127.0.0.1', function () {
|
|
|
|
const port = server.address().port
|
|
|
|
secureUrl = `https://127.0.0.1:${port}`
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
after(function () {
|
|
|
|
server.close()
|
|
|
|
})
|
|
|
|
|
2016-03-25 22:57:17 +03:00
|
|
|
describe('app.getVersion()', function () {
|
|
|
|
it('returns the version field of package.json', function () {
|
|
|
|
assert.equal(app.getVersion(), '0.1.0')
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('app.setVersion(version)', function () {
|
|
|
|
it('overrides the version', function () {
|
|
|
|
assert.equal(app.getVersion(), '0.1.0')
|
|
|
|
app.setVersion('test-version')
|
|
|
|
assert.equal(app.getVersion(), 'test-version')
|
|
|
|
app.setVersion('0.1.0')
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('app.getName()', function () {
|
|
|
|
it('returns the name field of package.json', function () {
|
|
|
|
assert.equal(app.getName(), 'Electron Test')
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('app.setName(name)', function () {
|
|
|
|
it('overrides the name', function () {
|
|
|
|
assert.equal(app.getName(), 'Electron Test')
|
|
|
|
app.setName('test-name')
|
|
|
|
assert.equal(app.getName(), 'test-name')
|
|
|
|
app.setName('Electron Test')
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('app.getLocale()', function () {
|
|
|
|
it('should not be empty', function () {
|
|
|
|
assert.notEqual(app.getLocale(), '')
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('app.exit(exitCode)', function () {
|
|
|
|
var appProcess = null
|
|
|
|
|
|
|
|
afterEach(function () {
|
2016-11-30 01:19:20 +03:00
|
|
|
if (appProcess != null) appProcess.kill()
|
2016-03-25 22:57:17 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
it('emits a process exit event with the code', function (done) {
|
|
|
|
var appPath = path.join(__dirname, 'fixtures', 'api', 'quit-app')
|
|
|
|
var electronPath = remote.getGlobal('process').execPath
|
|
|
|
var output = ''
|
|
|
|
appProcess = ChildProcess.spawn(electronPath, [appPath])
|
|
|
|
appProcess.stdout.on('data', function (data) {
|
|
|
|
output += data
|
|
|
|
})
|
|
|
|
appProcess.on('close', function (code) {
|
2016-01-12 05:40:23 +03:00
|
|
|
if (process.platform !== 'win32') {
|
2016-03-25 22:57:17 +03:00
|
|
|
assert.notEqual(output.indexOf('Exit event with code: 123'), -1)
|
2016-01-12 05:40:23 +03:00
|
|
|
}
|
2016-03-25 22:57:17 +03:00
|
|
|
assert.equal(code, 123)
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
2016-02-17 04:09:41 +03:00
|
|
|
|
2016-06-03 06:12:20 +03:00
|
|
|
describe('app.relaunch', function () {
|
|
|
|
let server = null
|
2016-06-29 19:37:10 +03:00
|
|
|
const socketPath = process.platform === 'win32' ? '\\\\.\\pipe\\electron-app-relaunch' : '/tmp/electron-app-relaunch'
|
2016-06-03 06:12:20 +03:00
|
|
|
|
|
|
|
beforeEach(function (done) {
|
2016-06-29 19:37:10 +03:00
|
|
|
fs.unlink(socketPath, () => {
|
2016-06-03 06:12:20 +03:00
|
|
|
server = net.createServer()
|
|
|
|
server.listen(socketPath)
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
afterEach(function (done) {
|
|
|
|
server.close(() => {
|
|
|
|
if (process.platform === 'win32') {
|
|
|
|
done()
|
|
|
|
} else {
|
2016-06-29 19:37:10 +03:00
|
|
|
fs.unlink(socketPath, () => {
|
2016-06-03 06:12:20 +03:00
|
|
|
done()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
it('relaunches the app', function (done) {
|
2016-11-30 01:31:57 +03:00
|
|
|
this.timeout(120000)
|
|
|
|
|
2016-06-03 06:12:20 +03:00
|
|
|
let state = 'none'
|
|
|
|
server.once('error', (error) => {
|
|
|
|
done(error)
|
|
|
|
})
|
|
|
|
server.on('connection', (client) => {
|
|
|
|
client.once('data', function (data) {
|
|
|
|
if (String(data) === 'false' && state === 'none') {
|
|
|
|
state = 'first-launch'
|
|
|
|
} else if (String(data) === 'true' && state === 'first-launch') {
|
|
|
|
done()
|
|
|
|
} else {
|
|
|
|
done(`Unexpected state: ${state}`)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
const appPath = path.join(__dirname, 'fixtures', 'api', 'relaunch')
|
|
|
|
ChildProcess.spawn(remote.process.execPath, [appPath])
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2016-05-04 01:51:31 +03:00
|
|
|
describe('app.setUserActivity(type, userInfo)', function () {
|
2016-05-05 06:27:25 +03:00
|
|
|
if (process.platform !== 'darwin') {
|
2016-05-04 09:33:40 +03:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-05-04 01:51:31 +03:00
|
|
|
it('sets the current activity', function () {
|
2016-06-29 19:37:10 +03:00
|
|
|
app.setUserActivity('com.electron.testActivity', {testData: '123'})
|
|
|
|
assert.equal(app.getCurrentActivityType(), 'com.electron.testActivity')
|
2016-05-04 01:51:31 +03:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2016-04-20 06:15:49 +03:00
|
|
|
describe('app.importCertificate', function () {
|
2016-06-29 19:37:10 +03:00
|
|
|
if (process.platform !== 'linux') return
|
2016-04-18 19:23:44 +03:00
|
|
|
|
|
|
|
var w = null
|
|
|
|
|
|
|
|
afterEach(function () {
|
2016-08-03 22:47:53 +03:00
|
|
|
return closeWindow(w).then(function () { w = null })
|
2016-04-18 19:23:44 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
it('can import certificate into platform cert store', function (done) {
|
|
|
|
let options = {
|
2016-04-20 06:15:49 +03:00
|
|
|
certificate: path.join(certPath, 'client.p12'),
|
2016-04-18 19:23:44 +03:00
|
|
|
password: 'electron'
|
|
|
|
}
|
|
|
|
|
|
|
|
w = new BrowserWindow({
|
|
|
|
show: false
|
|
|
|
})
|
|
|
|
|
|
|
|
w.webContents.on('did-finish-load', function () {
|
2016-12-02 20:34:16 +03:00
|
|
|
assert.equal(w.webContents.getTitle(), 'authorized')
|
2016-04-18 19:23:44 +03:00
|
|
|
done()
|
|
|
|
})
|
|
|
|
|
2016-12-07 13:03:56 +03:00
|
|
|
ipcRenderer.once('select-client-certificate', function (event, webContentsId, list) {
|
|
|
|
assert.equal(webContentsId, w.webContents.id)
|
|
|
|
assert.equal(list.length, 1)
|
|
|
|
assert.equal(list[0].issuerName, 'Intermediate CA')
|
|
|
|
assert.equal(list[0].subjectName, 'Client Cert')
|
|
|
|
assert.equal(list[0].issuer.commonName, 'Intermediate CA')
|
|
|
|
assert.equal(list[0].subject.commonName, 'Client Cert')
|
|
|
|
event.sender.send('client-certificate-response', list[0])
|
|
|
|
})
|
|
|
|
|
2016-04-20 06:15:49 +03:00
|
|
|
app.importCertificate(options, function (result) {
|
2016-04-18 19:23:44 +03:00
|
|
|
assert(!result)
|
2016-12-02 20:34:16 +03:00
|
|
|
ipcRenderer.sendSync('set-client-certificate-option', false)
|
|
|
|
w.loadURL(secureUrl)
|
2016-04-18 19:23:44 +03:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2016-03-25 22:57:17 +03:00
|
|
|
describe('BrowserWindow events', function () {
|
|
|
|
var w = null
|
2016-02-17 04:09:41 +03:00
|
|
|
|
2016-03-25 22:57:17 +03:00
|
|
|
afterEach(function () {
|
2016-08-03 22:47:53 +03:00
|
|
|
return closeWindow(w).then(function () { w = null })
|
2016-03-25 22:57:17 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
it('should emit browser-window-focus event when window is focused', function (done) {
|
|
|
|
app.once('browser-window-focus', function (e, window) {
|
|
|
|
assert.equal(w.id, window.id)
|
|
|
|
done()
|
|
|
|
})
|
2016-01-12 05:40:23 +03:00
|
|
|
w = new BrowserWindow({
|
|
|
|
show: false
|
2016-03-25 22:57:17 +03:00
|
|
|
})
|
|
|
|
w.emit('focus')
|
|
|
|
})
|
|
|
|
|
|
|
|
it('should emit browser-window-blur event when window is blured', function (done) {
|
|
|
|
app.once('browser-window-blur', function (e, window) {
|
|
|
|
assert.equal(w.id, window.id)
|
|
|
|
done()
|
|
|
|
})
|
2016-01-12 05:40:23 +03:00
|
|
|
w = new BrowserWindow({
|
|
|
|
show: false
|
2016-03-25 22:57:17 +03:00
|
|
|
})
|
|
|
|
w.emit('blur')
|
|
|
|
})
|
|
|
|
|
|
|
|
it('should emit browser-window-created event when window is created', function (done) {
|
|
|
|
app.once('browser-window-created', function (e, window) {
|
|
|
|
setImmediate(function () {
|
|
|
|
assert.equal(w.id, window.id)
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
})
|
2016-01-12 05:40:23 +03:00
|
|
|
w = new BrowserWindow({
|
|
|
|
show: false
|
2016-03-25 22:57:17 +03:00
|
|
|
})
|
2016-06-13 19:05:04 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
it('should emit web-contents-created event when a webContents is created', function (done) {
|
|
|
|
app.once('web-contents-created', function (e, webContents) {
|
|
|
|
setImmediate(function () {
|
|
|
|
assert.equal(w.webContents.id, webContents.id)
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
w = new BrowserWindow({
|
|
|
|
show: false
|
|
|
|
})
|
2016-03-25 22:57:17 +03:00
|
|
|
})
|
|
|
|
})
|
2016-06-29 20:47:20 +03:00
|
|
|
|
2016-07-01 16:18:39 +03:00
|
|
|
describe('app.setBadgeCount API', function () {
|
|
|
|
const shouldFail = process.platform === 'win32' ||
|
2016-07-02 04:36:11 +03:00
|
|
|
(process.platform === 'linux' && !app.isUnityRunning())
|
2016-07-01 16:18:39 +03:00
|
|
|
|
2016-10-06 20:29:55 +03:00
|
|
|
afterEach(function () {
|
|
|
|
app.setBadgeCount(0)
|
|
|
|
})
|
|
|
|
|
2016-07-01 16:18:39 +03:00
|
|
|
it('returns false when failed', function () {
|
|
|
|
assert.equal(app.setBadgeCount(42), !shouldFail)
|
|
|
|
})
|
|
|
|
|
2016-07-01 11:39:01 +03:00
|
|
|
it('should set a badge count', function () {
|
|
|
|
app.setBadgeCount(42)
|
2016-07-01 16:18:39 +03:00
|
|
|
assert.equal(app.getBadgeCount(), shouldFail ? 0 : 42)
|
2016-06-29 20:47:20 +03:00
|
|
|
})
|
|
|
|
})
|
2016-07-06 23:34:14 +03:00
|
|
|
|
2016-07-08 02:29:09 +03:00
|
|
|
describe('app.get/setLoginItemSettings API', function () {
|
2016-07-11 22:30:40 +03:00
|
|
|
if (process.platform === 'linux') return
|
2016-07-06 23:34:14 +03:00
|
|
|
|
2016-07-06 23:57:20 +03:00
|
|
|
beforeEach(function () {
|
2016-07-08 02:29:09 +03:00
|
|
|
app.setLoginItemSettings({openAtLogin: false})
|
2016-07-06 23:57:20 +03:00
|
|
|
})
|
|
|
|
|
2016-07-06 23:34:14 +03:00
|
|
|
afterEach(function () {
|
2016-07-08 02:29:09 +03:00
|
|
|
app.setLoginItemSettings({openAtLogin: false})
|
2016-07-06 23:34:14 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
it('returns the login item status of the app', function () {
|
2016-07-08 02:29:09 +03:00
|
|
|
app.setLoginItemSettings({openAtLogin: true})
|
|
|
|
assert.deepEqual(app.getLoginItemSettings(), {
|
|
|
|
openAtLogin: true,
|
|
|
|
openAsHidden: false,
|
2016-07-08 02:29:58 +03:00
|
|
|
wasOpenedAtLogin: false,
|
|
|
|
wasOpenedAsHidden: false,
|
2016-07-08 02:29:09 +03:00
|
|
|
restoreState: false
|
|
|
|
})
|
|
|
|
|
|
|
|
app.setLoginItemSettings({openAtLogin: true, openAsHidden: true})
|
|
|
|
assert.deepEqual(app.getLoginItemSettings(), {
|
|
|
|
openAtLogin: true,
|
2016-07-11 22:30:40 +03:00
|
|
|
openAsHidden: process.platform === 'darwin', // Only available on macOS
|
2016-07-08 02:29:58 +03:00
|
|
|
wasOpenedAtLogin: false,
|
|
|
|
wasOpenedAsHidden: false,
|
2016-07-08 02:29:09 +03:00
|
|
|
restoreState: false
|
|
|
|
})
|
2016-07-06 23:34:14 +03:00
|
|
|
|
2016-07-08 02:29:09 +03:00
|
|
|
app.setLoginItemSettings({})
|
|
|
|
assert.deepEqual(app.getLoginItemSettings(), {
|
|
|
|
openAtLogin: false,
|
|
|
|
openAsHidden: false,
|
2016-07-08 02:29:58 +03:00
|
|
|
wasOpenedAtLogin: false,
|
|
|
|
wasOpenedAsHidden: false,
|
2016-07-08 02:29:09 +03:00
|
|
|
restoreState: false
|
|
|
|
})
|
2016-07-06 23:34:14 +03:00
|
|
|
})
|
2017-01-26 23:24:33 +03:00
|
|
|
|
|
|
|
it('allows you to pass a custom executable and arguments', () => {
|
|
|
|
if (process.platform !== 'win32') return
|
|
|
|
|
|
|
|
const appFolder = path.dirname(process.execPath)
|
|
|
|
const updateExe = path.resolve(appFolder, '..', 'Update.exe')
|
|
|
|
const exeName = path.basename(process.execPath)
|
|
|
|
|
|
|
|
app.setLoginItemSettings({openAtLogin: true}, updateExe, [
|
|
|
|
'--processStart', `"${exeName}"`,
|
|
|
|
'--process-start-args', `"--hidden"`
|
|
|
|
])
|
|
|
|
|
|
|
|
assert.deepEqual(app.getLoginItemSettings(), {
|
|
|
|
openAtLogin: true,
|
|
|
|
openAsHidden: false,
|
|
|
|
wasOpenedAtLogin: false,
|
|
|
|
wasOpenedAsHidden: false,
|
|
|
|
restoreState: false
|
|
|
|
})
|
|
|
|
})
|
2016-07-06 23:34:14 +03:00
|
|
|
})
|
2016-07-12 00:32:24 +03:00
|
|
|
|
|
|
|
describe('isAccessibilitySupportEnabled API', function () {
|
|
|
|
it('returns whether the Chrome has accessibility APIs enabled', function () {
|
2016-07-12 00:48:48 +03:00
|
|
|
assert.equal(typeof app.isAccessibilitySupportEnabled(), 'boolean')
|
2016-07-12 00:32:24 +03:00
|
|
|
})
|
|
|
|
})
|
2016-10-06 19:57:25 +03:00
|
|
|
|
|
|
|
describe('getPath(name)', function () {
|
|
|
|
it('returns paths that exist', function () {
|
|
|
|
assert.equal(fs.existsSync(app.getPath('exe')), true)
|
|
|
|
assert.equal(fs.existsSync(app.getPath('home')), true)
|
|
|
|
assert.equal(fs.existsSync(app.getPath('temp')), true)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('throws an error when the name is invalid', function () {
|
|
|
|
assert.throws(function () {
|
|
|
|
app.getPath('does-not-exist')
|
|
|
|
}, /Failed to get 'does-not-exist' path/)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('returns the overridden path', function () {
|
|
|
|
app.setPath('music', __dirname)
|
|
|
|
assert.equal(app.getPath('music'), __dirname)
|
|
|
|
})
|
|
|
|
})
|
2016-12-02 20:34:16 +03:00
|
|
|
|
|
|
|
describe('select-client-certificate event', function () {
|
|
|
|
let w = null
|
|
|
|
|
|
|
|
beforeEach(function () {
|
|
|
|
w = new BrowserWindow({
|
|
|
|
show: false,
|
|
|
|
webPreferences: {
|
|
|
|
partition: 'empty-certificate'
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
afterEach(function () {
|
|
|
|
return closeWindow(w).then(function () { w = null })
|
|
|
|
})
|
|
|
|
|
|
|
|
it('can respond with empty certificate list', function (done) {
|
|
|
|
w.webContents.on('did-finish-load', function () {
|
|
|
|
assert.equal(w.webContents.getTitle(), 'denied')
|
|
|
|
server.close()
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
|
|
|
|
ipcRenderer.sendSync('set-client-certificate-option', true)
|
|
|
|
w.webContents.loadURL(secureUrl)
|
|
|
|
})
|
|
|
|
})
|
2017-02-02 19:11:34 +03:00
|
|
|
|
|
|
|
describe('setAsDefaultProtocolClient(protocol, path, args)', () => {
|
|
|
|
if (process.platform !== 'win32') return
|
|
|
|
|
2017-02-02 19:41:14 +03:00
|
|
|
const protocol = 'electron-test'
|
2017-02-02 19:11:34 +03:00
|
|
|
const updateExe = path.resolve(path.dirname(process.execPath), '..', 'Update.exe')
|
|
|
|
const processStartArgs = [
|
|
|
|
'--processStart', `"${path.basename(process.execPath)}"`,
|
|
|
|
'--process-start-args', `"--hidden"`
|
|
|
|
]
|
|
|
|
|
|
|
|
beforeEach(() => {
|
2017-02-02 19:41:14 +03:00
|
|
|
app.removeAsDefaultProtocolClient(protocol)
|
|
|
|
app.removeAsDefaultProtocolClient(protocol, updateExe, processStartArgs)
|
2017-02-02 19:11:34 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
afterEach(() => {
|
2017-02-02 19:41:14 +03:00
|
|
|
app.removeAsDefaultProtocolClient(protocol)
|
|
|
|
assert.equal(app.isDefaultProtocolClient(protocol), false)
|
|
|
|
app.removeAsDefaultProtocolClient(protocol, updateExe, processStartArgs)
|
|
|
|
assert.equal(app.isDefaultProtocolClient(protocol, updateExe, processStartArgs), false)
|
2017-02-02 19:11:34 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
it('sets the app as the default protocol client', () => {
|
2017-02-02 19:41:14 +03:00
|
|
|
assert.equal(app.isDefaultProtocolClient(protocol), false)
|
|
|
|
app.setAsDefaultProtocolClient(protocol)
|
|
|
|
assert.equal(app.isDefaultProtocolClient(protocol), true)
|
2017-02-02 19:11:34 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
it('allows a custom path and args to be specified', () => {
|
2017-02-02 19:41:14 +03:00
|
|
|
assert.equal(app.isDefaultProtocolClient(protocol, updateExe, processStartArgs), false)
|
|
|
|
app.setAsDefaultProtocolClient(protocol, updateExe, processStartArgs)
|
|
|
|
assert.equal(app.isDefaultProtocolClient(protocol, updateExe, processStartArgs), true)
|
|
|
|
assert.equal(app.isDefaultProtocolClient(protocol), false)
|
2017-02-02 19:11:34 +03:00
|
|
|
})
|
|
|
|
})
|
2016-03-25 22:57:17 +03:00
|
|
|
})
|