This repository was archived by the owner on Nov 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRenPool.test.js
481 lines (377 loc) · 19.9 KB
/
RenPool.test.js
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
const {
ethers: {
getSigner,
getSigners,
getContractFactory,
utils: { base58 },
Contract,
BigNumber: { from: bn }
},
network: {
config: {
renTokenAddr,
renBTCAddr,
topRenTokenHolderAddr,
darknodeRegistryAddr,
darknodePaymentAddr,
darknodeRegistryStoreAddr,
claimRewardsAddr,
gatewayAddr,
},
provider
} } = require('hardhat');
const { expect } = require('chai').use(require('chai-string'));
require('dotenv');
const RenToken = require('@renproject/sol/build/testnet/RenToken.json');
const DarknodeRegistryLogicV1 = require('@renproject/sol/build/testnet/DarknodeRegistryLogicV1.json');
const DarknodePayment = require('@renproject/sol/build/testnet/DarknodePayment.json');
describe('RenPool contract test', function () {
const DECIMALS = 18;
const DIGITS = bn(10).pow(DECIMALS);
const POOL_BOND = bn(100_000).mul(DIGITS);
let owner, nodeOperator, alice, bob;
let renToken, darknodeRegistry, darknodePayment;
let renPool;
let snapshotID;
before(async () => {
[owner, nodeOperator, alice, bob] = await getSigners();
renToken = new Contract(renTokenAddr, RenToken.abi, owner);
darknodeRegistry = new Contract(darknodeRegistryAddr, DarknodeRegistryLogicV1.abi, owner);
darknodePayment = new Contract(darknodePaymentAddr, DarknodePayment.abi, owner);
expect(await renToken.balanceOf(topRenTokenHolderAddr)).to.be.above(0);
await provider.request({ method: 'hardhat_impersonateAccount', params: [topRenTokenHolderAddr] });
const signer = await getSigner(topRenTokenHolderAddr);
for (const user of [owner, nodeOperator, alice, bob]) {
expect(await renToken.balanceOf(user.address)).to.equal(0);
const amount = POOL_BOND.mul(2);
await renToken.connect(signer).transfer(user.address, amount);
expect(await renToken.balanceOf(user.address)).to.equal(amount);
}
await provider.request({ method: 'hardhat_stopImpersonatingAccount', params: [topRenTokenHolderAddr] });
const RenPool = await getContractFactory('RenPool');
renPool = await RenPool.connect(nodeOperator).deploy(
renToken.address,
darknodeRegistry.address,
darknodePayment.address,
claimRewardsAddr,
gatewayAddr,
owner.address,
POOL_BOND);
await renPool.deployed();
expect(await renToken.balanceOf(renPool.address)).to.equal(0);
snapshotID = await provider.request({ method: 'evm_snapshot', params: [] });
});
afterEach(async () => {
await provider.request({ method: 'evm_revert', params: [snapshotID] });
snapshotID = await provider.request({ method: 'evm_snapshot', params: [] });
});
it('should set the constructor args to the supplied values', async function () {
expect(await renPool.owner()).to.equal(owner.address);
expect(await renPool.nodeOperator()).to.equal(nodeOperator.address);
expect(await renPool.bond()).to.equal(POOL_BOND);
expect(await renPool.isLocked()).to.equal(false);
expect(await renPool.totalPooled()).to.equal(0);
});
describe('deposit', function () {
[bn(1), POOL_BOND].forEach(amount => {
it(`should deposit ${amount.toString()} REN into RenPool`, async function () {
const aliceBalance = await renToken.balanceOf(alice.address);
// Deposit `amount` into the pool
await renToken.connect(alice).approve(renPool.address, amount);
await renPool.connect(alice).deposit(amount);
// Veify correct balances
expect(await renToken.balanceOf(renPool.address)).to.equal(amount);
expect(await renToken.balanceOf(alice.address)).to.equal(aliceBalance.sub(amount));
expect(await renPool.balanceOf(alice.address)).to.equal(amount);
expect(await renPool.totalPooled()).to.equal(amount);
});
});
it('should lock the pool after a deposit of `POOL_BOND`', async function () {
await renToken.connect(alice).approve(renPool.address, POOL_BOND);
await renPool.connect(alice).deposit(POOL_BOND);
expect(await renPool.isLocked()).to.be.true;
});
it('should fail when deposit without approval', async function () {
const amount = 1;
await expect(
//TODO: This should throw 'Deposit failed', not sure why not (?)
renPool.connect(alice).deposit(amount)
).to.be.reverted;
});
it('should fail when deposit is 0', async function () {
await renToken.connect(alice).approve(renPool.address, POOL_BOND);
await expect(
renPool.connect(alice).deposit(0)
).to.be.revertedWith('RenPool: Invalid amount');
});
[POOL_BOND.add(1), POOL_BOND.mul(2)].forEach(amount => {
it('should fail when deposit surpasses bond', async function () {
await renToken.connect(alice).approve(renPool.address, amount);
await expect(
renPool.connect(alice).deposit(amount)
).to.be.revertedWith('RenPool: Amount surpasses bond');
});
});
it('should fail when deposit after locking', async function () {
// Lock pool
await renToken.connect(alice).approve(renPool.address, POOL_BOND);
await renPool.connect(alice).deposit(POOL_BOND);
expect(await renPool.isLocked()).to.be.true;
// Every new deposit attempt should fail
const amount = 1;
await renToken.connect(alice).approve(renPool.address, amount);
await expect(
renPool.connect(alice).deposit(amount)
).to.be.revertedWith('RenPool: Pool is locked');
});
it('should fail when deposit after unlocking while the pool is still full', async function () {
// Lock pool
await renToken.connect(alice).approve(renPool.address, POOL_BOND);
await renPool.connect(alice).deposit(POOL_BOND);
expect(await renPool.isLocked()).to.be.true;
// Unlock pool
await renPool.connect(nodeOperator).unlockPool();
expect(await renPool.isLocked()).to.be.false;
// Verify pool is still full
expect(await renPool.totalPooled()).to.equal(POOL_BOND);
// Every new deposit attempt should fail
const amount = 1;
await renToken.connect(alice).approve(renPool.address, amount);
await expect(
renPool.connect(alice).deposit(amount)
).to.be.revertedWith('RenPool: Amount surpasses bond');
});
});
describe('withdraw/fulfillWithdrawRequest', function () {
[bn(1), POOL_BOND.sub(1)].forEach(amount => {
it('should withdraw properly', async function () {
const aliceBalance = await renToken.balanceOf(alice.address);
// Deposit into the pool without locking it
await renToken.connect(alice).approve(renPool.address, amount);
await renPool.connect(alice).deposit(amount);
expect(await renPool.isLocked()).to.be.false;
// Withdraw deposited amount
await renPool.connect(alice).withdraw(amount);
// Verify correct balances
expect(await renToken.balanceOf(renPool.address)).to.equal(0);
expect(await renToken.balanceOf(alice.address)).to.equal(aliceBalance);
expect(await renPool.balanceOf(alice.address)).to.equal(0);
expect(await renPool.totalPooled()).to.equal(0);
});
});
it('should withdraw after unlocking', async function () {
const aliceBalance = await renToken.balanceOf(alice.address);
// Lock pool
await renToken.connect(alice).approve(renPool.address, POOL_BOND);
await renPool.connect(alice).deposit(POOL_BOND);
expect(await renPool.isLocked()).to.be.true;
// Unlock pool
await renPool.connect(nodeOperator).unlockPool();
expect(await renPool.isLocked()).to.be.false;
// Withdraw deposit
await renPool.connect(alice).withdraw(POOL_BOND);
// Verify correct balances
expect(await renToken.balanceOf(renPool.address)).to.equal(0);
expect(await renToken.balanceOf(alice.address)).to.equal(aliceBalance);
expect(await renPool.balanceOf(alice.address)).to.equal(0);
expect(await renPool.totalPooled()).to.equal(0);
});
[bn(1), POOL_BOND].forEach(amount => {
it('should fulfill withdraw properly', async function () {
const aliceBalance = await renToken.balanceOf(alice.address);
const bobBalance = await renToken.balanceOf(bob.address);
// Lock pool
await renToken.connect(bob).approve(renPool.address, POOL_BOND);
await renPool.connect(bob).deposit(POOL_BOND);
expect(await renPool.isLocked()).to.be.true;
// Request withdraw
await renPool.connect(bob).requestWithdraw(amount);
expect(await renPool.withdrawRequests(bob.address)).to.equal(amount);
// Fulfill withdraw request
await renToken.connect(alice).approve(renPool.address, POOL_BOND);
await renPool.connect(alice).fulfillWithdrawRequest(bob.address);
// Verify correct balances
expect(await renToken.balanceOf(renPool.address)).to.equal(POOL_BOND);
expect(await renToken.balanceOf(alice.address)).to.equal(aliceBalance.sub(amount));
expect(await renToken.balanceOf(bob.address)).to.equal(bobBalance.sub(POOL_BOND).add(amount));
expect(await renPool.balanceOf(alice.address)).to.equal(amount);
expect(await renPool.balanceOf(bob.address)).to.equal(POOL_BOND.sub(amount));
expect(await renPool.isLocked()).to.be.true;
expect(await renPool.totalPooled()).to.equal(POOL_BOND);
});
});
// TODO: Test remaining paths
// TODO: Test case when 'uint senderBalance = balances[sender];' is undefined for the given sender
});
describe('registerDarknode/deregisterDarknode/refundBond', function () {
function base58ToHex(textData) {
return '0x' + Buffer.from(base58.decode(textData)).toString('hex').slice(4);
}
async function increaseMonth() {
const ONE_MONTH = 60 * 60 * 24 * 32;
await provider.send('evm_increaseTime', [ONE_MONTH]);
}
const NODE_ID = base58ToHex('8MHJ9prQt7UGupfZKSMVes3VzPrGBB');
const PUBLIC_KEY = '0x000000077373682d727361000000030100010000010100d0feba4ae65ea9ad771d153419bcc21189d954b6bf75fd5488055cd2641231014f190c0e059a452d301c535e931df33590ec0e18c59341a2766cc885d1dc6e66f5cc65b94522ec944ae4200bd56a30223328b258d50b507dd94b4c4742768f3fec2b815c9c4b0fe26727e82865f6a064fa3ff2443d135d9788095a1c17487fd5c389a491c16b73385d516a303debc3bcccae337a7ec0d89d51ce05262a0c4c1f2178466c85379b8cd4e5cbe1c90a05fb0c1ed3eee2134774b450e7b0b70c792abad55beef919e21a03cb9de4e963a820c2f84421a4559d0b67cfd17c1686ff6f2d1bb07ac2c82cede1cf5f16a57e125a29fef65891715b061606bca1a0eb026b';
it('should convert base58 to hex', function () {
expect(base58ToHex('8MHJ9prQt7UGupfZKSMVes3VzPrGBB'))
.to.equalIgnoreCase('0x597869E66F904F741Bf16788F1FCAe36E603F112');
});
it('should register darknode', async function () {
const registryStoreBalance = await renToken.balanceOf(darknodeRegistryStoreAddr);
// Lock pool
await renToken.connect(alice).approve(renPool.address, POOL_BOND);
await renPool.connect(alice).deposit(POOL_BOND);
// Register darknode
await renPool.connect(nodeOperator).approveBondTransfer();
await renPool.connect(nodeOperator).registerDarknode(NODE_ID, PUBLIC_KEY);
// Verify funds are transferred to the DarknodeRegistryStore contract
// and the darknode is under 'pending registration' state
expect(await renToken.balanceOf(darknodeRegistryStoreAddr)).to.equal(registryStoreBalance.add(POOL_BOND));
expect(await renToken.balanceOf(renPool.address)).to.equal(0);
expect(await darknodeRegistry.isPendingRegistration(NODE_ID)).to.be.true;
expect(await darknodeRegistry.isRegistered(NODE_ID)).to.be.false;
// Verify darknodeID and publicKey are stored correctly inside the pool
expect(await renPool.darknodeID()).to.equalIgnoreCase(NODE_ID);
expect(await renPool.publicKey()).to.equalIgnoreCase(PUBLIC_KEY);
// Jump to the next epoch for registration to settle
await increaseMonth();
await darknodeRegistry.epoch();
// Verify darknode is now under 'registered' state and the RenPool is darknode's owner
expect(await darknodeRegistry.isPendingRegistration(NODE_ID)).to.be.false;
expect(await darknodeRegistry.isRegistered(NODE_ID)).to.be.true;
expect(await darknodeRegistry.getDarknodeOperator(NODE_ID)).to.equal(renPool.address);
});
it('should fail when darknode registration is not performed by node operator', async () => {
expect(alice).to.not.equal(nodeOperator);
await renToken.connect(alice).approve(renPool.address, POOL_BOND);
await renPool.connect(alice).deposit(POOL_BOND);
await renPool.connect(nodeOperator).approveBondTransfer();
await expect(
renPool.connect(alice).registerDarknode(NODE_ID, PUBLIC_KEY)
).to.be.revertedWith('RenPool: Caller is not node operator');
});
it('should fail when darknode registration is performed twice', async () => {
await renToken.connect(alice).approve(renPool.address, POOL_BOND);
await renPool.connect(alice).deposit(POOL_BOND);
await renPool.connect(nodeOperator).approveBondTransfer();
await renPool.connect(nodeOperator).registerDarknode(NODE_ID, PUBLIC_KEY)
await expect(
renPool.connect(nodeOperator).registerDarknode(NODE_ID, PUBLIC_KEY)
).to.be.revertedWith('DarknodeRegistry: must be refunded or never registered');
});
it('should fail when darknode registration is performed twice but preserves first registration data', async () => {
await renToken.connect(alice).approve(renPool.address, POOL_BOND);
await renPool.connect(alice).deposit(POOL_BOND);
await renPool.connect(nodeOperator).approveBondTransfer();
await renPool.connect(nodeOperator).registerDarknode(NODE_ID, PUBLIC_KEY)
const OTHER_NODE_ID = base58ToHex('8MHJ9prQt7UGupfZKSMVes3VzPrGB1');
const OTHER_PUBLIC_KEY = '0x000000077373682d727361000000030100010000010100d0feba4ae65ea9ad771d153419bcc21189d954b6bf75fd5488055cd2641231014f190c0e059a452d301c535e931df33590ec0e18c59341a2766cc885d1dc6e66f5cc65b94522ec944ae4200bd56a30223328b258d50b507dd94b4c4742768f3fec2b815c9c4b0fe26727e82865f6a064fa3ff2443d135d9788095a1c17487fd5c389a491c16b73385d516a303debc3bcccae337a7ec0d89d51ce05262a0c4c1f2178466c85379b8cd4e5cbe1c90a05fb0c1ed3eee2134774b450e7b0b70c792abad55beef919e21a03cb9de4e963a820c2f84421a4559d0b67cfd17c1686ff6f2d1bb07ac2c82cede1cf5f16a57e125a29fef65891715b061606bca1a0eb026c';
await expect(
renPool.connect(nodeOperator).registerDarknode(OTHER_NODE_ID, OTHER_PUBLIC_KEY)
).to.be.revertedWith('');
// Make sure initial darknodeID and publicKey are preserved
expect(await renPool.darknodeID()).to.equalIgnoreCase(NODE_ID);
expect(await renPool.publicKey()).to.equalIgnoreCase(PUBLIC_KEY);
});
it('should transfer reward to darknode owner', async function () {
await renToken.connect(bob).approve(renPool.address, POOL_BOND);
await renPool.connect(bob).deposit(POOL_BOND);
await renPool.connect(nodeOperator).approveBondTransfer();
await renPool.connect(nodeOperator).registerDarknode(NODE_ID, PUBLIC_KEY);
await increaseMonth();
await darknodeRegistry.epoch();
expect(await darknodeRegistry.isRegistered(NODE_ID)).to.be.true;
await increaseMonth();
await darknodeRegistry.epoch();
await renPool.transferRewardsToDarknodeOwner([renBTCAddr]);
// ^ OBSERVATION: not sure if the above code is actually doing anything,
// we need a way to query the darknode's balance and make sure the
// balance is actually being transferred.
// Also, not sure if darknodePayment contract is still being used
// or has been replaced by the RenVM.
});
it('should deregister darknode', async function () {
// Lock pool
await renToken.connect(bob).approve(renPool.address, POOL_BOND);
await renPool.connect(bob).deposit(POOL_BOND);
// Register darknode
await renPool.connect(nodeOperator).approveBondTransfer();
await renPool.connect(nodeOperator).registerDarknode(NODE_ID, PUBLIC_KEY);
// Jump one epoch forward for registration to settle
await increaseMonth();
await darknodeRegistry.epoch();
// Deregister darknode
await renPool.connect(nodeOperator).deregisterDarknode();
expect(await darknodeRegistry.isPendingDeregistration(NODE_ID)).to.be.true;
// Jump one epoch forward for deregitration to settle
await increaseMonth();
await darknodeRegistry.epoch();
// Verify state
expect(await darknodeRegistry.isDeregistered(NODE_ID)).to.be.true;
// Make sure darknodeID and publicKey are still stored in the RenPool contract
expect(await renPool.darknodeID()).to.equalIgnoreCase(NODE_ID);
expect(await renPool.publicKey()).to.equalIgnoreCase(PUBLIC_KEY);
});
it('should fail when darknode deregistration is not performed by node operator', async () => {
expect(alice).to.not.equal(nodeOperator);
// Lock pool
await renToken.connect(bob).approve(renPool.address, POOL_BOND);
await renPool.connect(bob).deposit(POOL_BOND);
// Register darknode
await renPool.connect(nodeOperator).approveBondTransfer();
await renPool.connect(nodeOperator).registerDarknode(NODE_ID, PUBLIC_KEY);
// Jump one epoch forward for registration to settle
await increaseMonth();
await darknodeRegistry.epoch();
// Attemping to deregister the darknode should fail when caller is not node operator
await expect(
renPool.connect(alice).deregisterDarknode()
).to.be.revertedWith('RenPool: Caller is not owner nor node operator');
// Make sure node is still registered and nodeID and publicKey are still stored
// in the RenPool contract
expect(await darknodeRegistry.isRegistered(NODE_ID)).to.be.true;
expect(await renPool.darknodeID()).to.equalIgnoreCase(NODE_ID);
expect(await renPool.publicKey()).to.equalIgnoreCase(PUBLIC_KEY);
});
it('should register a darknode, deregister it and refund all stakers', async () => {
const registryStoreBalance = await renToken.balanceOf(darknodeRegistryStoreAddr);
const aliceBalance = await renToken.balanceOf(alice.address);
// Lock pool
const deposit = POOL_BOND
await renToken.connect(alice).approve(renPool.address, deposit);
await renPool.connect(alice).deposit(deposit);
// Register darknode
await renPool.connect(nodeOperator).approveBondTransfer();
await renPool.connect(nodeOperator).registerDarknode(NODE_ID, PUBLIC_KEY);
// Skip to the next epoch for registration to settle
await increaseMonth();
await darknodeRegistry.epoch();
// Make sure darknode is under 'registered' state
expect(await darknodeRegistry.isRegistered(NODE_ID)).to.be.true;
// Deregister darknode
await renPool.connect(nodeOperator).deregisterDarknode();
// Make sure darknode is under 'pending deregistration' state
expect(await darknodeRegistry.isPendingDeregistration(NODE_ID)).to.be.true;
// Skip to the next epoch for deregistration to settle
await increaseMonth();
await darknodeRegistry.epoch();
// Make sure darknode is now under 'deregistered' state
expect(await darknodeRegistry.isDeregistered(NODE_ID)).to.be.true;
// Skip one extra epoch for refund to be callable
await increaseMonth();
await darknodeRegistry.epoch();
// Call refund to move funds from the Ren protocol back to the pool
await renPool.connect(nodeOperator).refundBond();
// Make sure funds are back into the RenPool contract
expect(await renToken.balanceOf(darknodeRegistryStoreAddr)).to.equal(registryStoreBalance);
expect(await renToken.balanceOf(renPool.address)).to.equal(deposit);
// Unlock pool to release funds
await renPool.connect(nodeOperator).unlockPool();
expect(await renPool.isLocked()).to.be.false;
// Refund staker(s)
await renPool.connect(alice).withdraw(deposit);
expect(await renToken.balanceOf(alice.address)).to.equal(aliceBalance);
});
});
});