forked from onflow/fcl-js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathresolve-arguments.test.js
145 lines (133 loc) · 3.37 KB
/
resolve-arguments.test.js
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
import {
resolveArguments
} from "../sdk.js"
describe("resolveArguments", () => {
const argID = "28948a11n4"
const argObj = {
type: "Address",
value: "0xf8d6e0586b0a20c7"
}
const tag = "SCRIPT"
const kind = "ARGUMENT"
const tempId = argID
test("should resolve synchronous arguments", async () => {
const ix = {
tag,
arguments: {
[argID]: {
asArgument: null,
kind,
resolve: undefined,
resolveArgument: undefined,
tempId,
value: argObj.value,
xform: {
label: "Address",
asArgument: () => argObj
}
}
}
}
const res = await resolveArguments(ix)
expect(res.arguments[argID].asArgument).toEqual(argObj)
})
test("should resolve asynchronous arguments", async () => {
const ix = {
tag,
arguments: {
[argID]: {
asArgument: null,
kind,
resolve: jest.fn(),
resolveArgument: jest.fn().mockResolvedValue({
xform: {
asArgument: () => argObj
}
}),
tempId,
value: null,
xform: {
label: "Address",
asArgument: () => argObj
}
}
}
}
const res = await resolveArguments(ix)
expect(res.arguments[argID].resolve).not.toHaveBeenCalled()
expect(res.arguments[argID].resolveArgument).toHaveBeenCalled()
expect(res.arguments[argID].asArgument).toEqual(argObj)
})
test("should resolve nested asynchronous arguments", async () => {
const resolveTwo = jest.fn().mockResolvedValue({
xform: {
asArgument: () => argObj
}
})
const ix = {
tag,
arguments: {
[argID]: {
asArgument: null,
kind,
resolve: undefined,
resolveArgument: jest.fn().mockResolvedValue({
xform: {
asArgument: () => argObj
},
resolveArgument: resolveTwo
}),
tempId,
value: null,
xform: {
label: "Address",
asArgument: () => argObj
}
}
}
}
const res = await resolveArguments(ix)
expect(res.arguments[argID].resolveArgument).toHaveBeenCalled()
expect(resolveTwo).toHaveBeenCalled()
expect(res.arguments[argID].asArgument).toEqual(argObj)
})
test("should throw an error if resolve recursion exceeds depth limit", async () => {
const ix = {
tag,
arguments: {
[argID]: {
asArgument: null,
kind,
resolve: undefined,
resolveArgument: jest.fn().mockResolvedValue({
tempId: "1",
xform: {
asArgument: () => argObj
},
resolveArgument: jest.fn().mockResolvedValue({
tempId: "2",
xform: {
asArgument: () => argObj
},
resolveArgument: jest.fn().mockResolvedValue({
tempId: "3",
xform: {
asArgument: () => argObj
}
})
})
}),
tempId,
value: null,
xform: {
label: "Address",
asArgument: () => argObj
}
}
}
}
await expect(resolveArguments(ix))
.rejects
.toThrow();
})
})