node/test/simple/test-script-static-this.js

36 lines
853 B
JavaScript
Raw Normal View History

2010-12-05 07:20:34 +08:00
var common = require('../common');
var assert = require('assert');
var Script = require('vm').Script;
2010-12-05 05:40:39 +08:00
common.globalCheck = false;
common.debug('run a string');
2010-12-05 06:45:52 +08:00
var result = Script.runInThisContext('\'passed\';');
assert.equal('passed', result);
common.debug('thrown error');
assert.throws(function() {
2010-12-05 06:45:52 +08:00
Script.runInThisContext('throw new Error(\'test\');');
});
hello = 5;
Script.runInThisContext('hello = 2');
assert.equal(2, hello);
2010-12-05 06:45:52 +08:00
common.debug('pass values');
code = 'foo = 1;' +
'bar = 2;' +
'if (typeof baz !== \'undefined\') throw new Error(\'test fail\');';
foo = 2;
2010-12-05 06:45:52 +08:00
obj = { foo: 0, baz: 3 };
var baz = Script.runInThisContext(code);
assert.equal(0, obj.foo);
assert.equal(2, bar);
assert.equal(1, foo);
2010-12-05 06:45:52 +08:00
common.debug('call a function');
f = function() { foo = 100 };
Script.runInThisContext('f()');
assert.equal(100, foo);