forked from stellar/go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathledger_entry_test.go
125 lines (113 loc) · 2.75 KB
/
ledger_entry_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
package xdr
import (
"testing"
"github.com/stellar/go/gxdr"
"github.com/stellar/go/randxdr"
"github.com/stretchr/testify/assert"
)
func TestLedgerEntrySponsorship(t *testing.T) {
entry := LedgerEntry{}
desc := entry.SponsoringID()
assert.Nil(t, desc)
sponsor := MustAddress("GCO26ZSBD63TKYX45H2C7D2WOFWOUSG5BMTNC3BG4QMXM3PAYI6WHKVZ")
desc = SponsorshipDescriptor(&sponsor)
entry = LedgerEntry{
Ext: LedgerEntryExt{
V: 1,
V1: &LedgerEntryExtensionV1{
SponsoringId: desc,
},
},
}
actualDesc := entry.SponsoringID()
assert.Equal(t, desc, actualDesc)
}
func TestNormalizedClaimableBalance(t *testing.T) {
input := LedgerEntry{
LastModifiedLedgerSeq: 20,
Data: LedgerEntryData{
Type: LedgerEntryTypeClaimableBalance,
ClaimableBalance: &ClaimableBalanceEntry{
Claimants: []Claimant{
{
Type: ClaimantTypeClaimantTypeV0,
V0: &ClaimantV0{
Destination: MustAddress("GC3C4AKRBQLHOJ45U4XG35ESVWRDECWO5XLDGYADO6DPR3L7KIDVUMML"),
},
},
{
Type: ClaimantTypeClaimantTypeV0,
V0: &ClaimantV0{
Destination: MustAddress("GAHK7EEG2WWHVKDNT4CEQFZGKF2LGDSW2IVM4S5DP42RBW3K6BTODB4A"),
},
},
},
Ext: ClaimableBalanceEntryExt{
V: 0,
},
},
},
}
expectedOutput := LedgerEntry{
LastModifiedLedgerSeq: 20,
Data: LedgerEntryData{
Type: LedgerEntryTypeClaimableBalance,
ClaimableBalance: &ClaimableBalanceEntry{
Claimants: []Claimant{
{
Type: ClaimantTypeClaimantTypeV0,
V0: &ClaimantV0{
Destination: MustAddress("GAHK7EEG2WWHVKDNT4CEQFZGKF2LGDSW2IVM4S5DP42RBW3K6BTODB4A"),
},
},
{
Type: ClaimantTypeClaimantTypeV0,
V0: &ClaimantV0{
Destination: MustAddress("GC3C4AKRBQLHOJ45U4XG35ESVWRDECWO5XLDGYADO6DPR3L7KIDVUMML"),
},
},
},
Ext: ClaimableBalanceEntryExt{
V: 1,
V1: &ClaimableBalanceEntryExtensionV1{
Flags: 0,
},
},
},
},
Ext: LedgerEntryExt{
V: 1,
V1: &LedgerEntryExtensionV1{},
},
}
input.Normalize()
assert.Equal(t, expectedOutput, input)
}
func TestLedgerKeyCoverage(t *testing.T) {
gen := randxdr.NewGenerator()
for i := 0; i < 10000; i++ {
ledgerEntry := LedgerEntry{}
shape := &gxdr.LedgerEntry{}
gen.Next(
shape,
[]randxdr.Preset{},
)
assert.NoError(t, gxdr.Convert(shape, &ledgerEntry))
_, err := ledgerEntry.LedgerKey()
assert.NoError(t, err)
}
}
func TestLedgerEntryDataLedgerKeyCoverage(t *testing.T) {
gen := randxdr.NewGenerator()
for i := 0; i < 10000; i++ {
ledgerEntryData := LedgerEntryData{}
shape := &gxdr.XdrAnon_LedgerEntry_Data{}
gen.Next(
shape,
[]randxdr.Preset{},
)
assert.NoError(t, gxdr.Convert(shape, &ledgerEntryData))
_, err := ledgerEntryData.LedgerKey()
assert.NoError(t, err)
}
}