2015-12-16 01:02:33 +00:00
|
|
|
// Disable use of deprecated functions.
|
2016-03-25 20:03:49 +00:00
|
|
|
process.throwDeprecation = true
|
2015-12-16 01:02:33 +00:00
|
|
|
|
2016-03-25 20:03:49 +00:00
|
|
|
const electron = require('electron')
|
|
|
|
const app = electron.app
|
2016-09-08 18:32:09 +00:00
|
|
|
const crashReporter = electron.crashReporter
|
2016-03-25 20:03:49 +00:00
|
|
|
const ipcMain = electron.ipcMain
|
|
|
|
const dialog = electron.dialog
|
|
|
|
const BrowserWindow = electron.BrowserWindow
|
2016-05-07 18:43:23 +00:00
|
|
|
const protocol = electron.protocol
|
2016-12-13 23:19:15 +00:00
|
|
|
const webContents = electron.webContents
|
2016-10-17 17:02:25 +00:00
|
|
|
const v8 = require('v8')
|
2015-11-12 10:28:04 +00:00
|
|
|
|
2016-08-03 21:12:05 +00:00
|
|
|
const Coverage = require('electabul').Coverage
|
2016-04-30 08:05:52 +00:00
|
|
|
const fs = require('fs')
|
2016-03-25 20:03:49 +00:00
|
|
|
const path = require('path')
|
|
|
|
const url = require('url')
|
2016-04-30 08:05:52 +00:00
|
|
|
const util = require('util')
|
2015-12-10 18:33:43 +00:00
|
|
|
|
|
|
|
var argv = require('yargs')
|
|
|
|
.boolean('ci')
|
|
|
|
.string('g').alias('g', 'grep')
|
2015-12-10 18:35:51 +00:00
|
|
|
.boolean('i').alias('i', 'invert')
|
2016-03-25 20:03:49 +00:00
|
|
|
.argv
|
2013-07-17 08:28:14 +00:00
|
|
|
|
2016-03-25 20:03:49 +00:00
|
|
|
var window = null
|
2016-03-28 21:00:41 +00:00
|
|
|
process.port = 0 // will be used by crash-reporter spec.
|
2013-07-17 08:28:14 +00:00
|
|
|
|
2016-10-17 09:51:20 +00:00
|
|
|
v8.setFlagsFromString('--expose_gc')
|
2016-03-25 20:03:49 +00:00
|
|
|
app.commandLine.appendSwitch('js-flags', '--expose_gc')
|
|
|
|
app.commandLine.appendSwitch('ignore-certificate-errors')
|
|
|
|
app.commandLine.appendSwitch('disable-renderer-backgrounding')
|
2013-07-29 08:35:42 +00:00
|
|
|
|
2015-09-07 13:07:27 +00:00
|
|
|
// Accessing stdout in the main process will result in the process.stdout
|
|
|
|
// throwing UnknownSystemError in renderer process sometimes. This line makes
|
|
|
|
// sure we can reproduce it in renderer process.
|
2016-03-25 20:03:49 +00:00
|
|
|
process.stdout
|
2015-09-07 13:07:27 +00:00
|
|
|
|
2016-01-26 12:26:42 +00:00
|
|
|
// Access console to reproduce #3482.
|
2016-03-25 20:03:49 +00:00
|
|
|
console
|
2016-01-26 12:26:42 +00:00
|
|
|
|
2016-08-25 16:10:37 +00:00
|
|
|
ipcMain.on('message', function (event, ...args) {
|
|
|
|
event.sender.send('message', ...args)
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
2013-07-26 07:53:00 +00:00
|
|
|
|
2016-09-08 18:32:09 +00:00
|
|
|
// Set productName so getUploadedReports() uses the right directory in specs
|
2016-10-05 21:43:20 +00:00
|
|
|
if (process.platform !== 'darwin') {
|
2016-09-08 18:32:09 +00:00
|
|
|
crashReporter.productName = 'Zombies'
|
|
|
|
}
|
|
|
|
|
2016-04-30 08:05:52 +00:00
|
|
|
// Write output to file if OUTPUT_TO_FILE is defined.
|
|
|
|
const outputToFile = process.env.OUTPUT_TO_FILE
|
|
|
|
const print = function (_, args) {
|
|
|
|
let output = util.format.apply(null, args)
|
|
|
|
if (outputToFile) {
|
|
|
|
fs.appendFileSync(outputToFile, output + '\n')
|
|
|
|
} else {
|
|
|
|
console.error(output)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ipcMain.on('console.log', print)
|
|
|
|
ipcMain.on('console.error', print)
|
2013-08-21 03:15:22 +00:00
|
|
|
|
2016-03-25 20:03:49 +00:00
|
|
|
ipcMain.on('process.exit', function (event, code) {
|
|
|
|
process.exit(code)
|
|
|
|
})
|
2013-08-21 03:15:22 +00:00
|
|
|
|
2016-03-25 20:03:49 +00:00
|
|
|
ipcMain.on('eval', function (event, script) {
|
2016-03-28 21:00:41 +00:00
|
|
|
event.returnValue = eval(script) // eslint-disable-line
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
2013-08-25 04:36:06 +00:00
|
|
|
|
2016-03-25 20:03:49 +00:00
|
|
|
ipcMain.on('echo', function (event, msg) {
|
|
|
|
event.returnValue = msg
|
|
|
|
})
|
2013-09-22 04:06:41 +00:00
|
|
|
|
2016-08-03 21:12:05 +00:00
|
|
|
const coverage = new Coverage({
|
|
|
|
outputPath: path.join(__dirname, '..', '..', 'out', 'coverage')
|
|
|
|
})
|
|
|
|
coverage.setup()
|
|
|
|
|
|
|
|
ipcMain.on('get-main-process-coverage', function (event) {
|
|
|
|
event.returnValue = global.__coverage__ || null
|
2016-08-02 17:38:51 +00:00
|
|
|
})
|
|
|
|
|
2016-03-25 20:03:49 +00:00
|
|
|
global.isCi = !!argv.ci
|
2015-12-10 18:33:18 +00:00
|
|
|
if (global.isCi) {
|
2016-03-25 20:03:49 +00:00
|
|
|
process.removeAllListeners('uncaughtException')
|
|
|
|
process.on('uncaughtException', function (error) {
|
|
|
|
console.error(error, error.stack)
|
|
|
|
process.exit(1)
|
|
|
|
})
|
2014-05-25 08:16:29 +00:00
|
|
|
}
|
2013-07-19 02:47:00 +00:00
|
|
|
|
2016-05-07 18:43:23 +00:00
|
|
|
// Register app as standard scheme.
|
|
|
|
global.standardScheme = 'app'
|
2016-11-14 16:20:04 +00:00
|
|
|
protocol.registerStandardSchemes([global.standardScheme], { secure: true })
|
2016-05-07 18:43:23 +00:00
|
|
|
|
2016-03-25 20:03:49 +00:00
|
|
|
app.on('window-all-closed', function () {
|
|
|
|
app.quit()
|
|
|
|
})
|
2013-07-19 02:47:00 +00:00
|
|
|
|
2016-03-25 20:03:49 +00:00
|
|
|
app.on('ready', function () {
|
2013-09-20 10:32:05 +00:00
|
|
|
// Test if using protocol module would crash.
|
2016-03-25 20:03:49 +00:00
|
|
|
electron.protocol.registerStringProtocol('test-if-crashes', function () {})
|
2013-09-20 10:32:05 +00:00
|
|
|
|
2016-02-03 20:53:56 +00:00
|
|
|
// Send auto updater errors to window to be verified in specs
|
|
|
|
electron.autoUpdater.on('error', function (error) {
|
2016-03-25 20:03:49 +00:00
|
|
|
window.send('auto-updater-error', error.message)
|
|
|
|
})
|
2016-02-03 20:53:56 +00:00
|
|
|
|
2013-07-17 08:28:14 +00:00
|
|
|
window = new BrowserWindow({
|
2015-04-14 07:59:45 +00:00
|
|
|
title: 'Electron Tests',
|
2016-08-17 21:25:42 +00:00
|
|
|
show: !global.isCi,
|
2013-07-17 08:28:14 +00:00
|
|
|
width: 800,
|
2014-07-21 05:08:52 +00:00
|
|
|
height: 600,
|
2016-03-16 16:24:57 +00:00
|
|
|
webPreferences: {
|
2016-06-29 16:37:10 +00:00
|
|
|
backgroundThrottling: false
|
2016-03-28 21:00:41 +00:00
|
|
|
}
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
2015-12-10 18:33:43 +00:00
|
|
|
window.loadURL(url.format({
|
2016-03-28 21:00:41 +00:00
|
|
|
pathname: path.join(__dirname, '/index.html'),
|
2015-12-10 18:33:43 +00:00
|
|
|
protocol: 'file',
|
|
|
|
query: {
|
2015-12-10 18:35:51 +00:00
|
|
|
grep: argv.grep,
|
2016-03-25 20:03:49 +00:00
|
|
|
invert: argv.invert ? 'true' : ''
|
2015-12-10 18:33:43 +00:00
|
|
|
}
|
2016-03-25 20:03:49 +00:00
|
|
|
}))
|
|
|
|
window.on('unresponsive', function () {
|
2013-11-29 07:19:30 +00:00
|
|
|
var chosen = dialog.showMessageBox(window, {
|
|
|
|
type: 'warning',
|
|
|
|
buttons: ['Close', 'Keep Waiting'],
|
|
|
|
message: 'Window is not responsing',
|
|
|
|
detail: 'The window is not responding. Would you like to force close it or just keep waiting?'
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
|
|
|
if (chosen === 0) window.destroy()
|
|
|
|
})
|
2015-09-24 07:55:45 +00:00
|
|
|
|
|
|
|
// For session's download test, listen 'will-download' event in browser, and
|
|
|
|
// reply the result to renderer for verifying
|
2016-03-25 20:03:49 +00:00
|
|
|
var downloadFilePath = path.join(__dirname, '..', 'fixtures', 'mock.pdf')
|
2016-11-24 15:16:39 +00:00
|
|
|
ipcMain.on('set-download-option', function (event, needCancel, preventDefault, filePath = downloadFilePath) {
|
2016-03-25 20:03:49 +00:00
|
|
|
window.webContents.session.once('will-download', function (e, item) {
|
2016-11-24 15:16:39 +00:00
|
|
|
window.webContents.send('download-created',
|
|
|
|
item.getState(),
|
|
|
|
item.getURLChain(),
|
|
|
|
item.getMimeType(),
|
|
|
|
item.getReceivedBytes(),
|
|
|
|
item.getTotalBytes(),
|
|
|
|
item.getFilename(),
|
|
|
|
item.getSavePath())
|
2016-06-29 16:37:10 +00:00
|
|
|
if (preventDefault) {
|
2016-03-25 20:03:49 +00:00
|
|
|
e.preventDefault()
|
|
|
|
const url = item.getURL()
|
|
|
|
const filename = item.getFilename()
|
|
|
|
setImmediate(function () {
|
2016-02-02 10:24:51 +00:00
|
|
|
try {
|
2016-03-25 20:03:49 +00:00
|
|
|
item.getURL()
|
2016-03-28 23:11:00 +00:00
|
|
|
} catch (err) {
|
2016-03-25 20:03:49 +00:00
|
|
|
window.webContents.send('download-error', url, filename, err.message)
|
2016-02-02 10:24:51 +00:00
|
|
|
}
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
2016-02-02 10:24:51 +00:00
|
|
|
} else {
|
2016-11-24 15:16:39 +00:00
|
|
|
if (item.getState() === 'interrupted' && !needCancel) {
|
|
|
|
item.resume()
|
|
|
|
} else {
|
|
|
|
item.setSavePath(filePath)
|
|
|
|
}
|
2016-03-25 20:03:49 +00:00
|
|
|
item.on('done', function (e, state) {
|
2016-02-02 10:24:51 +00:00
|
|
|
window.webContents.send('download-done',
|
2016-03-25 20:03:49 +00:00
|
|
|
state,
|
|
|
|
item.getURL(),
|
|
|
|
item.getMimeType(),
|
|
|
|
item.getReceivedBytes(),
|
|
|
|
item.getTotalBytes(),
|
|
|
|
item.getContentDisposition(),
|
2016-07-28 00:52:36 +00:00
|
|
|
item.getFilename(),
|
2016-11-24 15:16:39 +00:00
|
|
|
item.getSavePath(),
|
|
|
|
item.getURLChain(),
|
|
|
|
item.getLastModifiedTime(),
|
|
|
|
item.getETag())
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
2016-06-29 16:37:10 +00:00
|
|
|
if (needCancel) item.cancel()
|
2016-02-02 10:24:51 +00:00
|
|
|
}
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
|
|
|
event.returnValue = 'done'
|
|
|
|
})
|
2016-02-24 10:11:09 +00:00
|
|
|
|
2016-12-13 23:19:15 +00:00
|
|
|
ipcMain.on('prevent-next-input-event', (event, key, id) => {
|
|
|
|
webContents.fromId(id).once('before-input-event', (event, input) => {
|
|
|
|
if (key === input.key) event.preventDefault()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2016-03-25 20:03:49 +00:00
|
|
|
ipcMain.on('executeJavaScript', function (event, code, hasCallback) {
|
2016-02-24 10:11:09 +00:00
|
|
|
if (hasCallback) {
|
|
|
|
window.webContents.executeJavaScript(code, (result) => {
|
2016-03-25 20:03:49 +00:00
|
|
|
window.webContents.send('executeJavaScript-response', result)
|
2016-10-11 05:47:09 +00:00
|
|
|
}).then((result) => {
|
|
|
|
window.webContents.send('executeJavaScript-promise-response', result)
|
|
|
|
}).catch((err) => {
|
|
|
|
window.webContents.send('executeJavaScript-promise-error', err)
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
2016-02-24 10:11:09 +00:00
|
|
|
} else {
|
2016-03-25 20:03:49 +00:00
|
|
|
window.webContents.executeJavaScript(code)
|
|
|
|
event.returnValue = 'success'
|
2016-02-24 10:11:09 +00:00
|
|
|
}
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
|
|
|
})
|
2016-12-02 17:34:16 +00:00
|
|
|
|
|
|
|
ipcMain.on('set-client-certificate-option', function (event, skip) {
|
|
|
|
app.once('select-client-certificate', function (event, webContents, url, list, callback) {
|
|
|
|
event.preventDefault()
|
|
|
|
if (skip) {
|
|
|
|
callback()
|
|
|
|
} else {
|
2016-12-07 10:03:56 +00:00
|
|
|
ipcMain.on('client-certificate-response', function (event, certificate) {
|
|
|
|
callback(certificate)
|
|
|
|
})
|
|
|
|
window.webContents.send('select-client-certificate', webContents.id, list)
|
2016-12-02 17:34:16 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
event.returnValue = 'done'
|
|
|
|
})
|
2016-12-21 18:00:27 +00:00
|
|
|
|
|
|
|
ipcMain.on('close-on-will-navigate', (event, id) => {
|
|
|
|
const contents = event.sender
|
|
|
|
const window = BrowserWindow.fromId(id)
|
|
|
|
window.webContents.once('will-navigate', (event, input) => {
|
|
|
|
window.close()
|
|
|
|
contents.send('closed-on-will-navigate')
|
|
|
|
})
|
|
|
|
})
|
2017-01-04 22:44:14 +00:00
|
|
|
|
|
|
|
ipcMain.on('create-window-with-options-cycle', (event) => {
|
|
|
|
// This can't be done over remote since cycles are already
|
|
|
|
// nulled out at the IPC layer
|
|
|
|
const foo = {}
|
2017-01-04 22:57:51 +00:00
|
|
|
foo.bar = foo
|
2017-01-04 22:50:05 +00:00
|
|
|
foo.baz = {
|
|
|
|
hello: {
|
|
|
|
world: true
|
|
|
|
}
|
|
|
|
}
|
2017-01-04 22:54:18 +00:00
|
|
|
foo.baz2 = foo.baz
|
2017-01-04 22:44:14 +00:00
|
|
|
const window = new BrowserWindow({show: false, foo: foo})
|
|
|
|
event.returnValue = window.id
|
|
|
|
})
|
2017-01-10 23:34:29 +00:00
|
|
|
|
|
|
|
ipcMain.on('prevent-next-new-window', (event, id) => {
|
|
|
|
webContents.fromId(id).once('new-window', event => event.preventDefault())
|
|
|
|
})
|