-
Notifications
You must be signed in to change notification settings - Fork 93
/
Copy pathidb_test.go
99 lines (91 loc) · 2.18 KB
/
idb_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
package idb_test
import (
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"github.com/algorand/indexer/v3/idb"
"github.com/algorand/indexer/v3/util/test"
sdk "github.com/algorand/go-algorand-sdk/v2/types"
)
func TestTxnRowNext(t *testing.T) {
// txn with 2 inner transactions and 2 nested inner transactions
stxn := test.MakeAppCallWithInnerTxn(sdk.Address(test.AccountA), sdk.Address(test.AccountB), sdk.Address(test.AccountC), sdk.Address(test.AccountD), sdk.Address(test.AccountE))
testcases := []struct {
name string
// input
ascending bool
txnRow idb.TxnRow
// expected
round uint64
intra uint32
errMsg string
}{
{
name: "simple 1",
txnRow: idb.TxnRow{Intra: 0, Round: 0},
round: 0,
intra: 0,
},
{
name: "simple 2",
txnRow: idb.TxnRow{Intra: 500, Round: 1_234_567_890},
round: 1_234_567_890,
intra: 500,
},
{
name: "inner txns descending",
ascending: false,
txnRow: idb.TxnRow{
RootTxn: &stxn,
Extra: idb.TxnExtra{
RootIntra: idb.OptionalUint{Present: true, Value: 50},
},
Intra: 51,
Round: 1_234_567_890,
},
round: 1_234_567_890,
intra: 50,
},
{
name: "inner txns ascending",
ascending: true,
txnRow: idb.TxnRow{
RootTxn: &stxn,
Extra: idb.TxnExtra{
RootIntra: idb.OptionalUint{Present: true, Value: 50},
},
Intra: 51,
Round: 1_234_567_890,
},
round: 1_234_567_890,
intra: 54, // RootIntra + RootTxnBytes.numInnerTxns()
},
{
name: "root txn absent",
ascending: true,
txnRow: idb.TxnRow{
Extra: idb.TxnExtra{
RootIntra: idb.OptionalUint{Present: true, Value: 50},
},
Intra: 51,
Round: 1_234_567_890,
},
errMsg: "was not given transaction",
},
}
for _, tc := range testcases {
t.Run(tc.name, func(t *testing.T) {
nextStr, err := tc.txnRow.Next(tc.ascending)
if tc.errMsg != "" {
assert.NotNil(t, err)
assert.Contains(t, err.Error(), tc.errMsg)
return
}
require.NoError(t, err)
round, intra, err := idb.DecodeTxnRowNext(nextStr)
require.NoError(t, err)
assert.Equal(t, tc.round, round)
assert.Equal(t, tc.intra, intra)
})
}
}