-
Notifications
You must be signed in to change notification settings - Fork 0
/
function_template_test.go
executable file
·166 lines (142 loc) · 4 KB
/
function_template_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
// Copyright 2021 Roger Chapman and the v8go contributors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package v8go_test
import (
"fmt"
"testing"
v8 "github.com/nzhenev/v8go"
)
func TestFunctionTemplate(t *testing.T) {
t.Parallel()
iso := v8.NewIsolate()
defer iso.Dispose()
fn := v8.NewFunctionTemplate(iso, func(*v8.FunctionCallbackInfo) *v8.Value { return nil })
if fn == nil {
t.Error("expected FunctionTemplate, but got <nil>")
}
}
func TestFunctionTemplate_panic_on_nil_isolate(t *testing.T) {
t.Parallel()
defer func() {
if err := recover(); err == nil {
t.Error("expected panic")
}
}()
v8.NewFunctionTemplate(nil, func(*v8.FunctionCallbackInfo) *v8.Value {
t.Error("unexpected call")
return nil
})
}
func TestFunctionTemplate_panic_on_nil_callback(t *testing.T) {
t.Parallel()
defer func() {
if err := recover(); err == nil {
t.Error("expected panic")
}
}()
iso := v8.NewIsolate()
defer iso.Dispose()
v8.NewFunctionTemplate(iso, nil)
}
func TestFunctionTemplate_generates_values(t *testing.T) {
t.Parallel()
iso := v8.NewIsolate()
defer iso.Dispose()
global := v8.NewObjectTemplate(iso)
printfn := v8.NewFunctionTemplate(iso, func(info *v8.FunctionCallbackInfo) *v8.Value {
fmt.Printf("%+v\n", info.Args())
return nil
})
global.Set("print", printfn, v8.ReadOnly)
ctx := v8.NewContext(iso, global)
defer ctx.Close()
ctx.RunScript("print('foo', 'bar', 0, 1)", "")
if ctx.RetainedValueCount() != 6 {
t.Errorf("expected 6 retained values, got: %d", ctx.RetainedValueCount())
}
}
func TestFunctionTemplate_releases_values(t *testing.T) {
t.Parallel()
iso := v8.NewIsolate()
defer iso.Dispose()
global := v8.NewObjectTemplate(iso)
printfn := v8.NewFunctionTemplate(iso, func(info *v8.FunctionCallbackInfo) *v8.Value {
defer info.Release()
fmt.Printf("%+v\n", info.Args())
return nil
})
global.Set("print", printfn, v8.ReadOnly)
ctx := v8.NewContext(iso, global)
defer ctx.Close()
ctx.RunScript("print('foo', 'bar', 0, 1)", "")
// there is a constant factor associated with the global.
if ctx.RetainedValueCount() != 1 {
t.Errorf("expected 1 retained values, got: %d", ctx.RetainedValueCount())
}
}
func TestFunctionTemplateGetFunction(t *testing.T) {
t.Parallel()
iso := v8.NewIsolate()
defer iso.Dispose()
ctx := v8.NewContext(iso)
defer ctx.Close()
var args *v8.FunctionCallbackInfo
tmpl := v8.NewFunctionTemplate(iso, func(info *v8.FunctionCallbackInfo) *v8.Value {
args = info
reply, _ := v8.NewValue(iso, "hello")
return reply
})
fn := tmpl.GetFunction(ctx)
ten, err := v8.NewValue(iso, int32(10))
if err != nil {
t.Fatal(err)
}
ret, err := fn.Call(v8.Undefined(iso), ten)
if err != nil {
t.Fatal(err)
}
if len(args.Args()) != 1 || args.Args()[0].String() != "10" {
t.Fatalf("expected args [10], got: %+v", args.Args())
}
if !ret.IsString() || ret.String() != "hello" {
t.Fatalf("expected return value of 'hello', was: %v", ret)
}
}
func TestFunctionCallbackInfoThis(t *testing.T) {
t.Parallel()
iso := v8.NewIsolate()
defer iso.Dispose()
foo := v8.NewObjectTemplate(iso)
foo.Set("name", "foobar")
var this *v8.Object
barfn := v8.NewFunctionTemplate(iso, func(info *v8.FunctionCallbackInfo) *v8.Value {
this = info.This()
return nil
})
foo.Set("bar", barfn)
global := v8.NewObjectTemplate(iso)
global.Set("foo", foo)
ctx := v8.NewContext(iso, global)
defer ctx.Close()
ctx.RunScript("foo.bar()", "")
v, _ := this.Get("name")
if v.String() != "foobar" {
t.Errorf("expected this.name to be foobar, but got %q", v)
}
}
func ExampleFunctionTemplate() {
iso := v8.NewIsolate()
defer iso.Dispose()
global := v8.NewObjectTemplate(iso)
printfn := v8.NewFunctionTemplate(iso, func(info *v8.FunctionCallbackInfo) *v8.Value {
fmt.Printf("%+v\n", info.Args())
return nil
})
global.Set("print", printfn, v8.ReadOnly)
ctx := v8.NewContext(iso, global)
defer ctx.Close()
ctx.RunScript("print('foo', 'bar', 0, 1)", "")
// Output:
// [foo bar 0 1]
}