-
Notifications
You must be signed in to change notification settings - Fork 8
/
market_contract_test.go
316 lines (298 loc) · 8.46 KB
/
market_contract_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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
package test_main
import (
"fmt"
"testing"
. "github.com/bjartek/overflow"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestMarketContract(t *testing.T) {
/*
User 1 : with profile and switchboard
User 2 : with profile only
User 3 : with switchboard only
User 4 : with nothing
Test cases
1. correct and valid cap with type
2. correct but invalid cap with type
3. incorrect but valid cap with type
4. incorrect and indvalid cap with type
*/
otu := NewOverflowTest(t).
setupFIND()
otu.registerFtInRegistry().
registerDUCInRegistry()
initSwitchboard := func(name string) {
otu.O.Tx(
"initSwitchboard",
WithSigner(name),
WithArg("dapperAddress", "dapper"),
)
}
otu.createUser(1000.0, "user1").
createUser(1000.0, "user2").
setProfile("user1").
setProfile("user2")
initSwitchboard("user1")
initSwitchboard("user3")
type TestCase struct {
User string
OutcomePath string
GoToResidual bool
Description string
}
type TestFrame struct {
FTType string
Path string
Case []TestCase
}
tcs := []TestFrame{
{
FTType: "Flow",
Path: "/public/flowTokenReceiver",
Case: []TestCase{
{
User: "user1",
OutcomePath: "/public/flowTokenReceiver",
GoToResidual: false,
Description: "Should deposit to flow receiver",
},
{
User: "user2",
OutcomePath: "/public/flowTokenReceiver",
GoToResidual: false,
Description: "Should deposit to flow receiver",
},
{
User: "user3",
OutcomePath: "/public/flowTokenReceiver",
GoToResidual: false,
Description: "Should deposit to flow receiver",
},
{
User: "user4",
OutcomePath: "/public/flowTokenReceiver",
GoToResidual: false,
Description: "Should deposit to flow receiver",
},
},
},
{
FTType: "FUT",
Path: "/public/flowUtilityTokenReceiver",
Case: []TestCase{
{
User: "user1",
OutcomePath: "/public/flowUtilityTokenReceiver",
GoToResidual: false,
Description: "Should deposit to FUT",
},
{
User: "user2",
OutcomePath: "/public/GenericFTReceiver",
GoToResidual: true,
Description: "Should deposit to residual FUT because FUT is not set up",
},
{
User: "user3",
OutcomePath: "/public/flowUtilityTokenReceiver",
GoToResidual: false,
Description: "Should deposit to FUT",
},
{
User: "user4",
OutcomePath: "/public/GenericFTReceiver",
GoToResidual: true,
Description: "Should deposit to residual FUT because FUT is not set up",
},
},
},
{
FTType: "Flow",
Path: "/public/findProfileReceiver",
Case: []TestCase{
{
User: "user1",
OutcomePath: "/public/findProfileReceiver",
GoToResidual: false,
Description: "Should deposit to find profile link",
},
{
User: "user2",
OutcomePath: "/public/findProfileReceiver",
GoToResidual: false,
Description: "Should deposit to find profile link",
},
{
User: "user3",
OutcomePath: "/public/flowTokenReceiver",
GoToResidual: false,
Description: "Should deposit to flow receiver because profile is not set",
},
{
User: "user4",
OutcomePath: "/public/flowTokenReceiver",
GoToResidual: false,
Description: "Should deposit to flow receiver because profile is not set",
},
},
},
{
FTType: "USDC",
Path: "/public/findProfileReceiver",
Case: []TestCase{
{
User: "user1",
OutcomePath: "/public/findProfileReceiver",
GoToResidual: false,
Description: "Should deposit to find profile link",
},
{
User: "user2",
OutcomePath: "/public/findProfileReceiver",
GoToResidual: false,
Description: "Should deposit to find profile link",
},
{
User: "user3",
OutcomePath: "/public/USDCVaultReceiver",
GoToResidual: false,
Description: "Should deposit to residual because USDC is not set up",
},
{
User: "user4",
OutcomePath: "/public/GenericFTReceiver",
GoToResidual: true,
Description: "Should deposit to residual because USDC is not set up",
},
},
},
{
FTType: "FUT",
Path: "/public/GenericFTReceiver",
Case: []TestCase{
{
User: "user1",
OutcomePath: "/public/GenericFTReceiver",
GoToResidual: false,
Description: "Should deposit to switchboard because FT forwarder is set",
},
{
User: "user2",
OutcomePath: "/public/GenericFTReceiver",
GoToResidual: true,
Description: "Should deposit to residual because FUT is not set up",
},
{
User: "user3",
OutcomePath: "/public/GenericFTReceiver",
GoToResidual: false,
Description: "Should deposit to switchboard because FT forwarder is set",
},
{
User: "user4",
OutcomePath: "/public/GenericFTReceiver",
GoToResidual: true,
Description: "Should deposit to residual because FUT is not set up",
},
},
},
{
FTType: "Flow",
Path: "/public/GenericFTReceiver",
Case: []TestCase{
{
User: "user1",
OutcomePath: "/public/GenericFTReceiver",
GoToResidual: false,
Description: "Should deposit to switchboard link",
},
{
User: "user2",
OutcomePath: "/public/flowTokenReceiver",
GoToResidual: false,
Description: "Should deposit to flow receiver because switchboard is not set",
},
{
User: "user3",
OutcomePath: "/public/GenericFTReceiver",
GoToResidual: false,
Description: "Should deposit to switchboard link",
},
{
User: "user4",
OutcomePath: "/public/flowTokenReceiver",
GoToResidual: false,
Description: "Should deposit to flow receiver because switchboard is not set",
},
},
},
{
FTType: "USDC",
Path: "/public/GenericFTReceiver",
Case: []TestCase{
{
User: "user1",
OutcomePath: "/public/GenericFTReceiver",
GoToResidual: false,
Description: "Should deposit to switchboard link",
},
{
User: "user2",
OutcomePath: "/public/USDCVaultReceiver",
GoToResidual: false,
Description: "Should deposit to USDC receiver because switchboard is not set",
},
{
User: "user3",
OutcomePath: "/public/GenericFTReceiver",
GoToResidual: false,
Description: "Should deposit to switchboard link",
},
{
User: "user4",
OutcomePath: "/public/GenericFTReceiver",
GoToResidual: true,
Description: "Should deposit to residual because USDC is not set up",
},
},
},
}
trx := `
import Dev from "../contracts/Dev.cdc"
import FindMarket from "../contracts/FindMarket.cdc"
import FungibleToken from "../contracts/standard/FungibleToken.cdc"
pub fun main(addr: Address, ftType: String, path: PublicPath, outcomeRefPath: PublicPath, goToResidual: Bool) : Bool {
let ref = Dev.getPaymentWallet(addr: addr, ftType: ftType, path: path, panicOnFailCheck: false)
var account = getAccount(addr)
if goToResidual {
account = getAccount(FindMarket.residualAddress)
}
let outcomeRef = account.getCapability<&{FungibleToken.Receiver}>(outcomeRefPath).borrow()!
if ref.uuid == outcomeRef.uuid {
return true
}
let msg = "The fund is expected by test go to ".concat(outcomeRef.owner!.address.toString()).concat(" ").concat(outcomeRef.getType().identifier).concat(" But the fund went to ").concat(ref.owner!.address.toString()).concat(" ").concat(ref.getType().identifier)
panic(msg)
}
`
for testFrameIndex, tf := range tcs {
for testCaseIndex, tc := range tf.Case {
t.Run(fmt.Sprintf("TestFrameIndex:%d,TestCaseIndex:%d,description:Fund for %s %s", testFrameIndex, testCaseIndex, tc.User, tc.Description), func(t *testing.T) {
res, err := otu.O.Script(
trx,
WithArg("addr", tc.User),
WithArg("ftType", tf.FTType),
WithArg("path", tf.Path),
WithArg("outcomeRefPath", tc.OutcomePath),
WithArg("goToResidual", tc.GoToResidual),
).
GetAsInterface()
status, ok := res.(bool)
require.NoError(otu.T, err)
assert.True(otu.T, ok)
assert.Truef(otu.T, status, fmt.Sprintf("[TestFailed] TestFrameIndex : %d, TestCase no: %d, description: Fund for %s %s", testFrameIndex, testCaseIndex, tc.User, tc.Description))
})
}
}
}