-
Notifications
You must be signed in to change notification settings - Fork 20
/
transaction_integration_test.go
453 lines (398 loc) · 12.3 KB
/
transaction_integration_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
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
package overflow
import (
"context"
"testing"
"github.com/bjartek/underflow"
"github.com/onflow/flow-go/utils/io"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
/*
Tests must be in the same folder as flow.json with contracts and transactions/scripts in subdirectories in order for the path resolver to work correctly
*/
func TestTransactionIntegration(t *testing.T) {
customResolver := func(input string, _ underflow.ResolveType) (string, error) {
return "A.f8d6e0586b0a20c7.Debug.Foo", nil
}
o, errG := OverflowTesting(WithCoverageReport())
require.NoError(t, errG)
require.NotNil(t, o)
o.Tx("mint_tokens", WithSignerServiceAccount(), WithArg("recipient", "first"), WithArg("amount", 1.0)).AssertSuccess(t)
t.Run("run transaction get results", func(t *testing.T) {
result := o.Tx("mint_tokens",
WithSignerServiceAccount(),
WithArg("recipient", "first"),
WithArg("amount", 100.1)).
AssertSuccess(t).
AssertEventCount(t, 4).
AssertEvent(t, "FlowToken.TokensDeposited", map[string]interface{}{
"amount": 100.1,
}).
AssertEvent(t, "FungibleToken.Deposited", map[string]interface{}{
"amount": 100.1,
})
require.NoError(t, result.Err)
oTx, err := o.GetOverflowTransactionById(context.Background(), result.Transaction.ID())
require.NoError(t, err)
assert.Equal(t, []string{"BorrowValue"}, oTx.AuthorizerTypes["0xf8d6e0586b0a20c7"])
})
t.Run("fail on missing signer", func(t *testing.T) {
o.Tx("create_nft_collection").AssertFailure(t, "💩 You need to set the proposer signer")
})
t.Run("fail on missing signer with built in assert", func(t *testing.T) {
o.Tx("create_nft_collection", WithAssertFailure(t, "💩 You need to set the proposer signer"))
})
t.Run("fail on wrong transaction name", func(t *testing.T) {
o.Tx("create_nft_collectio", WithSigner("first")).
AssertFailure(t, "💩 Could not read interaction file from path=./transactions/create_nft_collectio.cdc")
})
t.Run("mint tokens with different base path", func(t *testing.T) {
o.Tx("../tx/mint_tokens",
WithSignerServiceAccount(),
WithArg("recipient", "first"),
WithArg("amount", 100.1)).
AssertSuccess(t)
})
t.Run("Mint tokens assert events", func(t *testing.T) {
result := o.Tx("mint_tokens",
WithSignerServiceAccount(),
WithArg("recipient", "first"),
WithArg("amount", 100.1)).
AssertSuccess(t).
AssertEventCount(t, 4).
AssertEmitEventName(t, "FlowToken.TokensDeposited").
AssertEvent(t, "FlowToken.TokensDeposited", map[string]interface{}{
"amount": 100.1,
},
)
assert.Equal(t, 1, len(result.GetEventsWithName("FungibleToken.Deposited")))
report := o.GetCoverageReport()
assert.Equal(t, "19.4%", report.Summary().Coverage)
})
t.Run("Mint tokens assert events with built in assertion", func(t *testing.T) {
o.Tx("mint_tokens",
WithSignerServiceAccount(),
WithArg("recipient", "first"),
WithArg("amount", 100.1),
WithAssertEvent(t, "FlowToken.TokensDeposited", map[string]interface{}{
"amount": 100.1,
}))
})
t.Run("Mint tokens assert events with built in assertion that is changed", func(t *testing.T) {
mintTokens := o.TxFileNameFN("mint_tokens",
WithSignerServiceAccount(),
WithArg("recipient", "first"),
WithArg("amount", 100.1),
WithAssertEvent(t, "FlowToken.TokensDeposited", map[string]interface{}{
"amount": 0,
}))
mintTokens(WithAssertEventReplaceField("FlowToken.TokensDeposited", "amount", 100.1))
})
t.Run("Assert get id", func(t *testing.T) {
result := o.Tx(`
import Debug from "../contracts/Debug.cdc"
transaction(id:UInt64) {
prepare(acct: auth(BorrowValue) &Account) {
Debug.id(id)
}
}`,
WithSigner("first"),
WithArg("id", 1),
).AssertSuccess(t)
res, err := result.GetIdFromEvent("LogNum", "id")
assert.NoError(t, err)
assert.Equal(t, uint64(1), res)
assert.Equal(t, []uint64{1}, result.GetIdsFromEvent("LogNum", "id"))
})
/*
* This is not a big deal but transaction submitted is not here anymore
t.Run("emulator log", func(t *testing.T) {
res := o.Tx(`
import "Debug"
transaction(message:String) {
prepare(acct: auth(BorrowValue) &Account) {
Debug.log(message) } }`,
WithSigner("first"),
WithArg("message", "foobar"),
)
res.
AssertSuccess(t).
AssertEmulatorLog(t, "Transaction submitted")
})
*/
t.Run("Inline transaction with debug log", func(t *testing.T) {
res := o.Tx(`
import "Debug"
transaction(message:String) {
prepare(acct: auth(BorrowValue) &Account) {
Debug.log(message) } }`,
WithSigner("first"),
WithArg("message", "foobar"),
)
res.
AssertSuccess(t).
AssertDebugLog(t, "foobar").
AssertComputationLessThenOrEqual(t, 40)
})
t.Run("Mint tokens and marshal event", func(t *testing.T) {
result := o.Tx("mint_tokens",
WithSignerServiceAccount(),
WithArg("recipient", "first"),
WithArg("amount", 100.1)).
AssertSuccess(t)
var events []interface{}
err2 := result.MarshalEventsWithName("TokensDeposited", &events)
assert.NoError(t, err2)
assert.Equal(t, 1, len(events))
var singleEvent interface{}
err2 = result.GetEventsWithName("TokensDeposited")[0].MarshalAs(&singleEvent)
assert.NoError(t, err2)
assert.NotNil(t, singleEvent)
})
t.Run("Send struct to transaction", func(t *testing.T) {
o.Tx(`
import Debug from "../contracts/Debug.cdc"
transaction(foo: Debug.Foo) {
prepare(acct: auth(BorrowValue) &Account) {
}
}`,
WithSigner("first"),
WithArg("foo", Debug_Foo{Bar: "baz"}),
).AssertSuccess(t)
})
t.Run("Send struct to transaction With Skip field", func(t *testing.T) {
o.Tx(`
import Debug from "../contracts/Debug.cdc"
transaction(foo: Debug.Foo) {
prepare(acct: auth(BorrowValue) &Account) {
}
}`,
WithSigner("first"),
WithArg("foo", Debug_Foo_Skip{Bar: "baz", Skip: "skip"}),
).AssertSuccess(t)
})
t.Run("Send list of struct to transaction custom qualifier", func(t *testing.T) {
o.Tx(`
import Debug from "../contracts/Debug.cdc"
transaction(foo: [Debug.Foo]) {
prepare(acct: auth(BorrowValue) &Account) {
}
}`,
WithSigner("first"),
WithStructArgsCustomQualifier("foo", customResolver, Foo{Bar: "baz"}, Foo{Bar: "baz2"}),
).AssertSuccess(t)
})
t.Run("Send struct to transaction custom qualifier", func(t *testing.T) {
o.Tx(`
import Debug from "../contracts/Debug.cdc"
transaction(foo: Debug.Foo) {
prepare(acct: auth(BorrowValue) &Account) {
}
}`,
WithSigner("first"),
WithStructArgCustomResolver("foo", customResolver, Foo{Bar: "baz"}),
).AssertSuccess(t)
})
t.Run("Send list of struct to transaction", func(t *testing.T) {
o.Tx(`
import Debug from "../contracts/Debug.cdc"
transaction(foo: [Debug.Foo]) {
prepare(acct: auth(BorrowValue) &Account) {
}
}`,
WithSigner("first"),
WithArgs("foo", []Debug_Foo{{Bar: "baz"}, {Bar: "baz2"}}),
).AssertSuccess(t)
})
t.Run("Send nestedstruct to transaction", func(t *testing.T) {
o.Tx(`
import Debug from "../contracts/Debug.cdc"
transaction(foo: Debug.FooBar) {
prepare(acct: auth(BorrowValue) &Account) {
}
}`,
WithSigner("first"),
WithArg("foo", Debug_FooBar{Bar: "bar", Foo: Debug_Foo{Bar: "baz"}}),
).AssertSuccess(t)
})
t.Run("Send nestedstruct with array to transaction", func(t *testing.T) {
o.Tx(`
import Debug from "../contracts/Debug.cdc"
transaction(foo: Debug.FooListBar) {
prepare(acct: auth(BorrowValue) &Account) {
}
}`,
WithSigner("first"),
WithArg("foo", Debug_FooListBar{Bar: "bar", Foo: []Debug_Foo2{{Bar: "0xf8d6e0586b0a20c7"}}}),
).AssertSuccess(t)
})
t.Run("Send HttpFile to transaction", func(t *testing.T) {
o.Tx(`
import MetadataViews from "../contracts/MetadataViews.cdc"
transaction(foo: {MetadataViews.File}) {
prepare(acct: auth(BorrowValue) &Account) {
}
}`,
WithSigner("first"),
WithArg("foo", MetadataViews_HTTPFile{Url: "foo"}),
).AssertSuccess(t)
})
t.Run("Send IpfsFile to transaction", func(t *testing.T) {
o.Tx(`
import MetadataViews from "../contracts/MetadataViews.cdc"
transaction(foo: {MetadataViews.File}) {
prepare(acct: auth(BorrowValue) &Account) {
}
}`,
WithSigner("first"),
WithArg("foo", MetadataViews_IPFSFile{Cid: "foo"}),
).AssertSuccess(t)
})
t.Run("Send IpfsFile with path to transaction", func(t *testing.T) {
path := "/Foo"
o.Tx(`
import MetadataViews from "../contracts/MetadataViews.cdc"
transaction(foo: {MetadataViews.File}) {
prepare(acct: auth(BorrowValue) &Account) {
}
}`,
WithSigner("first"),
WithArg("foo", MetadataViews_IPFSFile{Cid: "foo", Path: &path}),
).AssertSuccess(t)
})
t.Run("Send IpfsDisplay to transaction", func(t *testing.T) {
o.Tx(`
import MetadataViews from "../contracts/MetadataViews.cdc"
transaction(display: MetadataViews.Display) {
prepare(acct: auth(BorrowValue) &Account) {
}
}`,
WithSigner("first"),
WithArg("display", MetadataViews_Display_IPFS{Name: "foo", Description: "desc", Thumbnail: MetadataViews_IPFSFile{Cid: "foo"}}),
).AssertSuccess(t)
})
t.Run("Send HttpDisplay to transaction", func(t *testing.T) {
o.Tx(`
import MetadataViews from "../contracts/MetadataViews.cdc"
transaction(display: MetadataViews.Display) {
prepare(acct: auth(BorrowValue) &Account) {
}
}`,
WithSigner("first"),
WithArg("display", MetadataViews_Display_Http{Name: "foo", Description: "desc", Thumbnail: MetadataViews_HTTPFile{Url: "foo"}}),
).AssertSuccess(t)
})
t.Run("Send Trait to transaction", func(t *testing.T) {
o.Tx(`
import MetadataViews from "../contracts/MetadataViews.cdc"
transaction(trait: MetadataViews.Trait) {
prepare(acct: auth(BorrowValue) &Account) {
}
}`,
WithSigner("first"),
WithArg("trait", MetadataViews_Trait{Name: "foo", Value: "bar"}),
).AssertSuccess(t)
})
t.Run("manual signer account", func(t *testing.T) {
first, _ := o.AccountE("first")
o.Tx(`
transaction() {
prepare(acct: auth(BorrowValue) &Account) {
}
}`,
WithManualSigner(first),
).AssertSuccess(t)
})
t.Run("store declaration info", func(t *testing.T) {
res := o.Tx(`
transaction() {
prepare(acct: auth(BorrowValue, SaveValue) &Account) {
}
}`,
WithSigner("first"),
).AssertSuccess(t)
assert.Equal(t, []string{"BorrowValue", "SaveValue"}, res.DeclarationInfo.Authorizers[0])
})
t.Run("send flow", func(t *testing.T) {
result := o.Tx("sendFlow",
WithSignerServiceAccount(),
WithArg("to", "first"),
WithArg("amount", 100.1)).
AssertSuccess(t).
AssertEventCount(t, 3).
AssertEmitEventName(t, "FlowToken.TokensDeposited").
AssertEvent(t, "FlowToken.TokensDeposited", map[string]interface{}{
"amount": 100.1,
},
)
assert.Equal(t, 1, len(result.GetEventsWithName("FungibleToken.Deposited")))
o.Tx("sendFlow",
WithSigner("first"),
WithArg("to", "second"),
WithArg("amount", 10.0)).
AssertSuccess(t).
AssertEventCount(t, 4)
})
bytes, err := o.GetCoverageReport().MarshalJSON()
require.NoError(t, err)
err = io.WriteFile("coverage-report.json", bytes)
require.NoError(t, err)
}
func TestTransactionEventFiltering(t *testing.T) {
filter := OverflowEventFilter{
"Log": []string{"msg"},
}
filterLocal := OverflowEventFilter{
"LogNum": []string{"id"},
}
o, err := OverflowTesting(WithGlobalEventFilter(filter))
require.NotNil(t, o)
require.NoError(t, err)
o.Tx(`
import Debug from "../contracts/Debug.cdc"
transaction(message:String) {
prepare(acct: auth(BorrowValue) &Account) {
Debug.log(message)
Debug.id(1)
} }`,
WithEventsFilter(filterLocal),
WithSigner("first"),
WithArg("message", "foobar"),
).AssertSuccess(t).AssertEventCount(t, 0)
}
func TestFillUpSpace(t *testing.T) {
o, err := OverflowTesting(WithFlowForNewUsers(0.001))
assert.NoError(t, err)
result := o.GetFreeCapacity("first")
assert.Equal(t, 198993, result)
o.FillUpStorage("first")
assert.NoError(t, o.Error)
result2 := o.GetFreeCapacity("first")
assert.LessOrEqual(t, result2, 49000)
}
// in Debug.cdc
type Foo struct {
Bar string
}
type Debug_FooListBar struct {
Bar string
Foo []Debug_Foo2
}
type Debug_FooBar struct {
Bar string
Foo Debug_Foo
}
type Debug_Foo_Skip struct {
Bar string
Skip string `cadence:"-"`
}
type Debug_Foo2 struct {
Bar string `cadence:"bar,cadenceAddress"`
}
type Debug_Foo struct {
Bar string
}
// in Foo.Bar.Baz
type Baz struct {
Something string `json:"bar"`
}