@@ -18,13 +18,11 @@ func (suite *KeeperTestSuite) TestCalcUserHoldingsAllocations() {
18
18
ctx := suite .chainA .GetContext ()
19
19
bondDenom := appA .StakingKeeper .BondDenom (ctx )
20
20
tests := []struct {
21
- name string
22
- malleate func (ctx sdk.Context , appA * app.Quicksilver )
23
- want []types.UserAllocation
24
- icsWant []types.UserAllocation
25
- remainder math.Int
26
- icsRemainder sdk.Coins
27
- wantErr string
21
+ name string
22
+ malleate func (ctx sdk.Context , appA * app.Quicksilver )
23
+ want []types.UserAllocation
24
+ remainder math.Int
25
+ wantErr string
28
26
}{
29
27
{
30
28
"zero claims; no allocation" ,
@@ -34,9 +32,7 @@ func (suite *KeeperTestSuite) TestCalcUserHoldingsAllocations() {
34
32
appA .InterchainstakingKeeper .SetZone (ctx , & zone )
35
33
},
36
34
[]types.UserAllocation {},
37
- []types.UserAllocation {},
38
35
sdk .ZeroInt (),
39
- sdk .NewCoins (),
40
36
"" ,
41
37
},
42
38
{
@@ -49,9 +45,7 @@ func (suite *KeeperTestSuite) TestCalcUserHoldingsAllocations() {
49
45
appA .ClaimsManagerKeeper .SetLastEpochClaim (ctx , & cmtypes.Claim {UserAddress : user2 .String (), ChainId : "otherchain-1" , Module : cmtypes .ClaimTypeLiquidToken , SourceChainId : suite .chainA .ChainID , Amount : math .NewInt (1000 )})
50
46
},
51
47
[]types.UserAllocation {},
52
- []types.UserAllocation {},
53
48
sdk .NewInt (64000 ),
54
- sdk .NewCoins (),
55
49
"" ,
56
50
},
57
51
{
@@ -75,9 +69,7 @@ func (suite *KeeperTestSuite) TestCalcUserHoldingsAllocations() {
75
69
Amount : sdk .NewCoin (bondDenom , sdk .NewInt (2500 )),
76
70
},
77
71
},
78
- []types.UserAllocation {},
79
72
sdk .ZeroInt (),
80
- sdk .NewCoins (),
81
73
"" ,
82
74
},
83
75
{
@@ -101,9 +93,7 @@ func (suite *KeeperTestSuite) TestCalcUserHoldingsAllocations() {
101
93
Amount : sdk .NewCoin (bondDenom , sdk .NewInt (2000 )), // 1000 / 2500 (0.4) * 5000 = 2000
102
94
},
103
95
},
104
- []types.UserAllocation {},
105
96
sdk .NewInt (2000 ),
106
- sdk .NewCoins (),
107
97
"" ,
108
98
},
109
99
{
@@ -127,9 +117,7 @@ func (suite *KeeperTestSuite) TestCalcUserHoldingsAllocations() {
127
117
Amount : sdk .NewCoin (bondDenom , sdk .NewInt (3333 )), // 1000/1500 (0.66666) * 5000 = 3333
128
118
},
129
119
},
130
- []types.UserAllocation {},
131
120
sdk .OneInt (),
132
- sdk .NewCoins (),
133
121
"" ,
134
122
},
135
123
{
@@ -155,18 +143,7 @@ func (suite *KeeperTestSuite) TestCalcUserHoldingsAllocations() {
155
143
Amount : sdk .NewCoin (bondDenom , sdk .NewInt (3333 )), // 1000/1500 (0.66666) * 5000 = 3333
156
144
},
157
145
},
158
- []types.UserAllocation {
159
- {
160
- Address : user1 .String (),
161
- Amount : sdk .NewCoin ("testcoin" , sdk .NewInt (300 )), // 500/1500 (0.33333) * 900 == 300
162
- },
163
- {
164
- Address : user2 .String (),
165
- Amount : sdk .NewCoin ("testcoin" , sdk .NewInt (600 )), // 1000/1500 (0.66666) * 900 = 600
166
- },
167
- },
168
146
sdk .OneInt (),
169
- sdk .NewCoins (),
170
147
"" ,
171
148
},
172
149
{
@@ -197,34 +174,7 @@ func (suite *KeeperTestSuite) TestCalcUserHoldingsAllocations() {
197
174
Amount : sdk .NewCoin (bondDenom , sdk .NewInt (3333 )), // 1000/1500 (0.66666) * 5000 = 3333
198
175
},
199
176
},
200
- []types.UserAllocation {
201
- {
202
- Address : user1 .String (),
203
- Amount : sdk .NewCoin ("testcoin" , sdk .NewInt (300 )), // 500/1500 (0.33333) * 900 == 300
204
- },
205
- {
206
- Address : user2 .String (),
207
- Amount : sdk .NewCoin ("testcoin" , sdk .NewInt (600 )), // 1000/1500 (0.66666) * 900 = 600
208
- },
209
- {
210
- Address : user1 .String (),
211
- Amount : sdk .NewCoin ("testcoin2" , sdk .NewInt (6000 )), // 500/1500 (0.33333) * 18k == 6k
212
- },
213
- {
214
- Address : user2 .String (),
215
- Amount : sdk .NewCoin ("testcoin2" , sdk .NewInt (12001 )), // 1000/1500 (0.66666) * 18k = 12k
216
- },
217
- {
218
- Address : user1 .String (),
219
- Amount : sdk .NewCoin ("testcoin3" , sdk .NewInt (50 )), // 500/1500 (0.33333) * 150 == 50
220
- },
221
- {
222
- Address : user2 .String (),
223
- Amount : sdk .NewCoin ("testcoin3" , sdk .NewInt (100 )), // 1000/1500 (0.66666) * 150 = 100
224
- },
225
- },
226
177
sdk .OneInt (),
227
- sdk .NewCoins (sdk .NewCoin ("testcoin2" , sdk .NewIntFromUint64 (1 ))),
228
178
"" ,
229
179
},
230
180
@@ -254,29 +204,7 @@ func (suite *KeeperTestSuite) TestCalcUserHoldingsAllocations() {
254
204
Amount : sdk .NewCoin (bondDenom , sdk .NewInt (2000 )), // 1000 / 2500 (0.4) * 5000 = 2000
255
205
},
256
206
},
257
- []types.UserAllocation {
258
- {
259
- Address : user1 .String (),
260
- Amount : sdk .NewCoin ("testcoin" , sdk .NewInt (180 )), // 500/1500 (0.33333) * 900 == 300
261
- },
262
- {
263
- Address : user2 .String (),
264
- Amount : sdk .NewCoin ("testcoin" , sdk .NewInt (360 )), // 1000/1500 (0.66666) * 900 = 600
265
- },
266
- {
267
- Address : user1 .String (),
268
- Amount : sdk .NewCoin ("testcoin2" , sdk .NewInt (3600 )), // 500/1500 (0.33333) * 18k == 6k
269
- },
270
- {
271
- Address : user2 .String (),
272
- Amount : sdk .NewCoin ("testcoin2" , sdk .NewInt (7200 )), // 1000/1500 (0.66666) * 18k = 12k
273
- },
274
- },
275
207
sdk .NewInt (2000 ),
276
- sdk .NewCoins (
277
- sdk .NewCoin ("testcoin" , sdk .NewInt (360 )),
278
- sdk .NewCoin ("testcoin2" , sdk .NewInt (7202 )),
279
- ),
280
208
"" ,
281
209
},
282
210
}
@@ -299,17 +227,9 @@ func (suite *KeeperTestSuite) TestCalcUserHoldingsAllocations() {
299
227
suite .NoError (appA .BankKeeper .MintCoins (ctx , "mint" , sdk .NewCoins (sdk .NewCoin (appA .StakingKeeper .BondDenom (ctx ), sdk .NewIntFromUint64 (zone .HoldingsAllocation )))))
300
228
suite .NoError (appA .BankKeeper .SendCoinsFromModuleToModule (ctx , "mint" , types .ModuleName , sdk .NewCoins (sdk .NewCoin (appA .StakingKeeper .BondDenom (ctx ), sdk .NewIntFromUint64 (zone .HoldingsAllocation )))))
301
229
302
- allocations , remainder , icsRewardsAllocations := appA .ParticipationRewardsKeeper .CalcUserHoldingsAllocations (ctx , & zone )
230
+ allocations , remainder := appA .ParticipationRewardsKeeper .CalcUserHoldingsAllocations (ctx , & zone )
303
231
suite .ElementsMatch (tt .want , allocations )
304
- suite .ElementsMatch (tt .icsWant , icsRewardsAllocations )
305
232
suite .True (tt .remainder .Equal (remainder ))
306
-
307
- // distribute assets to users; check remainder (to be distributed next time!)
308
- err := appA .ParticipationRewardsKeeper .DistributeToUsersFromAddress (ctx , icsRewardsAllocations , zone .WithdrawalAddress .Address )
309
- suite .NoError (err )
310
- icsAddress , _ := addressutils .AddressFromBech32 (zone .WithdrawalAddress .Address , "" )
311
- icsBalance := appA .BankKeeper .GetAllBalances (ctx , icsAddress )
312
- suite .ElementsMatch (tt .icsRemainder , icsBalance )
313
233
})
314
234
}
315
235
}
0 commit comments