| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  | const assert = require('assert') | 
					
						
							| 
									
										
										
										
											2016-06-29 09:37:10 -07:00
										 |  |  | const ChildProcess = require('child_process') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  | const fs = require('fs') | 
					
						
							|  |  |  | const path = require('path') | 
					
						
							|  |  |  | const os = require('os') | 
					
						
							| 
									
										
										
										
											2017-01-25 08:55:38 -08:00
										 |  |  | const {ipcRenderer, remote} = require('electron') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-20 11:16:17 +09:00
										 |  |  | const isCI = remote.getGlobal('isCi') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  | describe('node feature', function () { | 
					
						
							|  |  |  |   var fixtures = path.join(__dirname, 'fixtures') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   describe('child_process', function () { | 
					
						
							|  |  |  |     describe('child_process.fork', function () { | 
					
						
							|  |  |  |       it('works in current process', function (done) { | 
					
						
							| 
									
										
										
										
											2016-06-29 09:37:10 -07:00
										 |  |  |         var child = ChildProcess.fork(path.join(fixtures, 'module', 'ping.js')) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |         child.on('message', function (msg) { | 
					
						
							|  |  |  |           assert.equal(msg, 'message') | 
					
						
							|  |  |  |           done() | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |         child.send('message') | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('preserves args', function (done) { | 
					
						
							|  |  |  |         var args = ['--expose_gc', '-test', '1'] | 
					
						
							| 
									
										
										
										
											2016-06-29 09:37:10 -07:00
										 |  |  |         var child = ChildProcess.fork(path.join(fixtures, 'module', 'process_args.js'), args) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |         child.on('message', function (msg) { | 
					
						
							|  |  |  |           assert.deepEqual(args, msg.slice(2)) | 
					
						
							|  |  |  |           done() | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |         child.send('message') | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('works in forked process', function (done) { | 
					
						
							| 
									
										
										
										
											2016-06-29 09:37:10 -07:00
										 |  |  |         var child = ChildProcess.fork(path.join(fixtures, 'module', 'fork_ping.js')) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |         child.on('message', function (msg) { | 
					
						
							|  |  |  |           assert.equal(msg, 'message') | 
					
						
							|  |  |  |           done() | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |         child.send('message') | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('works in forked process when options.env is specifed', function (done) { | 
					
						
							| 
									
										
										
										
											2016-06-29 09:37:10 -07:00
										 |  |  |         var child = ChildProcess.fork(path.join(fixtures, 'module', 'fork_ping.js'), [], { | 
					
						
							| 
									
										
										
										
											2016-01-11 18:40:23 -08:00
										 |  |  |           path: process.env['PATH'] | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |         }) | 
					
						
							|  |  |  |         child.on('message', function (msg) { | 
					
						
							|  |  |  |           assert.equal(msg, 'message') | 
					
						
							|  |  |  |           done() | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |         child.send('message') | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('works in browser process', function (done) { | 
					
						
							|  |  |  |         var fork = remote.require('child_process').fork | 
					
						
							|  |  |  |         var child = fork(path.join(fixtures, 'module', 'ping.js')) | 
					
						
							|  |  |  |         child.on('message', function (msg) { | 
					
						
							|  |  |  |           assert.equal(msg, 'message') | 
					
						
							|  |  |  |           done() | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |         child.send('message') | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('has String::localeCompare working in script', function (done) { | 
					
						
							| 
									
										
										
										
											2016-06-29 09:37:10 -07:00
										 |  |  |         var child = ChildProcess.fork(path.join(fixtures, 'module', 'locale-compare.js')) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |         child.on('message', function (msg) { | 
					
						
							|  |  |  |           assert.deepEqual(msg, [0, -1, 1]) | 
					
						
							|  |  |  |           done() | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |         child.send('message') | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('has setImmediate working in script', function (done) { | 
					
						
							| 
									
										
										
										
											2016-06-29 09:37:10 -07:00
										 |  |  |         var child = ChildProcess.fork(path.join(fixtures, 'module', 'set-immediate.js')) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |         child.on('message', function (msg) { | 
					
						
							|  |  |  |           assert.equal(msg, 'ok') | 
					
						
							|  |  |  |           done() | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |         child.send('message') | 
					
						
							|  |  |  |       }) | 
					
						
							| 
									
										
										
										
											2016-05-31 10:26:19 +09:00
										 |  |  | 
 | 
					
						
							|  |  |  |       it('pipes stdio', function (done) { | 
					
						
							| 
									
										
										
										
											2016-06-29 09:37:10 -07:00
										 |  |  |         let child = ChildProcess.fork(path.join(fixtures, 'module', 'process-stdout.js'), {silent: true}) | 
					
						
							| 
									
										
										
										
											2016-05-31 10:26:19 +09:00
										 |  |  |         let data = '' | 
					
						
							|  |  |  |         child.stdout.on('data', (chunk) => { | 
					
						
							|  |  |  |           data += String(chunk) | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |         child.on('exit', (code) => { | 
					
						
							|  |  |  |           assert.equal(code, 0) | 
					
						
							|  |  |  |           assert.equal(data, 'pipes stdio') | 
					
						
							|  |  |  |           done() | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							| 
									
										
										
										
											2017-04-06 09:47:33 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-06 09:52:52 -07:00
										 |  |  |       it('works when sending a message to a process forked with the --eval argument', function (done) { | 
					
						
							|  |  |  |         const source = "process.on('message', (message) => { process.send(message) })" | 
					
						
							| 
									
										
										
										
											2017-04-06 09:47:33 -07:00
										 |  |  |         const forked = ChildProcess.fork('--eval', [source]) | 
					
						
							| 
									
										
										
										
											2017-04-06 09:52:52 -07:00
										 |  |  |         forked.once('message', (message) => { | 
					
						
							| 
									
										
										
										
											2017-04-06 09:47:33 -07:00
										 |  |  |           assert.equal(message, 'hello') | 
					
						
							|  |  |  |           done() | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |         forked.send('hello') | 
					
						
							|  |  |  |       }) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |     }) | 
					
						
							| 
									
										
										
										
											2016-10-12 13:01:43 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     describe('child_process.spawn', function () { | 
					
						
							|  |  |  |       it('supports spawning Electron as a node process via the ELECTRON_RUN_AS_NODE env var', function (done) { | 
					
						
							|  |  |  |         const child = ChildProcess.spawn(process.execPath, [path.join(__dirname, 'fixtures', 'module', 'run-as-node.js')], { | 
					
						
							|  |  |  |           env: { | 
					
						
							|  |  |  |             ELECTRON_RUN_AS_NODE: true | 
					
						
							|  |  |  |           } | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         let output = '' | 
					
						
							|  |  |  |         child.stdout.on('data', function (data) { | 
					
						
							|  |  |  |           output += data | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |         child.stdout.on('close', function () { | 
					
						
							|  |  |  |           assert.deepEqual(JSON.parse(output), { | 
					
						
							|  |  |  |             processLog: process.platform === 'win32' ? 'function' : 'undefined', | 
					
						
							|  |  |  |             processType: 'undefined', | 
					
						
							|  |  |  |             window: 'undefined' | 
					
						
							|  |  |  |           }) | 
					
						
							|  |  |  |           done() | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  |     }) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |   }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   describe('contexts', function () { | 
					
						
							|  |  |  |     describe('setTimeout in fs callback', function () { | 
					
						
							| 
									
										
										
										
											2016-01-11 18:40:23 -08:00
										 |  |  |       if (process.env.TRAVIS === 'true') { | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |         return | 
					
						
							| 
									
										
										
										
											2016-01-11 18:40:23 -08:00
										 |  |  |       } | 
					
						
							| 
									
										
										
										
											2016-02-16 17:09:41 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |       it('does not crash', function (done) { | 
					
						
							|  |  |  |         fs.readFile(__filename, function () { | 
					
						
							|  |  |  |           setTimeout(done, 0) | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  |     }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-25 08:55:38 -08:00
										 |  |  |     describe('error thrown in renderer process node context', function () { | 
					
						
							| 
									
										
										
										
											2017-01-25 09:04:25 -08:00
										 |  |  |       it('gets emitted as a process uncaughtException event', function (done) { | 
					
						
							| 
									
										
										
										
											2017-01-25 08:55:38 -08:00
										 |  |  |         const error = new Error('boo!') | 
					
						
							|  |  |  |         const listeners = process.listeners('uncaughtException') | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |         process.removeAllListeners('uncaughtException') | 
					
						
							| 
									
										
										
										
											2017-01-25 08:55:38 -08:00
										 |  |  |         process.on('uncaughtException', (thrown) => { | 
					
						
							|  |  |  |           assert.strictEqual(thrown, error) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |           process.removeAllListeners('uncaughtException') | 
					
						
							| 
									
										
										
										
											2017-01-25 08:55:38 -08:00
										 |  |  |           listeners.forEach((listener) => { | 
					
						
							|  |  |  |             process.on('uncaughtException', listener) | 
					
						
							|  |  |  |           }) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |           done() | 
					
						
							|  |  |  |         }) | 
					
						
							| 
									
										
										
										
											2017-01-25 08:55:38 -08:00
										 |  |  |         fs.readFile(__filename, () => { | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |           throw error | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  |     }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-25 08:55:38 -08:00
										 |  |  |     describe('error thrown in main process node context', function () { | 
					
						
							| 
									
										
										
										
											2017-01-25 10:19:38 -08:00
										 |  |  |       it('gets emitted as a process uncaughtException event', function () { | 
					
						
							| 
									
										
										
										
											2017-01-25 08:55:38 -08:00
										 |  |  |         const error = ipcRenderer.sendSync('handle-uncaught-exception', 'hello') | 
					
						
							|  |  |  |         assert.equal(error, 'hello') | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  |     }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-25 09:04:25 -08:00
										 |  |  |     describe('promise rejection in main process node context', function () { | 
					
						
							|  |  |  |       it('gets emitted as a process unhandledRejection event', function () { | 
					
						
							|  |  |  |         const error = ipcRenderer.sendSync('handle-unhandled-rejection', 'hello') | 
					
						
							|  |  |  |         assert.equal(error, 'hello') | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  |     }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |     describe('setTimeout called under Chromium event loop in browser process', function () { | 
					
						
							|  |  |  |       it('can be scheduled in time', function (done) { | 
					
						
							|  |  |  |         remote.getGlobal('setTimeout')(done, 0) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  |     }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     describe('setInterval called under Chromium event loop in browser process', function () { | 
					
						
							|  |  |  |       it('can be scheduled in time', function (done) { | 
					
						
							|  |  |  |         var clear, interval | 
					
						
							|  |  |  |         clear = function () { | 
					
						
							|  |  |  |           remote.getGlobal('clearInterval')(interval) | 
					
						
							|  |  |  |           done() | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         interval = remote.getGlobal('setInterval')(clear, 10) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  |     }) | 
					
						
							|  |  |  |   }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   describe('message loop', function () { | 
					
						
							|  |  |  |     describe('process.nextTick', function () { | 
					
						
							|  |  |  |       it('emits the callback', function (done) { | 
					
						
							|  |  |  |         process.nextTick(done) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('works in nested calls', function (done) { | 
					
						
							|  |  |  |         process.nextTick(function () { | 
					
						
							|  |  |  |           process.nextTick(function () { | 
					
						
							|  |  |  |             process.nextTick(done) | 
					
						
							|  |  |  |           }) | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  |     }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     describe('setImmediate', function () { | 
					
						
							|  |  |  |       it('emits the callback', function (done) { | 
					
						
							|  |  |  |         setImmediate(done) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('works in nested calls', function (done) { | 
					
						
							|  |  |  |         setImmediate(function () { | 
					
						
							|  |  |  |           setImmediate(function () { | 
					
						
							|  |  |  |             setImmediate(done) | 
					
						
							|  |  |  |           }) | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  |     }) | 
					
						
							|  |  |  |   }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   describe('net.connect', function () { | 
					
						
							| 
									
										
										
										
											2016-01-11 18:40:23 -08:00
										 |  |  |     if (process.platform !== 'darwin') { | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |       return | 
					
						
							| 
									
										
										
										
											2016-01-11 18:40:23 -08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-02-16 17:09:41 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |     it('emit error when connect to a socket path without listeners', function (done) { | 
					
						
							|  |  |  |       var socketPath = path.join(os.tmpdir(), 'atom-shell-test.sock') | 
					
						
							|  |  |  |       var script = path.join(fixtures, 'module', 'create_socket.js') | 
					
						
							| 
									
										
										
										
											2016-06-29 09:37:10 -07:00
										 |  |  |       var child = ChildProcess.fork(script, [socketPath]) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |       child.on('exit', function (code) { | 
					
						
							|  |  |  |         assert.equal(code, 0) | 
					
						
							|  |  |  |         var client = require('net').connect(socketPath) | 
					
						
							|  |  |  |         client.on('error', function (error) { | 
					
						
							|  |  |  |           assert.equal(error.code, 'ECONNREFUSED') | 
					
						
							|  |  |  |           done() | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  |     }) | 
					
						
							|  |  |  |   }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   describe('Buffer', function () { | 
					
						
							|  |  |  |     it('can be created from WebKit external string', function () { | 
					
						
							|  |  |  |       var p = document.createElement('p') | 
					
						
							|  |  |  |       p.innerText = '闲云潭影日悠悠,物换星移几度秋' | 
					
						
							|  |  |  |       var b = new Buffer(p.innerText) | 
					
						
							|  |  |  |       assert.equal(b.toString(), '闲云潭影日悠悠,物换星移几度秋') | 
					
						
							|  |  |  |       assert.equal(Buffer.byteLength(p.innerText), 45) | 
					
						
							|  |  |  |     }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('correctly parses external one-byte UTF8 string', function () { | 
					
						
							|  |  |  |       var p = document.createElement('p') | 
					
						
							|  |  |  |       p.innerText = 'Jøhänñéß' | 
					
						
							|  |  |  |       var b = new Buffer(p.innerText) | 
					
						
							|  |  |  |       assert.equal(b.toString(), 'Jøhänñéß') | 
					
						
							|  |  |  |       assert.equal(Buffer.byteLength(p.innerText), 13) | 
					
						
							|  |  |  |     }) | 
					
						
							| 
									
										
										
										
											2016-04-05 17:08:27 +09:00
										 |  |  | 
 | 
					
						
							|  |  |  |     it('does not crash when creating large Buffers', function () { | 
					
						
							| 
									
										
										
										
											2016-06-29 09:37:10 -07:00
										 |  |  |       var buffer = new Buffer(new Array(4096).join(' ')) | 
					
						
							| 
									
										
										
										
											2016-06-29 09:44:38 -07:00
										 |  |  |       assert.equal(buffer.length, 4095) | 
					
						
							| 
									
										
										
										
											2016-06-29 09:37:10 -07:00
										 |  |  |       buffer = new Buffer(new Array(4097).join(' ')) | 
					
						
							| 
									
										
										
										
											2016-06-29 09:44:38 -07:00
										 |  |  |       assert.equal(buffer.length, 4096) | 
					
						
							| 
									
										
										
										
											2016-04-05 17:08:27 +09:00
										 |  |  |     }) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |   }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   describe('process.stdout', function () { | 
					
						
							| 
									
										
										
										
											2016-09-07 14:40:18 -07:00
										 |  |  |     it('does not throw an exception when accessed', function () { | 
					
						
							|  |  |  |       assert.doesNotThrow(function () { | 
					
						
							|  |  |  |         process.stdout | 
					
						
							|  |  |  |       }) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |     }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-07 14:40:18 -07:00
										 |  |  |     it('does not throw an exception when calling write()', function () { | 
					
						
							|  |  |  |       assert.doesNotThrow(function () { | 
					
						
							|  |  |  |         process.stdout.write('test') | 
					
						
							|  |  |  |       }) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |     }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-08 11:01:58 -07:00
										 |  |  |     it('should have isTTY defined on Mac and Linux', function () { | 
					
						
							| 
									
										
										
										
											2016-06-20 11:16:17 +09:00
										 |  |  |       if (isCI) return | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-08 13:12:00 -07:00
										 |  |  |       if (process.platform === 'win32') { | 
					
						
							| 
									
										
										
										
											2016-09-08 11:01:58 -07:00
										 |  |  |         assert.equal(process.stdout.isTTY, undefined) | 
					
						
							| 
									
										
										
										
											2016-09-08 13:12:00 -07:00
										 |  |  |       } else { | 
					
						
							| 
									
										
										
										
											2016-09-08 11:01:58 -07:00
										 |  |  |         assert.equal(typeof process.stdout.isTTY, 'boolean') | 
					
						
							| 
									
										
										
										
											2016-09-08 13:12:00 -07:00
										 |  |  |       } | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |     }) | 
					
						
							|  |  |  |   }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-07 14:40:18 -07:00
										 |  |  |   describe('process.stdin', function () { | 
					
						
							|  |  |  |     it('does not throw an exception when accessed', function () { | 
					
						
							|  |  |  |       assert.doesNotThrow(function () { | 
					
						
							|  |  |  |         process.stdin | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  |     }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-07 14:51:05 -07:00
										 |  |  |     it('returns null when read from', function () { | 
					
						
							|  |  |  |       assert.equal(process.stdin.read(), null) | 
					
						
							| 
									
										
										
										
											2016-09-07 14:40:18 -07:00
										 |  |  |     }) | 
					
						
							|  |  |  |   }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-05 19:53:07 +09:00
										 |  |  |   describe('process.version', function () { | 
					
						
							|  |  |  |     it('should not have -pre', function () { | 
					
						
							|  |  |  |       assert(!process.version.endsWith('-pre')) | 
					
						
							|  |  |  |     }) | 
					
						
							|  |  |  |   }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  |   describe('vm.createContext', function () { | 
					
						
							|  |  |  |     it('should not crash', function () { | 
					
						
							|  |  |  |       require('vm').runInNewContext('') | 
					
						
							|  |  |  |     }) | 
					
						
							|  |  |  |   }) | 
					
						
							| 
									
										
										
										
											2017-01-11 17:51:46 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   it('includes the electron version in process.versions', () => { | 
					
						
							|  |  |  |     assert(/^\d+\.\d+\.\d+$/.test(process.versions.electron)) | 
					
						
							|  |  |  |   }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   it('includes the chrome version in process.versions', () => { | 
					
						
							|  |  |  |     assert(/^\d+\.\d+\.\d+\.\d+$/.test(process.versions.chrome)) | 
					
						
							|  |  |  |   }) | 
					
						
							| 
									
										
										
										
											2016-03-25 13:03:49 -07:00
										 |  |  | }) |