mirror of
https://github.com/rubyjs/therubyracer
synced 2023-03-27 23:21:42 -04:00
40 lines
No EOL
1.1 KiB
Ruby
40 lines
No EOL
1.1 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe V8::C::Function do
|
|
before do
|
|
@cxt = V8::C::Context::New()
|
|
@cxt.Enter()
|
|
end
|
|
after do
|
|
@cxt.Exit()
|
|
end
|
|
it "can be called" do
|
|
V8::C::HandleScope() do
|
|
fn = run '(function() {return "foo"})'
|
|
fn.Call(@cxt.Global(), 0, []).Utf8Value().should eql "foo"
|
|
end
|
|
end
|
|
|
|
it "can be called as a constructor" do
|
|
V8::C::HandleScope() do
|
|
fn = run '(function() {this.foo = "foo"})'
|
|
fn.NewInstance().Get(V8::C::String::New('foo')).Utf8Value().should eql "foo"
|
|
end
|
|
end
|
|
|
|
it "can be called as a constructor with arguments" do
|
|
V8::C::HandleScope() do
|
|
fn = run '(function(foo) {this.foo = foo})'
|
|
object = fn.NewInstance(1, [V8::C::String::New("bar")])
|
|
object.Get(V8::C::String::New('foo')).Utf8Value().should eql "bar"
|
|
end
|
|
end
|
|
|
|
def run(source)
|
|
source = V8::C::String::New(source.to_s)
|
|
filename = V8::C::String::New("<eval>")
|
|
script = V8::C::Script::New(source, filename)
|
|
result = script.Run()
|
|
result.kind_of?(V8::C::String) ? result.Utf8Value() : result
|
|
end
|
|
end |