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-05-23 23:12:02 +03:00
|
|
|
const {remote} = require('electron')
|
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 () {
|
|
|
|
if (window != null) {
|
|
|
|
window.destroy()
|
|
|
|
}
|
|
|
|
window = new BrowserWindow({
|
|
|
|
show: false,
|
|
|
|
width: 400,
|
|
|
|
height: 400
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
afterEach(function () {
|
|
|
|
if (window != null) {
|
|
|
|
window.destroy()
|
|
|
|
}
|
|
|
|
window = null
|
|
|
|
})
|
|
|
|
|
|
|
|
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 () {
|
|
|
|
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 () {
|
|
|
|
appProcess != null ? appProcess.kill() : void 0
|
|
|
|
})
|
|
|
|
|
|
|
|
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) {
|
|
|
|
this.timeout(100000)
|
|
|
|
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
|
|
|
|
|
|
|
this.timeout(5000)
|
|
|
|
|
|
|
|
var w = null
|
|
|
|
var certPath = path.join(__dirname, 'fixtures', 'certificates')
|
|
|
|
var 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
|
|
|
|
}
|
|
|
|
|
|
|
|
var server = https.createServer(options, function (req, res) {
|
|
|
|
if (req.client.authorized) {
|
2016-06-29 19:37:10 +03:00
|
|
|
res.writeHead(200)
|
|
|
|
res.end('authorized')
|
2016-04-18 19:23:44 +03:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
afterEach(function () {
|
|
|
|
if (w != null) {
|
|
|
|
w.destroy()
|
|
|
|
}
|
|
|
|
w = null
|
|
|
|
})
|
|
|
|
|
|
|
|
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 () {
|
|
|
|
server.close()
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
|
2016-04-18 20:27:37 +03:00
|
|
|
app.on('select-client-certificate', function (event, webContents, url, list, callback) {
|
|
|
|
assert.equal(list.length, 1)
|
|
|
|
assert.equal(list[0].issuerName, 'Intermediate CA')
|
|
|
|
callback(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-04-18 20:27:37 +03:00
|
|
|
server.listen(0, '127.0.0.1', function () {
|
|
|
|
var port = server.address().port
|
|
|
|
w.loadURL(`https://127.0.0.1:${port}`)
|
|
|
|
})
|
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-01-12 05:40:23 +03:00
|
|
|
if (w != null) {
|
2016-03-25 22:57:17 +03:00
|
|
|
w.destroy()
|
2016-01-12 05:40:23 +03:00
|
|
|
}
|
2016-03-25 22:57:17 +03:00
|
|
|
w = null
|
|
|
|
})
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
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-03-25 22:57:17 +03:00
|
|
|
})
|