123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251 |
- // Disable use of deprecated functions.
- process.throwDeprecation = true
- const electron = require('electron')
- const app = electron.app
- const crashReporter = electron.crashReporter
- const ipcMain = electron.ipcMain
- const dialog = electron.dialog
- const BrowserWindow = electron.BrowserWindow
- const protocol = electron.protocol
- const webContents = electron.webContents
- const v8 = require('v8')
- const Coverage = require('electabul').Coverage
- const fs = require('fs')
- const path = require('path')
- const url = require('url')
- const util = require('util')
- var argv = require('yargs')
- .boolean('ci')
- .string('g').alias('g', 'grep')
- .boolean('i').alias('i', 'invert')
- .argv
- var window = null
- process.port = 0 // will be used by crash-reporter spec.
- v8.setFlagsFromString('--expose_gc')
- app.commandLine.appendSwitch('js-flags', '--expose_gc')
- app.commandLine.appendSwitch('ignore-certificate-errors')
- app.commandLine.appendSwitch('disable-renderer-backgrounding')
- // 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.
- process.stdout
- // Access console to reproduce #3482.
- console
- ipcMain.on('message', function (event, ...args) {
- event.sender.send('message', ...args)
- })
- // Set productName so getUploadedReports() uses the right directory in specs
- if (process.platform !== 'darwin') {
- crashReporter.productName = 'Zombies'
- }
- // 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)
- ipcMain.on('process.exit', function (event, code) {
- process.exit(code)
- })
- ipcMain.on('eval', function (event, script) {
- event.returnValue = eval(script) // eslint-disable-line
- })
- ipcMain.on('echo', function (event, msg) {
- event.returnValue = msg
- })
- 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
- })
- global.isCi = !!argv.ci
- if (global.isCi) {
- process.removeAllListeners('uncaughtException')
- process.on('uncaughtException', function (error) {
- console.error(error, error.stack)
- process.exit(1)
- })
- }
- // Register app as standard scheme.
- global.standardScheme = 'app'
- protocol.registerStandardSchemes([global.standardScheme], { secure: true })
- app.on('window-all-closed', function () {
- app.quit()
- })
- app.on('ready', function () {
- // Test if using protocol module would crash.
- electron.protocol.registerStringProtocol('test-if-crashes', function () {})
- // Send auto updater errors to window to be verified in specs
- electron.autoUpdater.on('error', function (error) {
- window.send('auto-updater-error', error.message)
- })
- window = new BrowserWindow({
- title: 'Electron Tests',
- show: !global.isCi,
- width: 800,
- height: 600,
- webPreferences: {
- backgroundThrottling: false
- }
- })
- window.loadURL(url.format({
- pathname: path.join(__dirname, '/index.html'),
- protocol: 'file',
- query: {
- grep: argv.grep,
- invert: argv.invert ? 'true' : ''
- }
- }))
- window.on('unresponsive', function () {
- 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?'
- })
- if (chosen === 0) window.destroy()
- })
- // For session's download test, listen 'will-download' event in browser, and
- // reply the result to renderer for verifying
- var downloadFilePath = path.join(__dirname, '..', 'fixtures', 'mock.pdf')
- ipcMain.on('set-download-option', function (event, needCancel, preventDefault, filePath = downloadFilePath) {
- window.webContents.session.once('will-download', function (e, item) {
- window.webContents.send('download-created',
- item.getState(),
- item.getURLChain(),
- item.getMimeType(),
- item.getReceivedBytes(),
- item.getTotalBytes(),
- item.getFilename(),
- item.getSavePath())
- if (preventDefault) {
- e.preventDefault()
- const url = item.getURL()
- const filename = item.getFilename()
- setImmediate(function () {
- try {
- item.getURL()
- } catch (err) {
- window.webContents.send('download-error', url, filename, err.message)
- }
- })
- } else {
- if (item.getState() === 'interrupted' && !needCancel) {
- item.resume()
- } else {
- item.setSavePath(filePath)
- }
- item.on('done', function (e, state) {
- window.webContents.send('download-done',
- state,
- item.getURL(),
- item.getMimeType(),
- item.getReceivedBytes(),
- item.getTotalBytes(),
- item.getContentDisposition(),
- item.getFilename(),
- item.getSavePath(),
- item.getURLChain(),
- item.getLastModifiedTime(),
- item.getETag())
- })
- if (needCancel) item.cancel()
- }
- })
- event.returnValue = 'done'
- })
- ipcMain.on('prevent-next-input-event', (event, key, id) => {
- webContents.fromId(id).once('before-input-event', (event, input) => {
- if (key === input.key) event.preventDefault()
- })
- })
- ipcMain.on('executeJavaScript', function (event, code, hasCallback) {
- if (hasCallback) {
- window.webContents.executeJavaScript(code, (result) => {
- window.webContents.send('executeJavaScript-response', result)
- }).then((result) => {
- window.webContents.send('executeJavaScript-promise-response', result)
- }).catch((err) => {
- window.webContents.send('executeJavaScript-promise-error', err)
- })
- } else {
- window.webContents.executeJavaScript(code)
- event.returnValue = 'success'
- }
- })
- })
- 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 {
- ipcMain.on('client-certificate-response', function (event, certificate) {
- callback(certificate)
- })
- window.webContents.send('select-client-certificate', webContents.id, list)
- }
- })
- event.returnValue = 'done'
- })
- 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')
- })
- })
- 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 = {}
- foo.bar = foo
- foo.baz = {
- hello: {
- world: true
- }
- }
- foo.baz2 = foo.baz
- const window = new BrowserWindow({show: false, foo: foo})
- event.returnValue = window.id
- })
- ipcMain.on('prevent-next-new-window', (event, id) => {
- webContents.fromId(id).once('new-window', event => event.preventDefault())
- })
|