2019-05-20 17:04:18 +00:00
|
|
|
const chai = require('chai')
|
|
|
|
const dirtyChai = require('dirty-chai')
|
|
|
|
|
2016-06-23 22:20:04 +00:00
|
|
|
const Module = require('module')
|
2016-03-25 20:03:49 +00:00
|
|
|
const path = require('path')
|
2018-10-16 00:26:34 +00:00
|
|
|
const fs = require('fs')
|
2018-09-13 16:10:51 +00:00
|
|
|
const { remote } = require('electron')
|
|
|
|
const { BrowserWindow } = remote
|
|
|
|
const { closeWindow } = require('./window-helpers')
|
2019-03-18 19:37:06 +00:00
|
|
|
const features = process.electronBinding('features')
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2019-05-20 17:04:18 +00:00
|
|
|
const { expect } = chai
|
|
|
|
chai.use(dirtyChai)
|
|
|
|
|
2017-05-25 23:40:15 +00:00
|
|
|
const nativeModulesEnabled = remote.getGlobal('nativeModulesEnabled')
|
|
|
|
|
2017-10-27 20:45:58 +00:00
|
|
|
describe('modules support', () => {
|
|
|
|
const fixtures = path.join(__dirname, 'fixtures')
|
2016-02-17 01:09:41 +00:00
|
|
|
|
2017-10-27 20:45:58 +00:00
|
|
|
describe('third-party module', () => {
|
2019-01-12 01:00:43 +00:00
|
|
|
(nativeModulesEnabled ? describe : describe.skip)('echo', () => {
|
2017-10-27 20:45:58 +00:00
|
|
|
it('can be required in renderer', () => {
|
2019-01-12 01:00:43 +00:00
|
|
|
require('echo')
|
2017-05-25 23:40:15 +00:00
|
|
|
})
|
2016-02-17 01:09:41 +00:00
|
|
|
|
2019-01-11 16:02:06 +00:00
|
|
|
it('can be required in node binary', function (done) {
|
|
|
|
if (!features.isRunAsNodeEnabled()) {
|
|
|
|
this.skip()
|
|
|
|
done()
|
|
|
|
}
|
|
|
|
|
2019-01-12 01:00:43 +00:00
|
|
|
const echo = path.join(fixtures, 'module', 'echo.js')
|
|
|
|
const child = require('child_process').fork(echo)
|
2017-10-27 20:45:58 +00:00
|
|
|
child.on('message', (msg) => {
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(msg).to.equal('ok')
|
2017-05-25 23:40:15 +00:00
|
|
|
done()
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
|
|
|
})
|
2018-10-16 00:26:34 +00:00
|
|
|
|
|
|
|
if (process.platform === 'win32') {
|
|
|
|
it('can be required if electron.exe is renamed', () => {
|
|
|
|
const { execPath } = remote.process
|
|
|
|
const testExecPath = path.join(path.dirname(execPath), 'test.exe')
|
|
|
|
fs.copyFileSync(execPath, testExecPath)
|
|
|
|
try {
|
2019-01-12 01:00:43 +00:00
|
|
|
const fixture = path.join(fixtures, 'module', 'echo-renamed.js')
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(fs.existsSync(fixture)).to.be.true()
|
2019-01-12 01:00:43 +00:00
|
|
|
const child = require('child_process').spawnSync(testExecPath, [fixture])
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(child.status).to.equal(0)
|
2018-10-16 00:26:34 +00:00
|
|
|
} finally {
|
|
|
|
fs.unlinkSync(testExecPath)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
2017-05-25 23:40:15 +00:00
|
|
|
})
|
2016-02-17 01:09:41 +00:00
|
|
|
|
2017-11-28 11:10:14 +00:00
|
|
|
// TODO(alexeykuzmin): Disabled during the Chromium 62 (Node.js 9) upgrade.
|
|
|
|
// Enable it back when "ffi" module supports Node.js 9.
|
|
|
|
// https://github.com/electron/electron/issues/11274
|
|
|
|
xdescribe('ffi', () => {
|
2017-11-15 21:05:46 +00:00
|
|
|
before(function () {
|
2018-02-27 17:08:27 +00:00
|
|
|
if (!nativeModulesEnabled || process.platform === 'win32' ||
|
|
|
|
process.arch === 'arm64') {
|
2017-11-15 21:05:46 +00:00
|
|
|
this.skip()
|
|
|
|
}
|
|
|
|
})
|
2016-05-23 14:31:00 +00:00
|
|
|
|
2017-10-27 20:45:58 +00:00
|
|
|
it('does not crash', () => {
|
|
|
|
const ffi = require('ffi')
|
|
|
|
const libm = ffi.Library('libm', {
|
2017-05-25 23:40:15 +00:00
|
|
|
ceil: ['double', ['double']]
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(libm.ceil(1.5)).to.equal(2)
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
2017-05-25 23:40:15 +00:00
|
|
|
})
|
2017-04-20 17:48:17 +00:00
|
|
|
|
2017-10-27 20:45:58 +00:00
|
|
|
describe('q', () => {
|
|
|
|
const Q = require('q')
|
|
|
|
describe('Q.when', () => {
|
|
|
|
it('emits the fullfil callback', (done) => {
|
|
|
|
Q(true).then((val) => {
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(val).to.be.true()
|
2017-04-20 17:48:17 +00:00
|
|
|
done()
|
|
|
|
})
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
2017-01-11 03:29:22 +00:00
|
|
|
|
2019-04-20 17:20:37 +00:00
|
|
|
describe('coffeescript', () => {
|
2017-10-27 20:45:58 +00:00
|
|
|
it('can be registered and used to require .coffee files', () => {
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(() => {
|
2019-04-20 17:20:37 +00:00
|
|
|
require('coffeescript').register()
|
2019-05-20 17:04:18 +00:00
|
|
|
}).to.not.throw()
|
|
|
|
expect(require('./fixtures/module/test.coffee')).to.be.true()
|
2017-02-07 16:48:01 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2017-10-27 20:45:58 +00:00
|
|
|
describe('global variables', () => {
|
|
|
|
describe('process', () => {
|
|
|
|
it('can be declared in a module', () => {
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(require('./fixtures/module/declare-process')).to.equal('declared process')
|
2017-01-11 03:29:22 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2017-10-27 20:45:58 +00:00
|
|
|
describe('global', () => {
|
|
|
|
it('can be declared in a module', () => {
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(require('./fixtures/module/declare-global')).to.equal('declared global')
|
2017-01-11 03:29:22 +00:00
|
|
|
})
|
|
|
|
})
|
2017-02-06 23:08:08 +00:00
|
|
|
|
2017-10-27 20:45:58 +00:00
|
|
|
describe('Buffer', () => {
|
|
|
|
it('can be declared in a module', () => {
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(require('./fixtures/module/declare-buffer')).to.equal('declared Buffer')
|
2017-02-06 23:08:08 +00:00
|
|
|
})
|
|
|
|
})
|
2017-01-11 03:29:22 +00:00
|
|
|
})
|
2016-06-23 22:20:04 +00:00
|
|
|
|
2017-10-27 20:45:58 +00:00
|
|
|
describe('Module._nodeModulePaths', () => {
|
|
|
|
describe('when the path is inside the resources path', () => {
|
|
|
|
it('does not include paths outside of the resources path', () => {
|
2017-04-20 17:48:17 +00:00
|
|
|
let modulePath = process.resourcesPath
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(Module._nodeModulePaths(modulePath)).to.deep.equal([
|
2017-04-20 17:48:17 +00:00
|
|
|
path.join(process.resourcesPath, 'node_modules')
|
|
|
|
])
|
|
|
|
|
|
|
|
modulePath = process.resourcesPath + '-foo'
|
2017-10-27 20:45:58 +00:00
|
|
|
const nodeModulePaths = Module._nodeModulePaths(modulePath)
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(nodeModulePaths).to.include(path.join(modulePath, 'node_modules'))
|
|
|
|
expect(nodeModulePaths).to.include(path.join(modulePath, '..', 'node_modules'))
|
2017-04-20 17:48:17 +00:00
|
|
|
|
|
|
|
modulePath = path.join(process.resourcesPath, 'foo')
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(Module._nodeModulePaths(modulePath)).to.deep.equal([
|
2017-04-20 17:48:17 +00:00
|
|
|
path.join(process.resourcesPath, 'foo', 'node_modules'),
|
|
|
|
path.join(process.resourcesPath, 'node_modules')
|
|
|
|
])
|
|
|
|
|
|
|
|
modulePath = path.join(process.resourcesPath, 'node_modules', 'foo')
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(Module._nodeModulePaths(modulePath)).to.deep.equal([
|
2017-04-20 17:48:17 +00:00
|
|
|
path.join(process.resourcesPath, 'node_modules', 'foo', 'node_modules'),
|
|
|
|
path.join(process.resourcesPath, 'node_modules')
|
|
|
|
])
|
|
|
|
|
|
|
|
modulePath = path.join(process.resourcesPath, 'node_modules', 'foo', 'bar')
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(Module._nodeModulePaths(modulePath)).to.deep.equal([
|
2017-04-20 17:48:17 +00:00
|
|
|
path.join(process.resourcesPath, 'node_modules', 'foo', 'bar', 'node_modules'),
|
|
|
|
path.join(process.resourcesPath, 'node_modules', 'foo', 'node_modules'),
|
|
|
|
path.join(process.resourcesPath, 'node_modules')
|
|
|
|
])
|
|
|
|
|
|
|
|
modulePath = path.join(process.resourcesPath, 'node_modules', 'foo', 'node_modules', 'bar')
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(Module._nodeModulePaths(modulePath)).to.deep.equal([
|
2017-04-20 17:48:17 +00:00
|
|
|
path.join(process.resourcesPath, 'node_modules', 'foo', 'node_modules', 'bar', 'node_modules'),
|
|
|
|
path.join(process.resourcesPath, 'node_modules', 'foo', 'node_modules'),
|
|
|
|
path.join(process.resourcesPath, 'node_modules')
|
|
|
|
])
|
|
|
|
})
|
2016-06-23 22:20:04 +00:00
|
|
|
})
|
|
|
|
|
2017-10-27 20:45:58 +00:00
|
|
|
describe('when the path is outside the resources path', () => {
|
|
|
|
it('includes paths outside of the resources path', () => {
|
2018-10-02 01:56:31 +00:00
|
|
|
const modulePath = path.resolve('/foo')
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(Module._nodeModulePaths(modulePath)).to.deep.equal([
|
2017-04-20 17:48:17 +00:00
|
|
|
path.join(modulePath, 'node_modules'),
|
|
|
|
path.resolve('/node_modules')
|
|
|
|
])
|
|
|
|
})
|
2016-06-23 22:20:04 +00:00
|
|
|
})
|
|
|
|
})
|
2017-04-03 10:46:24 +00:00
|
|
|
|
2017-04-20 17:48:17 +00:00
|
|
|
describe('require', () => {
|
|
|
|
describe('when loaded URL is not file: protocol', () => {
|
|
|
|
let w
|
2017-04-04 00:08:27 +00:00
|
|
|
|
2017-04-20 17:48:17 +00:00
|
|
|
beforeEach(() => {
|
2019-01-07 19:19:27 +00:00
|
|
|
w = new BrowserWindow({
|
|
|
|
show: false,
|
|
|
|
webPreferences: {
|
|
|
|
nodeIntegration: true
|
|
|
|
}
|
|
|
|
})
|
2017-04-03 10:46:24 +00:00
|
|
|
})
|
2017-04-04 00:08:27 +00:00
|
|
|
|
2017-04-20 17:48:17 +00:00
|
|
|
afterEach(async () => {
|
|
|
|
await closeWindow(w)
|
|
|
|
w = null
|
|
|
|
})
|
2017-04-12 02:55:41 +00:00
|
|
|
|
2017-04-20 17:48:17 +00:00
|
|
|
it('searches for module under app directory', async () => {
|
|
|
|
w.loadURL('about:blank')
|
|
|
|
const result = await w.webContents.executeJavaScript('typeof require("q").when')
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(result).to.equal('function')
|
2017-04-20 17:48:17 +00:00
|
|
|
})
|
2017-04-04 00:08:27 +00:00
|
|
|
})
|
2017-04-03 10:46:24 +00:00
|
|
|
})
|
|
|
|
})
|