autoformat more files

This commit is contained in:
Zeke Sikelianos 2016-03-25 13:03:49 -07:00 committed by Kevin Sawicki
parent 06b556c34c
commit f35f362272
47 changed files with 4458 additions and 4459 deletions

View file

@ -1,93 +1,93 @@
const assert = require('assert');
const http = require('http');
const multiparty = require('multiparty');
const path = require('path');
const url = require('url');
const assert = require('assert')
const http = require('http')
const multiparty = require('multiparty')
const path = require('path')
const url = require('url')
const remote = require('electron').remote;
const app = remote.require('electron').app;
const crashReporter = remote.require('electron').crashReporter;
const BrowserWindow = remote.require('electron').BrowserWindow;
const remote = require('electron').remote
const app = remote.require('electron').app
const crashReporter = remote.require('electron').crashReporter
const BrowserWindow = remote.require('electron').BrowserWindow
describe('crash-reporter module', function() {
var fixtures = path.resolve(__dirname, 'fixtures');
var w = null;
describe('crash-reporter module', function () {
var fixtures = path.resolve(__dirname, 'fixtures')
var w = null
beforeEach(function() {
beforeEach(function () {
w = new BrowserWindow({
show: false
});
});
})
})
afterEach(function() {
w.destroy();
});
afterEach(function () {
w.destroy()
})
if (process.mas) {
return;
return
}
var isCI = remote.getGlobal('isCi');
var isCI = remote.getGlobal('isCi')
if (isCI) {
return;
return
}
it('should send minidump when renderer crashes', function(done) {
this.timeout(120000);
it('should send minidump when renderer crashes', function (done) {
this.timeout(120000)
var called = false;
var server = http.createServer(function(req, res) {
server.close();
var form = new multiparty.Form();
form.parse(req, function(error, fields) {
var called = false
var server = http.createServer(function (req, res) {
server.close()
var form = new multiparty.Form()
form.parse(req, function (error, fields) {
if (called) {
return;
return
}
called = true;
assert.equal(fields['prod'], 'Electron');
assert.equal(fields['ver'], process.versions['electron']);
assert.equal(fields['process_type'], 'renderer');
assert.equal(fields['platform'], process.platform);
assert.equal(fields['extra1'], 'extra1');
assert.equal(fields['extra2'], 'extra2');
assert.equal(fields['_productName'], 'Zombies');
assert.equal(fields['_companyName'], 'Umbrella Corporation');
assert.equal(fields['_version'], app.getVersion());
res.end('abc-123-def');
done();
});
});
var port = remote.process.port;
server.listen(port, '127.0.0.1', function() {
port = server.address().port;
remote.process.port = port;
called = true
assert.equal(fields['prod'], 'Electron')
assert.equal(fields['ver'], process.versions['electron'])
assert.equal(fields['process_type'], 'renderer')
assert.equal(fields['platform'], process.platform)
assert.equal(fields['extra1'], 'extra1')
assert.equal(fields['extra2'], 'extra2')
assert.equal(fields['_productName'], 'Zombies')
assert.equal(fields['_companyName'], 'Umbrella Corporation')
assert.equal(fields['_version'], app.getVersion())
res.end('abc-123-def')
done()
})
})
var port = remote.process.port
server.listen(port, '127.0.0.1', function () {
port = server.address().port
remote.process.port = port
const crashUrl = url.format({
protocol: 'file',
pathname: path.join(fixtures, 'api', 'crash.html'),
search: "?port=" + port
});
search: '?port=' + port
})
if (process.platform === 'darwin') {
crashReporter.start({
companyName: 'Umbrella Corporation',
submitURL: "http://127.0.0.1:" + port
});
submitURL: 'http://127.0.0.1:' + port
})
}
w.loadURL(crashUrl);
});
});
w.loadURL(crashUrl)
})
})
describe(".start(options)", function() {
it('requires that the companyName and submitURL options be specified', function() {
assert.throws(function() {
describe('.start(options)', function () {
it('requires that the companyName and submitURL options be specified', function () {
assert.throws(function () {
crashReporter.start({
companyName: 'Missing submitURL'
});
});
assert.throws(function() {
})
})
assert.throws(function () {
crashReporter.start({
submitURL: 'Missing companyName'
});
});
});
});
});
})
})
})
})
})