mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
92 lines
2.1 KiB
92 lines
2.1 KiB
'use strict';
|
|
require('../common');
|
|
const assert = require('assert');
|
|
const vm = require('vm');
|
|
const spawnSync = require('child_process').spawnSync;
|
|
const Buffer = require('buffer').Buffer;
|
|
|
|
function getSource(tag) {
|
|
return `(function ${tag}() { return \'${tag}\'; })`;
|
|
}
|
|
|
|
function produce(source, count) {
|
|
if (!count)
|
|
count = 1;
|
|
|
|
const out = spawnSync(process.execPath, [ '-e', `
|
|
'use strict';
|
|
var assert = require('assert');
|
|
var vm = require('vm');
|
|
|
|
var data;
|
|
for (var i = 0; i < ${count}; i++) {
|
|
var script = new vm.Script(process.argv[1], {
|
|
produceCachedData: true
|
|
});
|
|
|
|
assert(!script.cachedDataProduced || script.cachedData instanceof Buffer);
|
|
|
|
if (script.cachedDataProduced)
|
|
data = script.cachedData.toString('base64');
|
|
}
|
|
console.log(data);
|
|
`, source]);
|
|
|
|
assert.equal(out.status, 0, out.stderr + '');
|
|
|
|
return Buffer.from(out.stdout.toString(), 'base64');
|
|
}
|
|
|
|
function testProduceConsume() {
|
|
const source = getSource('original');
|
|
|
|
const data = produce(source);
|
|
|
|
// It should consume code cache
|
|
const script = new vm.Script(source, {
|
|
cachedData: data
|
|
});
|
|
assert(!script.cachedDataRejected);
|
|
assert.equal(script.runInThisContext()(), 'original');
|
|
}
|
|
testProduceConsume();
|
|
|
|
function testProduceMultiple() {
|
|
const source = getSource('original');
|
|
|
|
produce(source, 3);
|
|
}
|
|
testProduceMultiple();
|
|
|
|
function testRejectInvalid() {
|
|
const source = getSource('invalid');
|
|
|
|
const data = produce(source);
|
|
|
|
// It should reject invalid code cache
|
|
const script = new vm.Script(getSource('invalid_1'), {
|
|
cachedData: data
|
|
});
|
|
assert(script.cachedDataRejected);
|
|
assert.equal(script.runInThisContext()(), 'invalid_1');
|
|
}
|
|
testRejectInvalid();
|
|
|
|
function testRejectSlice() {
|
|
const source = getSource('slice');
|
|
|
|
const data = produce(source).slice(4);
|
|
|
|
const script = new vm.Script(source, {
|
|
cachedData: data
|
|
});
|
|
assert(script.cachedDataRejected);
|
|
}
|
|
testRejectSlice();
|
|
|
|
// It should throw on non-Buffer cachedData
|
|
assert.throws(() => {
|
|
new vm.Script('function abc() {}', {
|
|
cachedData: 'ohai'
|
|
});
|
|
});
|
|
|