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.
34 lines
754 B
34 lines
754 B
15 years ago
|
require("../common");
|
||
|
|
||
|
var Script = process.binding('evals').Script;
|
||
|
|
||
|
debug('run a string');
|
||
|
var result = Script.runInThisContext('"passed";');
|
||
|
assert.equal('passed', result);
|
||
|
|
||
|
debug('thrown error');
|
||
|
assert.throws(function() {
|
||
|
Script.runInThisContext('throw new Error("test");');
|
||
|
});
|
||
|
|
||
|
hello = 5;
|
||
|
Script.runInThisContext('hello = 2');
|
||
|
assert.equal(2, hello);
|
||
|
|
||
|
|
||
|
debug("pass values");
|
||
|
code = "foo = 1;"
|
||
|
+ "bar = 2;"
|
||
|
+ "if (typeof baz !== 'undefined') throw new Error('test fail');";
|
||
|
foo = 2;
|
||
|
obj = { foo : 0, baz : 3 };
|
||
|
var baz = Script.runInThisContext(code);
|
||
|
assert.equal(0, obj.foo);
|
||
|
assert.equal(2, bar);
|
||
|
assert.equal(1, foo);
|
||
|
|
||
|
debug("call a function");
|
||
|
f = function () { foo = 100 };
|
||
|
Script.runInThisContext("f()");
|
||
|
assert.equal(100, foo);
|