forked from robertkrimen/otto
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfunction_stack_test.go
48 lines (37 loc) · 1.34 KB
/
function_stack_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
package otto
import (
"testing"
)
// this is its own file because the tests in it rely on the line numbers of
// some of the functions defined here. putting it in with the rest of the
// tests would probably be annoying.
func TestFunction_stack(t *testing.T) {
tt(t, func() {
vm := New()
s, _ := vm.Compile("fake.js", `function X(fn1, fn2, fn3) { fn1(fn2, fn3); }`)
vm.Run(s)
expected := []_frame{
{native: true, nativeFile: "function_stack_test.go", nativeLine: 30, offset: 0, callee: "github.com/diggernaut/otto.TestFunction_stack.func1.2"},
{native: true, nativeFile: "function_stack_test.go", nativeLine: 25, offset: 0, callee: "github.com/diggernaut/otto.TestFunction_stack.func1.1"},
{native: false, nativeFile: "", nativeLine: 0, offset: 29, callee: "X", file: s.program.file},
{native: false, nativeFile: "", nativeLine: 0, offset: 29, callee: "X", file: s.program.file},
}
vm.Set("A", func(c FunctionCall) Value {
c.Argument(0).Call(UndefinedValue())
return UndefinedValue()
})
vm.Set("B", func(c FunctionCall) Value {
depth := 0
for scope := c.Otto.runtime.scope; scope != nil; scope = scope.outer {
is(scope.frame, expected[depth])
depth++
}
is(depth, 4)
return UndefinedValue()
})
x, _ := vm.Get("X")
a, _ := vm.Get("A")
b, _ := vm.Get("B")
x.Call(UndefinedValue(), x, a, b)
})
}