-
Notifications
You must be signed in to change notification settings - Fork 15
/
client_test.go
716 lines (600 loc) · 21.5 KB
/
client_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
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
package aptos
import (
"strings"
"sync"
"testing"
"time"
"github.com/aptos-labs/aptos-go-sdk/api"
"github.com/stretchr/testify/assert"
)
const (
singleSignerScript = "a11ceb0b060000000701000402040a030e0c041a04051e20073e30086e2000000001010204010001000308000104030401000105050601000002010203060c0305010b0001080101080102060c03010b0001090002050b00010900000a6170746f735f636f696e04636f696e04436f696e094170746f73436f696e087769746864726177076465706f7369740000000000000000000000000000000000000000000000000000000000000001000001080b000b0138000c030b020b03380102"
fundAmount = 100_000_000
vmStatusSuccess = "Executed successfully"
)
type CreateSigner func() (TransactionSigner, error)
var TestSigners map[string]CreateSigner
type CreateSingleSignerPayload func(client *Client, sender TransactionSigner, options ...any) (*RawTransaction, error)
var TestSingleSignerPayloads map[string]CreateSingleSignerPayload
func init() {
initSigners()
initSingleSignerPayloads()
}
func initSigners() {
TestSigners = make(map[string]CreateSigner)
TestSigners["Standard Ed25519"] = func() (TransactionSigner, error) {
signer, err := NewEd25519Account()
return any(signer).(TransactionSigner), err
}
TestSigners["Single Sender Ed25519"] = func() (TransactionSigner, error) {
signer, err := NewEd25519SingleSenderAccount()
return any(signer).(TransactionSigner), err
}
TestSigners["Single Sender Secp256k1"] = func() (TransactionSigner, error) {
signer, err := NewSecp256k1Account()
return any(signer).(TransactionSigner), err
}
TestSigners["2-of-3 MultiKey"] = func() (TransactionSigner, error) {
signer, err := NewMultiKeyTestSigner(3, 2)
return any(signer).(TransactionSigner), err
}
TestSigners["5-of-32 MultiKey"] = func() (TransactionSigner, error) {
signer, err := NewMultiKeyTestSigner(32, 5)
return any(signer).(TransactionSigner), err
}
/* TODO: MultiEd25519 is not supported ATM
TestSigners["MultiEd25519"] = func() (TransactionSigner, error) {
signer, err := NewMultiEd25519Signer(3, 2)
return any(signer).(TransactionSigner), err
}
*/
}
func initSingleSignerPayloads() {
TestSingleSignerPayloads = make(map[string]CreateSingleSignerPayload)
TestSingleSignerPayloads["Entry Function"] = buildSingleSignerEntryFunction
TestSingleSignerPayloads["Script"] = buildSingleSignerScript
}
func TestNamedConfig(t *testing.T) {
names := []string{"mainnet", "devnet", "testnet", "localnet"}
for _, name := range names {
assert.Equal(t, name, NamedNetworks[name].Name)
}
}
func TestAptosClientHeaderValue(t *testing.T) {
assert.Greater(t, len(ClientHeaderValue), 0)
assert.NotEqual(t, "aptos-go-sdk/unk", ClientHeaderValue)
}
func Test_SingleSignerFlows(t *testing.T) {
for name, signer := range TestSigners {
for payloadName, buildSingleSignerPayload := range TestSingleSignerPayloads {
t.Run(name+" "+payloadName, func(t *testing.T) {
testTransaction(t, signer, buildSingleSignerPayload)
})
t.Run(name+" "+payloadName+" simulation", func(t *testing.T) {
testTransactionSimulation(t, signer, buildSingleSignerPayload)
})
}
}
}
func setupIntegrationTest(t *testing.T, createAccount CreateSigner) (*Client, TransactionSigner) {
// All of these run against localnet
if testing.Short() {
t.Skip("integration test expects network connection to localnet")
}
// Create a client
client, err := createTestClient()
assert.NoError(t, err)
// Verify chain id retrieval works
chainId, err := client.GetChainId()
assert.NoError(t, err)
if testConfig == DevnetConfig {
assert.Greater(t, chainId, LocalnetConfig.ChainId)
} else {
assert.Equal(t, testConfig.ChainId, chainId)
}
// Verify gas estimation works
_, err = client.EstimateGasPrice()
assert.NoError(t, err)
// Create an account
account, err := createAccount()
assert.NoError(t, err)
// Fund the account with 1 APT
err = client.Fund(account.AccountAddress(), fundAmount)
assert.NoError(t, err)
return client, account
}
func testTransaction(t *testing.T, createAccount CreateSigner, buildTransaction CreateSingleSignerPayload) {
client, account := setupIntegrationTest(t, createAccount)
// Build transaction
rawTxn, err := buildTransaction(client, account)
assert.NoError(t, err)
// Sign transaction
signedTxn, err := rawTxn.SignedTransaction(account)
assert.NoError(t, err)
// Send transaction
result, err := client.SubmitTransaction(signedTxn)
assert.NoError(t, err)
hash := result.Hash
// Wait for the transaction
_, err = client.WaitForTransaction(hash)
assert.NoError(t, err)
// Read transaction by hash
txn, err := client.TransactionByHash(hash)
assert.NoError(t, err)
// Read transaction by version
userTxn, _ := txn.Inner.(*api.UserTransaction)
version := userTxn.Version
// Load the transaction again
txnByVersion, err := client.TransactionByVersion(version)
assert.NoError(t, err)
// Assert that both are the same
expectedTxn, err := txn.UserTransaction()
assert.NoError(t, err)
actualTxn, err := txnByVersion.UserTransaction()
assert.NoError(t, err)
assert.Equal(t, expectedTxn, actualTxn)
}
func testTransactionSimulation(t *testing.T, createAccount CreateSigner, buildTransaction CreateSingleSignerPayload) {
client, account := setupIntegrationTest(t, createAccount)
// Simulate transaction (no options)
rawTxn, err := buildTransaction(client, account)
assert.NoError(t, err)
simulatedTxn, err := client.SimulateTransaction(rawTxn, account)
switch account.(type) {
case *MultiKeyTestSigner:
// multikey simulation currently not supported
assert.Error(t, err)
assert.ErrorContains(t, err, "currently unsupported sender derivation scheme")
return // skip rest of the tests
default:
assert.NoError(t, err)
assert.Equal(t, true, simulatedTxn[0].Success)
assert.Equal(t, vmStatusSuccess, simulatedTxn[0].VmStatus)
assert.Greater(t, simulatedTxn[0].GasUsed, uint64(0))
}
// simulate transaction (estimate gas unit price)
rawTxnZeroGasUnitPrice, err := buildTransaction(client, account, GasUnitPrice(0))
assert.NoError(t, err)
simulatedTxn, err = client.SimulateTransaction(rawTxnZeroGasUnitPrice, account, EstimateGasUnitPrice(true))
assert.NoError(t, err)
assert.Equal(t, true, simulatedTxn[0].Success)
assert.Equal(t, vmStatusSuccess, simulatedTxn[0].VmStatus)
estimatedGasUnitPrice := simulatedTxn[0].GasUnitPrice
assert.Greater(t, estimatedGasUnitPrice, uint64(0))
// simulate transaction (estimate max gas amount)
rawTxnZeroMaxGasAmount, err := buildTransaction(client, account, MaxGasAmount(0))
assert.NoError(t, err)
simulatedTxn, err = client.SimulateTransaction(rawTxnZeroMaxGasAmount, account, EstimateMaxGasAmount(true))
assert.NoError(t, err)
assert.Equal(t, true, simulatedTxn[0].Success)
assert.Equal(t, vmStatusSuccess, simulatedTxn[0].VmStatus)
assert.Greater(t, simulatedTxn[0].MaxGasAmount, uint64(0))
// simulate transaction (estimate prioritized gas unit price and max gas amount)
rawTxnZeroGasConfig, err := buildTransaction(client, account, GasUnitPrice(0), MaxGasAmount(0))
assert.NoError(t, err)
simulatedTxn, err = client.SimulateTransaction(rawTxnZeroGasConfig, account, EstimatePrioritizedGasUnitPrice(true), EstimateMaxGasAmount(true))
assert.NoError(t, err)
assert.Equal(t, true, simulatedTxn[0].Success)
assert.Equal(t, vmStatusSuccess, simulatedTxn[0].VmStatus)
estimatedGasUnitPrice = simulatedTxn[0].GasUnitPrice
assert.Greater(t, estimatedGasUnitPrice, uint64(0))
assert.Greater(t, simulatedTxn[0].MaxGasAmount, uint64(0))
}
func TestAPTTransferTransaction(t *testing.T) {
sender, err := NewEd25519Account()
assert.NoError(t, err)
dest, err := NewEd25519Account()
assert.NoError(t, err)
client, err := createTestClient()
assert.NoError(t, err)
signedTxn, err := APTTransferTransaction(client, sender, dest.Address, 1337, MaxGasAmount(123123), GasUnitPrice(111), ExpirationSeconds(42), ChainIdOption(71), SequenceNumber(31337))
assert.NoError(t, err)
assert.NotNil(t, signedTxn)
// use defaults for: max gas amount, gas unit price
signedTxn, err = APTTransferTransaction(client, sender, dest.Address, 1337, ExpirationSeconds(42), ChainIdOption(71), SequenceNumber(31337))
assert.NoError(t, err)
assert.NotNil(t, signedTxn)
}
func Test_Indexer(t *testing.T) {
client, err := createTestClient()
assert.NoError(t, err)
// Fund account
account, err := NewEd25519Account()
assert.NoError(t, err)
err = client.Fund(account.AccountAddress(), 10)
assert.NoError(t, err)
balance, err := client.AccountAPTBalance(account.AccountAddress())
assert.NoError(t, err)
// TODO: May need to wait on indexer for this one
coins, err := client.GetCoinBalances(account.AccountAddress())
assert.NoError(t, err)
switch len(coins) {
case 0:
// TODO we need to wait on the indexer, we'll skip for now
case 1:
expectedBalance := CoinBalance{
CoinType: "0x1::aptos_coin::AptosCoin",
Amount: balance,
}
assert.Equal(t, expectedBalance, coins[0])
default:
panic("Unexpected amount of coins")
}
// Get current version
status, err := client.GetProcessorStatus("default_processor")
assert.NoError(t, err)
// TODO: When we have waiting on indexer, we can add this check to be more accurate
assert.GreaterOrEqual(t, status, uint64(0))
}
func Test_Genesis(t *testing.T) {
client, err := createTestClient()
assert.NoError(t, err)
genesis, err := client.BlockByHeight(0, true)
assert.NoError(t, err)
txn, err := genesis.Transactions[0].GenesisTransaction()
assert.NoError(t, err)
assert.Equal(t, uint64(0), *txn.TxnVersion())
}
func Test_Block(t *testing.T) {
client, err := createTestClient()
assert.NoError(t, err)
info, err := client.Info()
assert.NoError(t, err)
// TODO: I need to add hardcoded testing sets for these conversions
numToCheck := uint64(10)
blockHeight := info.BlockHeight()
waitGroup := &sync.WaitGroup{}
waitGroup.Add(int(numToCheck))
for i := uint64(0); i < numToCheck; i++ {
go func() {
blockNumber := blockHeight - i
blockByHeight, err := client.BlockByHeight(blockNumber, true)
assert.NoError(t, err)
assert.Equal(t, blockNumber, blockByHeight.BlockHeight)
// Block should always be last - first + 1 (since they would be 1 if they're the same (inclusive)
assert.Equal(t, 1+blockByHeight.LastVersion-blockByHeight.FirstVersion, uint64(len(blockByHeight.Transactions)))
// Version should be the same
blockByVersion, err := client.BlockByVersion(blockByHeight.FirstVersion, true)
assert.NoError(t, err)
assert.Equal(t, blockByHeight, blockByVersion)
waitGroup.Done()
}()
}
waitGroup.Wait()
}
func Test_Account(t *testing.T) {
client, err := createTestClient()
assert.NoError(t, err)
account, err := client.Account(AccountOne)
assert.NoError(t, err)
sequenceNumber, err := account.SequenceNumber()
assert.NoError(t, err)
assert.Equal(t, uint64(0), sequenceNumber)
authKey, err := account.AuthenticationKey()
assert.NoError(t, err)
assert.Equal(t, AccountOne[:], authKey[:])
}
func Test_Transactions(t *testing.T) {
client, err := createTestClient()
assert.NoError(t, err)
start := uint64(1)
count := uint64(2)
// Specific 2 should only give 2
transactions, err := client.Transactions(&start, &count)
assert.NoError(t, err)
assert.Len(t, transactions, 2)
// This will give the latest 2
transactions, err = client.Transactions(nil, &count)
assert.NoError(t, err)
assert.Len(t, transactions, 2)
// This will give the 25 from 2
transactions, err = client.Transactions(&start, nil)
assert.NoError(t, err)
assert.Len(t, transactions, 25)
// This will give the latest 25
transactions, err = client.Transactions(nil, nil)
assert.NoError(t, err)
assert.Len(t, transactions, 25)
}
func submitAccountTransaction(t *testing.T, client *Client, account *Account, seqNo uint64) {
payload, err := CoinTransferPayload(nil, AccountOne, 1)
assert.NoError(t, err)
rawTxn, err := client.BuildTransaction(account.AccountAddress(), TransactionPayload{Payload: payload}, SequenceNumber(seqNo))
assert.NoError(t, err)
signedTxn, err := rawTxn.SignedTransaction(account)
assert.NoError(t, err)
txn, err := client.SubmitTransaction(signedTxn)
assert.NoError(t, err)
_, err = client.WaitForTransaction(txn.Hash)
assert.NoError(t, err)
}
func Test_AccountTransactions(t *testing.T) {
t.Parallel()
client, err := createTestClient()
assert.NoError(t, err)
// Create a bunch of transactions so we can test the pagination
account, err := NewEd25519Account()
assert.NoError(t, err)
err = client.Fund(account.AccountAddress(), 100_000_000)
assert.NoError(t, err)
// Build and submit 100 transactions
waitGroup := sync.WaitGroup{}
waitGroup.Add(100)
for i := uint64(0); i < 100; i++ {
go func() {
submitAccountTransaction(t, client, account, i)
waitGroup.Done()
}()
}
waitGroup.Wait()
// Submit one more transaction
submitAccountTransaction(t, client, account, 100)
// Fetch default
transactions, err := client.AccountTransactions(account.AccountAddress(), nil, nil)
assert.NoError(t, err)
assert.Len(t, transactions, 25)
// Fetch 101 with no start
zero := uint64(0)
one := uint64(1)
ten := uint64(10)
hundredOne := uint64(101)
transactions, err = client.AccountTransactions(account.AccountAddress(), nil, &hundredOne)
assert.NoError(t, err)
assert.Len(t, transactions, 101)
// Fetch 101 with start
transactions, err = client.AccountTransactions(account.AccountAddress(), &zero, &hundredOne)
assert.NoError(t, err)
assert.Len(t, transactions, 101)
// Fetch 100 from 1
transactions, err = client.AccountTransactions(account.AccountAddress(), &one, &hundredOne)
assert.NoError(t, err)
assert.Len(t, transactions, 100)
// Fetch default from 0
transactions, err = client.AccountTransactions(account.AccountAddress(), &zero, nil)
assert.NoError(t, err)
assert.Len(t, transactions, 25)
// Check global transactions API
t.Run("Default transaction size, no start", func(t *testing.T) {
transactions, err = client.Transactions(nil, nil)
assert.NoError(t, err)
assert.Len(t, transactions, 25)
})
t.Run("Default transaction size, start from zero", func(t *testing.T) {
transactions, err = client.Transactions(&zero, nil)
assert.NoError(t, err)
assert.Len(t, transactions, 25)
})
t.Run("Default transaction size, start from one", func(t *testing.T) {
transactions, err = client.Transactions(&one, nil)
assert.NoError(t, err)
assert.Len(t, transactions, 25)
})
t.Run("101 transactions, no start", func(t *testing.T) {
transactions, err = client.Transactions(nil, &hundredOne)
assert.NoError(t, err)
assert.Len(t, transactions, 101)
})
t.Run("101 transactions, start zero", func(t *testing.T) {
transactions, err = client.Transactions(&zero, &hundredOne)
assert.NoError(t, err)
assert.Len(t, transactions, 101)
})
t.Run("101 transactions, start one", func(t *testing.T) {
transactions, err = client.Transactions(&one, &hundredOne)
assert.NoError(t, err)
assert.Len(t, transactions, 101)
})
t.Run("10 transactions, no start", func(t *testing.T) {
transactions, err = client.Transactions(nil, &ten)
assert.NoError(t, err)
assert.Len(t, transactions, 10)
})
t.Run("10 transactions, start one", func(t *testing.T) {
transactions, err = client.Transactions(&one, &ten)
assert.NoError(t, err)
assert.Len(t, transactions, 10)
})
}
func Test_Info(t *testing.T) {
client, err := createTestClient()
assert.NoError(t, err)
info, err := client.Info()
assert.NoError(t, err)
assert.Greater(t, info.BlockHeight(), uint64(0))
}
func Test_AccountResources(t *testing.T) {
client, err := createTestClient()
assert.NoError(t, err)
resources, err := client.AccountResources(AccountOne)
assert.NoError(t, err)
assert.Greater(t, len(resources), 0)
resourcesBcs, err := client.AccountResourcesBCS(AccountOne)
assert.NoError(t, err)
assert.Greater(t, len(resourcesBcs), 0)
}
// A worker thread that reads from a chan of transactions that have been submitted and waits on their completion status
func concurrentTxnWaiter(
results chan TransactionSubmissionResponse,
waitResults chan ConcResponse[*api.UserTransaction],
client *Client,
t *testing.T,
wg *sync.WaitGroup,
) {
if wg != nil {
defer wg.Done()
}
responseCount := 0
for response := range results {
responseCount++
assert.NoError(t, response.Err)
waitResponse, err := client.WaitForTransaction(response.Response.Hash, PollTimeout(21*time.Second))
if err != nil {
t.Logf("%s err %s", response.Response.Hash, err)
} else if waitResponse == nil {
t.Logf("%s nil response", response.Response.Hash)
} else if !waitResponse.Success {
t.Logf("%s !Success", response.Response.Hash)
}
waitResults <- ConcResponse[*api.UserTransaction]{Result: waitResponse, Err: err}
}
t.Logf("concurrentTxnWaiter done, %d responses", responseCount)
// signal completion
// (do not close the output as there may be other workers writing to it)
waitResults <- ConcResponse[*api.UserTransaction]{Result: nil, Err: nil}
}
func Test_Concurrent_Submission(t *testing.T) {
const numTxns = uint64(100)
const numWaiters = 4
client, err := createTestClient()
assert.NoError(t, err)
account1, err := NewEd25519Account()
assert.NoError(t, err)
account2, err := NewEd25519Account()
assert.NoError(t, err)
err = client.Fund(account1.AccountAddress(), 100_000_000)
assert.NoError(t, err)
err = client.Fund(account2.AccountAddress(), 0)
assert.NoError(t, err)
// start submission goroutine
payloads := make(chan TransactionBuildPayload, 50)
results := make(chan TransactionSubmissionResponse, 50)
go client.BuildSignAndSubmitTransactions(account1, payloads, results, ExpirationSeconds(20))
transferPayload, err := CoinTransferPayload(nil, AccountOne, 100)
assert.NoError(t, err)
// Generate transactions
for i := uint64(0); i < numTxns; i++ {
payloads <- TransactionBuildPayload{
Id: i,
Type: TransactionSubmissionTypeSingle, // TODO: not needed?
Inner: TransactionPayload{
Payload: transferPayload,
},
}
}
close(payloads)
t.Log("done submitting txns")
// Start waiting on txns
waitResults := make(chan ConcResponse[*api.UserTransaction], numWaiters*10)
var wg sync.WaitGroup
wg.Add(numWaiters)
for range numWaiters {
go concurrentTxnWaiter(results, waitResults, client, t, &wg)
}
// Wait on all the results, recording the succeeding ones
txnMap := make(map[uint64]bool)
waitersRunning := numWaiters
// We could wait on a close, but I'm going to be a little pickier here
i := uint64(0)
txnGoodEvents := 0
for {
response := <-waitResults
if response.Err == nil && response.Result == nil {
t.Log("txn waiter signaled done")
waitersRunning--
if waitersRunning == 0 {
close(results)
t.Log("last txn waiter done")
break
}
continue
}
assert.NoError(t, response.Err)
assert.True(t, (response.Result != nil) && response.Result.Success)
if response.Result != nil {
txnMap[response.Result.SequenceNumber] = true
txnGoodEvents++
}
i++
if i >= numTxns {
t.Logf("waited on %d txns, done", i)
break
}
}
t.Log("done waiting for txns, waiting for txn waiter threads")
wg.Wait()
// Check all transactions were successful from [0-numTxns)
t.Logf("got %d(%d) successful txns of %d attempted, error submission indexes:", len(txnMap), txnGoodEvents, numTxns)
allTrue := true
for i := uint64(0); i < numTxns; i++ {
allTrue = allTrue && txnMap[i]
if !txnMap[i] {
t.Logf("%d", i)
}
}
assert.True(t, allTrue, "all txns successful")
assert.Equal(t, len(txnMap), int(numTxns), "num txns successful == num txns sent")
}
func TestClient_View(t *testing.T) {
client, err := createTestClient()
assert.NoError(t, err)
payload := &ViewPayload{
Module: ModuleId{Address: AccountOne, Name: "coin"},
Function: "balance",
ArgTypes: []TypeTag{AptosCoinTypeTag},
Args: [][]byte{AccountOne[:]},
}
vals, err := client.View(payload)
assert.NoError(t, err)
assert.Len(t, vals, 1)
_, err = StrToUint64(vals[0].(string))
assert.NoError(t, err)
}
func TestClient_BlockByHeight(t *testing.T) {
client, err := createTestClient()
assert.NoError(t, err)
_, err = client.BlockByHeight(1, true)
assert.NoError(t, err)
}
func TestClient_NodeAPIHealthCheck(t *testing.T) {
client, err := createTestClient()
assert.NoError(t, err)
t.Run("Node API health check default", func(t *testing.T) {
t.Parallel()
response, err := client.NodeAPIHealthCheck()
assert.NoError(t, err)
assert.True(t, strings.Contains(response.Message, "ok"), "Node API health check failed"+response.Message)
})
// Now, check node API health check with a future time that should never fail
t.Run("Node API health check far future", func(t *testing.T) {
t.Parallel()
response, err := client.NodeAPIHealthCheck(10000)
assert.NoError(t, err)
assert.True(t, strings.Contains(response.Message, "ok"), "Node API health check failed"+response.Message)
})
// Now, check node API health check with 0
t.Run("Node API health check fail", func(t *testing.T) {
t.Parallel()
// Now, check node API health check with a time that should probably fail
_, err := client.NodeAPIHealthCheck(0)
assert.Error(t, err)
})
}
func buildSingleSignerEntryFunction(client *Client, sender TransactionSigner, options ...any) (*RawTransaction, error) {
return APTTransferTransaction(client, sender, AccountOne, 100, options...)
}
func buildSingleSignerScript(client *Client, sender TransactionSigner, options ...any) (*RawTransaction, error) {
scriptBytes, err := ParseHex(singleSignerScript)
if err != nil {
return nil, err
}
amount := uint64(1)
dest := AccountOne
rawTxn, err := client.BuildTransaction(sender.AccountAddress(),
TransactionPayload{Payload: &Script{
Code: scriptBytes,
ArgTypes: []TypeTag{},
Args: []ScriptArgument{{
Variant: ScriptArgumentU64,
Value: amount,
}, {
Variant: ScriptArgumentAddress,
Value: dest,
}},
}},
options...,
)
if err != nil {
return nil, err
}
return rawTxn, nil
}