forked from lino-network/lino
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manager_test.go
300 lines (268 loc) · 8.1 KB
/
manager_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
package vote
import (
"testing"
"github.com/lino-network/lino/types"
"github.com/lino-network/lino/x/vote/model"
"github.com/stretchr/testify/assert"
sdk "github.com/cosmos/cosmos-sdk/types"
)
func TestAddVoter(t *testing.T) {
ctx, am, vm, _, _ := setupTest(t, 0)
minBalance := types.NewCoinFromInt64(1 * types.Decimals)
user1 := createTestAccount(ctx, am, "user1", minBalance)
testCases := []struct {
testName string
username types.AccountKey
coin types.Coin
expectedResult sdk.Error
}{
{
testName: "normal case",
username: user1,
coin: types.NewCoinFromInt64(100 * types.Decimals),
expectedResult: nil,
},
}
for _, tc := range testCases {
res := vm.AddVoter(ctx, tc.username, tc.coin)
if !assert.Equal(t, tc.expectedResult, res) {
t.Errorf("%s: diff result, got %v, want %v", tc.testName, res, tc.expectedResult)
}
}
}
func TestCanBecomeValidator(t *testing.T) {
ctx, am, vm, _, _ := setupTest(t, 0)
minBalance := types.NewCoinFromInt64(1 * types.Decimals)
user1 := createTestAccount(ctx, am, "user1", minBalance)
valParam, _ := vm.paramHolder.GetValidatorParam(ctx)
testCases := []struct {
testName string
addVoter bool
username types.AccountKey
coin types.Coin
expectedResult bool
}{
{
testName: "non-voter can't become validator",
addVoter: false,
username: user1,
coin: types.NewCoinFromInt64(0),
expectedResult: false,
},
{
testName: "become validator successfully",
addVoter: true,
username: user1,
coin: valParam.ValidatorMinVotingDeposit,
expectedResult: true,
},
}
for _, tc := range testCases {
if tc.addVoter {
err := vm.AddVoter(ctx, tc.username, tc.coin)
if err != nil {
t.Errorf("%s: failed to add voter, got err %v", tc.testName, err)
}
}
actualRes := vm.CanBecomeValidator(ctx, tc.username)
if actualRes != tc.expectedResult {
t.Errorf("%s: diff result, got %v, want %v", tc.testName, actualRes, tc.expectedResult)
}
}
}
func TestAddAndClaimInterest(t *testing.T) {
testName := "TestAddAndClaimInterest"
ctx, am, vm, _, _ := setupTest(t, 0)
accKey := types.AccountKey("accKey")
minBalance := types.NewCoinFromInt64(1000 * types.Decimals)
createTestAccount(ctx, am, "user1", minBalance)
err := vm.AddVoter(ctx, accKey, c100)
if err != nil {
t.Errorf("%s: failed to add voter, got err %v", testName, err)
}
err = vm.AddInterest(ctx, accKey, c500)
if err != nil {
t.Errorf("%s: failed to add interest, got err %v", testName, err)
}
voter, err := vm.storage.GetVoter(ctx, accKey)
if err != nil {
t.Errorf("%s: failed to get voter, got err %v", testName, err)
}
if !assert.Equal(t, c500, voter.Interest) {
t.Errorf("%s: diff interest", testName)
}
_, err = vm.ClaimInterest(ctx, accKey)
if err != nil {
t.Errorf("%s: failed to add claim interest, got err %v", testName, err)
}
voter, err = vm.storage.GetVoter(ctx, accKey)
if err != nil {
t.Errorf("%s: failed to get voter, got err %v", testName, err)
}
if !assert.Equal(t, true, voter.Interest.IsZero()) {
t.Errorf("%s: diff interest", testName)
}
}
func TestIsInValidatorList(t *testing.T) {
ctx, am, vm, _, _ := setupTest(t, 0)
minBalance := types.NewCoinFromInt64(1 * types.Decimals)
user1 := createTestAccount(ctx, am, "user1", minBalance)
user2 := createTestAccount(ctx, am, "user2", minBalance)
user3 := createTestAccount(ctx, am, "user3", minBalance)
testCases := []struct {
testName string
username types.AccountKey
allValidators []types.AccountKey
expectedResult bool
}{
{
testName: "not in empty validator list",
username: user1,
allValidators: []types.AccountKey{},
expectedResult: false,
},
{
testName: "not in validator list",
username: user1,
allValidators: []types.AccountKey{user2, user3},
expectedResult: false,
},
{
testName: "in validator list",
username: user1,
allValidators: []types.AccountKey{user1},
expectedResult: true,
},
}
for _, tc := range testCases {
referenceList := &model.ReferenceList{
AllValidators: tc.allValidators,
}
err := vm.storage.SetReferenceList(ctx, referenceList)
if err != nil {
t.Errorf("%s: failed to set reference list, got err %v", tc.testName, err)
}
res := vm.IsInValidatorList(ctx, tc.username)
if res != tc.expectedResult {
t.Errorf("%s: diff result, got %v, want %v", tc.testName, res, tc.expectedResult)
}
}
}
func TestIsLegalVoterWithdraw(t *testing.T) {
ctx, am, vm, _, _ := setupTest(t, 0)
minBalance := types.NewCoinFromInt64(1 * types.Decimals)
user1 := createTestAccount(ctx, am, "user1", minBalance)
vm.AddVoter(ctx, user1, types.NewCoinFromInt64(100*types.Decimals))
testCases := []struct {
testName string
allValidators []types.AccountKey
username types.AccountKey
withdraw types.Coin
expectedResult bool
}{
{
testName: "normal case",
allValidators: []types.AccountKey{},
username: user1,
withdraw: types.NewCoinFromInt64(1),
expectedResult: true,
},
{
testName: "validator can't withdraw",
allValidators: []types.AccountKey{user1},
username: user1,
withdraw: types.NewCoinFromInt64(1),
expectedResult: false,
},
{
testName: "illegal withdraw",
allValidators: []types.AccountKey{},
username: user1,
withdraw: types.NewCoinFromInt64(101 * types.Decimals),
expectedResult: false,
},
}
for _, tc := range testCases {
referenceList := &model.ReferenceList{
AllValidators: tc.allValidators,
}
err := vm.storage.SetReferenceList(ctx, referenceList)
if err != nil {
t.Errorf("%s: failed to set reference list, got err %v", tc.testName, err)
}
res := vm.IsLegalVoterWithdraw(ctx, tc.username, tc.withdraw)
if res != tc.expectedResult {
t.Errorf("%s: diff result, got %v, want %v", tc.testName, res, tc.expectedResult)
}
}
}
func TestIsLegalDelegatorWithdraw(t *testing.T) {
ctx, am, vm, _, _ := setupTest(t, 0)
minBalance := types.NewCoinFromInt64(1 * types.Decimals)
withdraw := types.NewCoinFromInt64(10 * types.Decimals)
user1 := createTestAccount(ctx, am, "user1", minBalance)
user2 := createTestAccount(ctx, am, "user2", minBalance)
vm.AddVoter(ctx, user1, types.NewCoinFromInt64(101*types.Decimals))
testCases := []struct {
testName string
addDelegation bool
delegatedCoin types.Coin
delegator types.AccountKey
voter types.AccountKey
withdraw types.Coin
expectedResult bool
}{
{
testName: "no delegation exist, can't withdraw",
addDelegation: false,
delegatedCoin: types.NewCoinFromInt64(0),
delegator: user2,
voter: user1,
withdraw: withdraw,
expectedResult: false,
},
{
testName: "normal case",
addDelegation: true,
delegatedCoin: types.NewCoinFromInt64(100 * types.Decimals),
delegator: user2,
voter: user1,
withdraw: withdraw,
expectedResult: true,
},
{
testName: "can't withdraw 0",
addDelegation: false,
delegatedCoin: types.NewCoinFromInt64(0),
delegator: user2,
voter: user1,
withdraw: types.NewCoinFromInt64(0),
expectedResult: false,
},
{
testName: "can't withdraw 101",
addDelegation: false,
delegatedCoin: types.NewCoinFromInt64(0),
delegator: user2,
voter: user1,
withdraw: types.NewCoinFromInt64(101 * types.Decimals),
expectedResult: false,
},
}
for _, tc := range testCases {
if tc.addDelegation {
err := vm.AddVoter(ctx, tc.delegator, types.NewCoinFromInt64(0))
if err != nil {
t.Errorf("%s: failed to add voter, got err %v", tc.testName, err)
}
err = vm.AddDelegation(ctx, tc.voter, tc.delegator, tc.delegatedCoin)
if err != nil {
t.Errorf("%s: failed to add delegation, got err %v", tc.testName, err)
}
}
res := vm.IsLegalDelegatorWithdraw(ctx, tc.voter, tc.delegator, tc.withdraw)
if res != tc.expectedResult {
t.Errorf("%s: diff result, got %v, want %v", tc.testName, res, tc.expectedResult)
}
}
}