mirror of
https://github.com/nodejs/node.git
synced 2025-05-06 23:10:15 +00:00

Use assert.strictEqual instead of assert.equal in tests, manually convert types where necessary. PR-URL: https://github.com/nodejs/node/pull/10698 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Teddy Katz <teddy.katz@gmail.com>
30 lines
903 B
JavaScript
30 lines
903 B
JavaScript
'use strict';
|
|
// Flags: --expose-gc
|
|
require('../common');
|
|
const assert = require('assert');
|
|
|
|
const vm = require('vm');
|
|
|
|
console.error('run in a new empty context');
|
|
let context = vm.createContext();
|
|
let result = vm.runInContext('"passed";', context);
|
|
assert.strictEqual('passed', result);
|
|
|
|
console.error('create a new pre-populated context');
|
|
context = vm.createContext({'foo': 'bar', 'thing': 'lala'});
|
|
assert.strictEqual('bar', context.foo);
|
|
assert.strictEqual('lala', context.thing);
|
|
|
|
console.error('test updating context');
|
|
result = vm.runInContext('var foo = 3;', context);
|
|
assert.strictEqual(3, context.foo);
|
|
assert.strictEqual('lala', context.thing);
|
|
|
|
// https://github.com/nodejs/node/issues/5768
|
|
console.error('run in contextified sandbox without referencing the context');
|
|
const sandbox = {x: 1};
|
|
vm.createContext(sandbox);
|
|
global.gc();
|
|
vm.runInContext('x = 2', sandbox);
|
|
// Should not crash.
|