2015-12-16 01:02:33 +00:00
|
|
|
// Disable use of deprecated functions.
|
|
|
|
process.throwDeprecation = true;
|
|
|
|
|
2015-11-12 10:28:04 +00:00
|
|
|
const electron = require('electron');
|
|
|
|
const app = electron.app;
|
|
|
|
const ipcMain = electron.ipcMain;
|
|
|
|
const dialog = electron.dialog;
|
|
|
|
const BrowserWindow = electron.BrowserWindow;
|
|
|
|
|
|
|
|
const path = require('path');
|
2015-12-10 18:33:43 +00:00
|
|
|
const url = require('url');
|
|
|
|
|
|
|
|
var argv = require('yargs')
|
|
|
|
.boolean('ci')
|
|
|
|
.string('g').alias('g', 'grep')
|
2015-12-10 18:35:51 +00:00
|
|
|
.boolean('i').alias('i', 'invert')
|
2015-12-10 18:33:43 +00:00
|
|
|
.argv;
|
2013-07-17 08:28:14 +00:00
|
|
|
|
|
|
|
var window = null;
|
2015-06-05 11:48:58 +00:00
|
|
|
process.port = 0; // will be used by crash-reporter spec.
|
2013-07-17 08:28:14 +00:00
|
|
|
|
2013-07-29 08:35:42 +00:00
|
|
|
app.commandLine.appendSwitch('js-flags', '--expose_gc');
|
2015-03-10 07:09:23 +00:00
|
|
|
app.commandLine.appendSwitch('ignore-certificate-errors');
|
2015-11-10 08:21:08 +00:00
|
|
|
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.
|
|
|
|
process.stdout;
|
|
|
|
|
2016-01-26 12:26:42 +00:00
|
|
|
// Access console to reproduce #3482.
|
|
|
|
console;
|
|
|
|
|
2015-11-12 10:28:04 +00:00
|
|
|
ipcMain.on('message', function(event, arg) {
|
2014-04-25 08:13:16 +00:00
|
|
|
event.sender.send('message', arg);
|
2013-07-26 07:53:00 +00:00
|
|
|
});
|
|
|
|
|
2015-11-12 10:28:04 +00:00
|
|
|
ipcMain.on('console.log', function(event, args) {
|
2015-09-03 08:20:48 +00:00
|
|
|
console.error.apply(console, args);
|
2013-08-21 03:15:22 +00:00
|
|
|
});
|
|
|
|
|
2015-11-12 10:28:04 +00:00
|
|
|
ipcMain.on('console.error', function(event, args) {
|
2015-09-03 08:20:48 +00:00
|
|
|
console.error.apply(console, args);
|
2013-08-21 03:15:22 +00:00
|
|
|
});
|
|
|
|
|
2015-11-12 10:28:04 +00:00
|
|
|
ipcMain.on('process.exit', function(event, code) {
|
2013-08-21 03:15:22 +00:00
|
|
|
process.exit(code);
|
|
|
|
});
|
|
|
|
|
2015-11-12 10:28:04 +00:00
|
|
|
ipcMain.on('eval', function(event, script) {
|
2014-04-28 03:55:56 +00:00
|
|
|
event.returnValue = eval(script);
|
2013-08-25 04:36:06 +00:00
|
|
|
});
|
|
|
|
|
2015-11-12 10:28:04 +00:00
|
|
|
ipcMain.on('echo', function(event, msg) {
|
2014-04-28 03:55:56 +00:00
|
|
|
event.returnValue = msg;
|
2013-09-22 04:06:41 +00:00
|
|
|
});
|
|
|
|
|
2015-12-10 18:33:18 +00:00
|
|
|
global.isCi = !!argv.ci;
|
|
|
|
if (global.isCi) {
|
2014-05-25 08:16:29 +00:00
|
|
|
process.removeAllListeners('uncaughtException');
|
|
|
|
process.on('uncaughtException', function(error) {
|
|
|
|
console.error(error, error.stack);
|
|
|
|
process.exit(1);
|
|
|
|
});
|
|
|
|
}
|
2013-07-19 02:47:00 +00:00
|
|
|
|
|
|
|
app.on('window-all-closed', function() {
|
2014-04-10 07:08:14 +00:00
|
|
|
app.quit();
|
2013-07-19 02:47:00 +00:00
|
|
|
});
|
|
|
|
|
2013-12-27 03:08:26 +00:00
|
|
|
app.on('ready', function() {
|
2013-09-20 10:32:05 +00:00
|
|
|
// Test if using protocol module would crash.
|
2015-11-12 10:28:04 +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-02-16 02:26:25 +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',
|
2013-08-21 03:35:39 +00:00
|
|
|
show: false,
|
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: {
|
|
|
|
javascript: true // Test whether web preferences crashes.
|
2014-07-21 05:08:52 +00:00
|
|
|
},
|
2013-07-17 08:28:14 +00:00
|
|
|
});
|
2015-12-10 18:33:43 +00:00
|
|
|
window.loadURL(url.format({
|
|
|
|
pathname: __dirname + '/index.html',
|
|
|
|
protocol: 'file',
|
|
|
|
query: {
|
2015-12-10 18:35:51 +00:00
|
|
|
grep: argv.grep,
|
|
|
|
invert: argv.invert ? 'true': ''
|
2015-12-10 18:33:43 +00:00
|
|
|
}
|
|
|
|
}));
|
2013-11-29 07:19:30 +00:00
|
|
|
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?'
|
|
|
|
});
|
2016-01-22 00:04:59 +00:00
|
|
|
if (chosen === 0) window.destroy();
|
2013-11-29 07:19:30 +00:00
|
|
|
});
|
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
|
|
|
|
var downloadFilePath = path.join(__dirname, '..', 'fixtures', 'mock.pdf');
|
2016-02-02 10:24:51 +00:00
|
|
|
ipcMain.on('set-download-option', function(event, need_cancel, prevent_default) {
|
2016-02-16 02:26:25 +00:00
|
|
|
window.webContents.session.once('will-download', function(e, item) {
|
2016-02-02 10:24:51 +00:00
|
|
|
if (prevent_default) {
|
|
|
|
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);
|
|
|
|
}
|
2015-09-24 07:55:45 +00:00
|
|
|
});
|
2016-02-02 10:24:51 +00:00
|
|
|
} else {
|
|
|
|
item.setSavePath(downloadFilePath);
|
|
|
|
item.on('done', function(e, state) {
|
|
|
|
window.webContents.send('download-done',
|
|
|
|
state,
|
|
|
|
item.getURL(),
|
|
|
|
item.getMimeType(),
|
|
|
|
item.getReceivedBytes(),
|
|
|
|
item.getTotalBytes(),
|
|
|
|
item.getContentDisposition(),
|
|
|
|
item.getFilename());
|
|
|
|
});
|
|
|
|
if (need_cancel)
|
|
|
|
item.cancel();
|
|
|
|
}
|
|
|
|
});
|
2015-09-24 07:55:45 +00:00
|
|
|
event.returnValue = "done";
|
|
|
|
});
|
2016-02-24 10:11:09 +00:00
|
|
|
|
|
|
|
ipcMain.on('executeJavaScript', function(event, code, hasCallback) {
|
|
|
|
if (hasCallback) {
|
|
|
|
window.webContents.executeJavaScript(code, (result) => {
|
|
|
|
window.webContents.send('executeJavaScript-response', result);
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
window.webContents.executeJavaScript(code);
|
|
|
|
event.returnValue = "success";
|
|
|
|
}
|
|
|
|
});
|
2013-07-17 08:28:14 +00:00
|
|
|
});
|