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.
|
|
|
common = require("../common");
|
|
|
|
assert = common.assert
|
|
|
|
|
|
|
|
var Script = process.binding('evals').Script;
|
|
|
|
|
|
|
|
common.debug('run in a new empty context');
|
|
|
|
var context = Script.createContext();
|
|
|
|
var result = Script.runInContext('"passed";', context);
|
|
|
|
assert.equal('passed', result);
|
|
|
|
|
|
|
|
common.debug('create a new pre-populated context');
|
|
|
|
context = Script.createContext({'foo': 'bar', 'thing': 'lala'});
|
|
|
|
assert.equal('bar', context.foo);
|
|
|
|
assert.equal('lala', context.thing);
|
|
|
|
|
|
|
|
common.debug('test updating context');
|
|
|
|
result = Script.runInContext('var foo = 3;', context);
|
|
|
|
assert.equal(3, context.foo);
|
|
|
|
assert.equal('lala', context.thing);
|