electron/spec/static/main.js

101 lines
3.1 KiB
JavaScript
Raw Normal View History

2013-07-17 08:28:14 +00:00
var app = require('app');
var ipc = require('ipc');
var dialog = require('dialog');
2015-09-24 07:55:45 +00:00
var path = require('path');
2013-07-17 08:28:14 +00:00
var BrowserWindow = require('browser-window');
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');
2013-07-29 08:35:42 +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;
ipc.on('message', function(event, arg) {
event.sender.send('message', arg);
});
2014-04-28 03:55:56 +00:00
ipc.on('console.log', function(event, args) {
2015-09-03 08:20:48 +00:00
console.error.apply(console, args);
});
2014-04-28 03:55:56 +00:00
ipc.on('console.error', function(event, args) {
2015-09-03 08:20:48 +00:00
console.error.apply(console, args);
});
2014-04-28 03:55:56 +00:00
ipc.on('process.exit', function(event, code) {
process.exit(code);
});
2014-04-28 03:55:56 +00:00
ipc.on('eval', function(event, script) {
event.returnValue = eval(script);
});
2014-04-28 03:55:56 +00:00
ipc.on('echo', function(event, msg) {
event.returnValue = msg;
2013-09-22 04:06:41 +00:00
});
if (process.argv[2] == '--ci') {
process.removeAllListeners('uncaughtException');
process.on('uncaughtException', function(error) {
console.error(error, error.stack);
process.exit(1);
});
}
app.on('window-all-closed', function() {
app.quit();
});
app.on('ready', function() {
// Test if using protocol module would crash.
require('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',
2013-08-21 03:35:39 +00:00
show: false,
2013-07-17 08:28:14 +00:00
width: 800,
height: 600,
'web-preferences': {
javascript: true // Test whether web-preferences crashes.
},
2013-07-17 08:28:14 +00:00
});
window.loadUrl('file://' + __dirname + '/index.html');
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();
});
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');
require('ipc').on('set-download-option', function(event, need_cancel) {
window.webContents.session.once('will-download',
function(e, item, webContents) {
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());
2015-09-24 07:55:45 +00:00
});
if (need_cancel)
item.cancel();
});
event.returnValue = "done";
});
2013-07-17 08:28:14 +00:00
});