electron/spec/static/main.js

188 lines
5.5 KiB
JavaScript
Raw Normal View History

// Deprecated APIs are still supported and should be tested.
process.throwDeprecation = false
2016-03-25 20:03:49 +00:00
const electron = require('electron')
const { app, BrowserWindow, crashReporter, dialog, ipcMain, protocol, webContents, session } = electron
try {
require('fs').rmdirSync(app.getPath('userData'), { recursive: true })
} catch (e) {
console.warn(`Warning: couldn't clear user data directory:`, e)
}
2017-04-21 19:29:46 +00:00
const fs = require('fs')
2016-03-25 20:03:49 +00:00
const path = require('path')
const util = require('util')
2017-04-21 19:29:46 +00:00
const v8 = require('v8')
const argv = require('yargs')
.boolean('ci')
.array('files')
.string('g').alias('g', 'grep')
.boolean('i').alias('i', 'invert')
2016-03-25 20:03:49 +00:00
.argv
2013-07-17 08:28:14 +00:00
let window = null
2017-04-19 23:32:43 +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
// Disable security warnings (the security warnings test will enable them)
process.env.ELECTRON_DISABLE_SECURITY_WARNINGS = true
// 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.
2017-11-23 22:22:43 +00:00
// eslint-disable-next-line
2016-03-25 20:03:49 +00:00
process.stdout
2016-01-26 12:26:42 +00:00
// Access console to reproduce #3482.
2017-11-23 22:22:43 +00:00
// eslint-disable-next-line
2016-03-25 20:03:49 +00:00
console
2016-01-26 12:26:42 +00:00
ipcMain.on('message', function (event, ...args) {
event.sender.send('message', ...args)
2016-03-25 20:03:49 +00:00
})
ipcMain.handle('get-modules', () => Object.keys(electron))
ipcMain.handle('get-temp-dir', () => app.getPath('temp'))
ipcMain.handle('ping', () => null)
// Write output to file if OUTPUT_TO_FILE is defined.
const outputToFile = process.env.OUTPUT_TO_FILE
const print = function (_, method, args) {
const output = util.format.apply(null, args)
if (outputToFile) {
fs.appendFileSync(outputToFile, output + '\n')
} else {
console[method](output)
}
}
ipcMain.on('console-call', print)
2016-03-25 20:03:49 +00:00
ipcMain.on('process.exit', function (event, code) {
process.exit(code)
})
2016-03-25 20:03:49 +00:00
ipcMain.on('eval', function (event, script) {
event.returnValue = eval(script) // eslint-disable-line
2016-03-25 20:03:49 +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
2019-10-30 23:38:21 +00:00
process.removeAllListeners('uncaughtException')
process.on('uncaughtException', function (error) {
console.error(error, error.stack)
process.exit(1)
})
global.nativeModulesEnabled = !process.env.ELECTRON_SKIP_NATIVE_MODULE_TESTS
2016-03-25 20:03:49 +00:00
app.on('window-all-closed', function () {
app.quit()
})
app.on('gpu-process-crashed', (event, killed) => {
console.log(`GPU process crashed (killed=${killed})`)
})
app.on('renderer-process-crashed', (event, contents, killed) => {
console.log(`webContents ${contents.id} crashed: ${contents.getURL()} (killed=${killed})`)
2017-04-21 19:29:46 +00:00
})
app.whenReady().then(async function () {
await session.defaultSession.clearCache()
await session.defaultSession.clearStorageData()
// Test if using protocol module would crash.
2016-03-25 20:03:49 +00:00
electron.protocol.registerStringProtocol('test-if-crashes', function () {})
2013-07-17 08:28:14 +00:00
window = new BrowserWindow({
2015-04-14 07:59:45 +00:00
title: 'Electron Tests',
2019-10-30 23:38:21 +00:00
show: false,
2013-07-17 08:28:14 +00:00
width: 800,
height: 600,
2016-03-16 16:24:57 +00:00
webPreferences: {
backgroundThrottling: false,
nodeIntegration: true,
enableRemoteModule: false,
webviewTag: true
}
2016-03-25 20:03:49 +00:00
})
window.loadFile('static/index.html', {
query: {
grep: argv.grep,
invert: argv.invert ? 'true' : '',
files: argv.files ? argv.files.join(',') : undefined
}
})
2016-03-25 20:03:49 +00:00
window.on('unresponsive', function () {
const 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()
})
window.webContents.on('crashed', function () {
console.error('Renderer process crashed')
process.exit(1)
})
})
2017-02-03 20:55:37 +00:00
ipcMain.on('prevent-next-will-attach-webview', (event) => {
event.sender.once('will-attach-webview', event => event.preventDefault())
2017-02-03 20:21:46 +00:00
})
2017-02-03 20:55:37 +00:00
ipcMain.on('disable-node-on-next-will-attach-webview', (event, id) => {
event.sender.once('will-attach-webview', (event, webPreferences, params) => {
2017-02-03 22:01:39 +00:00
params.src = `file://${path.join(__dirname, '..', 'fixtures', 'pages', 'c.html')}`
2017-02-03 20:21:46 +00:00
webPreferences.nodeIntegration = false
})
})
ipcMain.on('disable-preload-on-next-will-attach-webview', (event, id) => {
event.sender.once('will-attach-webview', (event, webPreferences, params) => {
params.src = `file://${path.join(__dirname, '..', 'fixtures', 'pages', 'webview-stripped-preload.html')}`
delete webPreferences.preload
delete webPreferences.preloadURL
})
})
ipcMain.on('handle-uncaught-exception', (event, message) => {
suspendListeners(process, 'uncaughtException', (error) => {
event.returnValue = error.message
})
fs.readFile(__filename, () => {
throw new Error(message)
})
})
ipcMain.on('handle-unhandled-rejection', (event, message) => {
suspendListeners(process, 'unhandledRejection', (error) => {
event.returnValue = error.message
})
fs.readFile(__filename, () => {
Promise.reject(new Error(message))
})
})
// Suspend listeners until the next event and then restore them
const suspendListeners = (emitter, eventName, callback) => {
const listeners = emitter.listeners(eventName)
emitter.removeAllListeners(eventName)
emitter.once(eventName, (...args) => {
emitter.removeAllListeners(eventName)
listeners.forEach((listener) => {
emitter.on(eventName, listener)
})
2017-11-23 22:22:43 +00:00
// eslint-disable-next-line standard/no-callback-literal
callback(...args)
})
}