2016-03-25 23:03:49 +03:00
|
|
|
const assert = require('assert')
|
2016-06-24 01:20:04 +03:00
|
|
|
const Module = require('module')
|
2016-03-25 23:03:49 +03:00
|
|
|
const path = require('path')
|
2017-04-03 13:46:24 +03:00
|
|
|
const {remote} = require('electron')
|
|
|
|
const {BrowserWindow} = remote
|
2017-04-12 05:55:41 +03:00
|
|
|
const {closeWindow} = require('./window-helpers')
|
2016-01-12 05:40:23 +03:00
|
|
|
|
2017-05-26 02:40:15 +03:00
|
|
|
const nativeModulesEnabled = remote.getGlobal('nativeModulesEnabled')
|
|
|
|
|
2017-04-20 20:48:17 +03:00
|
|
|
describe('modules support', function () {
|
2016-03-25 23:03:49 +03:00
|
|
|
var fixtures = path.join(__dirname, 'fixtures')
|
2016-02-17 04:09:41 +03:00
|
|
|
|
2017-04-20 20:48:17 +03:00
|
|
|
describe('third-party module', function () {
|
2017-05-26 02:40:15 +03:00
|
|
|
describe('runas', function () {
|
|
|
|
if (!nativeModulesEnabled) return
|
|
|
|
|
|
|
|
it('can be required in renderer', function () {
|
|
|
|
require('runas')
|
|
|
|
})
|
2016-02-17 04:09:41 +03:00
|
|
|
|
2017-05-26 02:40:15 +03:00
|
|
|
it('can be required in node binary', function (done) {
|
|
|
|
var runas = path.join(fixtures, 'module', 'runas.js')
|
|
|
|
var child = require('child_process').fork(runas)
|
|
|
|
child.on('message', function (msg) {
|
|
|
|
assert.equal(msg, 'ok')
|
|
|
|
done()
|
2016-03-25 23:03:49 +03:00
|
|
|
})
|
|
|
|
})
|
2017-05-26 02:40:15 +03:00
|
|
|
})
|
2016-02-17 04:09:41 +03:00
|
|
|
|
2017-05-26 02:40:15 +03:00
|
|
|
describe('ffi', function () {
|
|
|
|
if (!nativeModulesEnabled) return
|
|
|
|
if (process.platform === 'win32') return
|
2016-05-23 17:31:00 +03:00
|
|
|
|
2017-05-26 02:40:15 +03:00
|
|
|
it('does not crash', function () {
|
|
|
|
var ffi = require('ffi')
|
|
|
|
var libm = ffi.Library('libm', {
|
|
|
|
ceil: ['double', ['double']]
|
2016-03-25 23:03:49 +03:00
|
|
|
})
|
2017-05-26 02:40:15 +03:00
|
|
|
assert.equal(libm.ceil(1.5), 2)
|
2016-03-25 23:03:49 +03:00
|
|
|
})
|
2017-05-26 02:40:15 +03:00
|
|
|
})
|
2017-04-20 20:48:17 +03:00
|
|
|
|
|
|
|
describe('q', function () {
|
|
|
|
var Q = require('q')
|
|
|
|
describe('Q.when', function () {
|
|
|
|
it('emits the fullfil callback', function (done) {
|
|
|
|
Q(true).then(function (val) {
|
|
|
|
assert.equal(val, true)
|
|
|
|
done()
|
|
|
|
})
|
2016-03-25 23:03:49 +03:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
2017-01-11 06:29:22 +03:00
|
|
|
|
2017-04-20 20:48:17 +03:00
|
|
|
describe('coffee-script', function () {
|
|
|
|
it('can be registered and used to require .coffee files', function () {
|
|
|
|
assert.doesNotThrow(function () {
|
|
|
|
require('coffee-script').register()
|
|
|
|
})
|
|
|
|
assert.strictEqual(require('./fixtures/module/test.coffee'), true)
|
2017-02-07 19:48:01 +03:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2017-01-11 06:29:22 +03:00
|
|
|
describe('global variables', function () {
|
|
|
|
describe('process', function () {
|
|
|
|
it('can be declared in a module', function () {
|
2017-01-30 20:58:44 +03:00
|
|
|
assert.strictEqual(require('./fixtures/module/declare-process'), 'declared process')
|
2017-01-11 06:29:22 +03:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('global', function () {
|
|
|
|
it('can be declared in a module', function () {
|
2017-01-30 21:08:12 +03:00
|
|
|
assert.strictEqual(require('./fixtures/module/declare-global'), 'declared global')
|
2017-01-11 06:29:22 +03:00
|
|
|
})
|
|
|
|
})
|
2017-02-07 02:08:08 +03:00
|
|
|
|
|
|
|
describe('Buffer', function () {
|
|
|
|
it('can be declared in a module', function () {
|
|
|
|
assert.strictEqual(require('./fixtures/module/declare-buffer'), 'declared Buffer')
|
|
|
|
})
|
|
|
|
})
|
2017-01-11 06:29:22 +03:00
|
|
|
})
|
2016-06-24 01:20:04 +03:00
|
|
|
|
2017-04-20 20:48:17 +03:00
|
|
|
describe('Module._nodeModulePaths', function () {
|
|
|
|
describe('when the path is inside the resources path', function () {
|
|
|
|
it('does not include paths outside of the resources path', function () {
|
|
|
|
let modulePath = process.resourcesPath
|
|
|
|
assert.deepEqual(Module._nodeModulePaths(modulePath), [
|
|
|
|
path.join(process.resourcesPath, 'node_modules')
|
|
|
|
])
|
|
|
|
|
|
|
|
modulePath = process.resourcesPath + '-foo'
|
|
|
|
let nodeModulePaths = Module._nodeModulePaths(modulePath)
|
|
|
|
assert(nodeModulePaths.includes(path.join(modulePath, 'node_modules')))
|
|
|
|
assert(nodeModulePaths.includes(path.join(modulePath, '..', 'node_modules')))
|
|
|
|
|
|
|
|
modulePath = path.join(process.resourcesPath, 'foo')
|
|
|
|
assert.deepEqual(Module._nodeModulePaths(modulePath), [
|
|
|
|
path.join(process.resourcesPath, 'foo', 'node_modules'),
|
|
|
|
path.join(process.resourcesPath, 'node_modules')
|
|
|
|
])
|
|
|
|
|
|
|
|
modulePath = path.join(process.resourcesPath, 'node_modules', 'foo')
|
|
|
|
assert.deepEqual(Module._nodeModulePaths(modulePath), [
|
|
|
|
path.join(process.resourcesPath, 'node_modules', 'foo', 'node_modules'),
|
|
|
|
path.join(process.resourcesPath, 'node_modules')
|
|
|
|
])
|
|
|
|
|
|
|
|
modulePath = path.join(process.resourcesPath, 'node_modules', 'foo', 'bar')
|
|
|
|
assert.deepEqual(Module._nodeModulePaths(modulePath), [
|
|
|
|
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')
|
|
|
|
assert.deepEqual(Module._nodeModulePaths(modulePath), [
|
|
|
|
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-24 01:20:04 +03:00
|
|
|
})
|
|
|
|
|
2017-04-20 20:48:17 +03:00
|
|
|
describe('when the path is outside the resources path', function () {
|
|
|
|
it('includes paths outside of the resources path', function () {
|
|
|
|
let modulePath = path.resolve('/foo')
|
|
|
|
assert.deepEqual(Module._nodeModulePaths(modulePath), [
|
|
|
|
path.join(modulePath, 'node_modules'),
|
|
|
|
path.resolve('/node_modules')
|
|
|
|
])
|
|
|
|
})
|
2016-06-24 01:20:04 +03:00
|
|
|
})
|
|
|
|
})
|
2017-04-03 13:46:24 +03:00
|
|
|
|
2017-04-20 20:48:17 +03:00
|
|
|
describe('require', () => {
|
|
|
|
describe('when loaded URL is not file: protocol', () => {
|
|
|
|
let w
|
2017-04-04 03:08:27 +03:00
|
|
|
|
2017-04-20 20:48:17 +03:00
|
|
|
beforeEach(() => {
|
|
|
|
w = new BrowserWindow({
|
|
|
|
show: false
|
|
|
|
})
|
2017-04-03 13:46:24 +03:00
|
|
|
})
|
2017-04-04 03:08:27 +03:00
|
|
|
|
2017-04-20 20:48:17 +03:00
|
|
|
afterEach(async () => {
|
|
|
|
await closeWindow(w)
|
|
|
|
w = null
|
|
|
|
})
|
2017-04-12 05:55:41 +03:00
|
|
|
|
2017-04-20 20:48:17 +03:00
|
|
|
it('searches for module under app directory', async () => {
|
|
|
|
w.loadURL('about:blank')
|
|
|
|
const result = await w.webContents.executeJavaScript('typeof require("q").when')
|
|
|
|
assert.equal(result, 'function')
|
|
|
|
})
|
2017-04-04 03:08:27 +03:00
|
|
|
})
|
2017-04-03 13:46:24 +03:00
|
|
|
})
|
|
|
|
})
|