-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathVault.t.sol
602 lines (525 loc) · 18.7 KB
/
Vault.t.sol
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
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
pragma solidity 0.8.19;
import "forge-std/Test.sol";
import "./mocks/NonMintableToken.sol";
import "./mocks/MintableToken.sol";
import "../contracts/superbridge/ParallelVault.sol";
contract TestVault is Test {
uint256 _c;
address immutable _admin = address(uint160(_c++));
address immutable _raju = address(uint160(_c++));
address immutable _connector = address(uint160(_c++));
address immutable _wrongConnector = address(uint160(_c++));
uint256 constant _lockMaxLimit = 200 ether;
uint256 constant _lockRate = 2 ether;
uint256 constant _unlockMaxLimit = 100 ether;
uint256 constant _unlockRate = 1 ether;
uint256 constant _fees = 0.001 ether;
uint256 constant _msgGasLimit = 200_000;
uint256 constant _bootstrapTime = 100;
ERC20 _token;
ParallelVault _vault;
function setUp() external {
vm.startPrank(_admin);
_token = new NonMintableToken("USDC", "USDC", 6, 1_000_000_000 ether);
_vault = new ParallelVault(address(_token), "ParallelUSDC", "pUSDC");
vm.stopPrank();
}
function _setLimits() internal {
Vault.UpdateLimitParams[] memory u = new Vault.UpdateLimitParams[](2);
u[0] = Vault.UpdateLimitParams(
true,
_connector,
_lockMaxLimit,
_lockRate
);
u[1] = Vault.UpdateLimitParams(
false,
_connector,
_unlockMaxLimit,
_unlockRate
);
vm.prank(_admin);
_vault.updateLimitParams(u);
skip(_bootstrapTime);
}
function testMintShares() external {
_setLimits();
Vault.LimitParams memory lockLimitParams = _vault.getLockLimitParams(
_connector
);
Vault.LimitParams memory unlockLimitParams = _vault
.getUnlockLimitParams(_connector);
assertEq(
lockLimitParams.maxLimit,
_lockMaxLimit,
"lock max limit not updated"
);
assertEq(
lockLimitParams.ratePerSecond,
_lockRate,
"lock rate not updated"
);
assertEq(
unlockLimitParams.maxLimit,
_unlockMaxLimit,
"unlock max limit not updated"
);
assertEq(
unlockLimitParams.ratePerSecond,
_unlockRate,
"unlock rate not updated"
);
}
function testUpdateLimitParamsRaju() external {
Vault.UpdateLimitParams[] memory u = new Vault.UpdateLimitParams[](2);
u[0] = Vault.UpdateLimitParams(
true,
_connector,
_lockMaxLimit,
_lockRate
);
u[1] = Vault.UpdateLimitParams(
false,
_connector,
_unlockMaxLimit,
_unlockRate
);
vm.prank(_raju);
vm.expectRevert("Ownable: caller is not the owner");
_vault.updateLimitParams(u);
}
function testDepositConnectorUnavail() external {
uint256 depositAmount = 2 ether;
_setLimits();
deal(_raju, _fees);
vm.prank(_raju);
vm.expectRevert(Vault.ConnectorUnavailable.selector);
_vault.depositToAppChain{value: _fees}(
_raju,
depositAmount,
_msgGasLimit,
_wrongConnector
);
}
function testDepositLimitHit() external {
uint256 depositAmount = 201 ether;
_setLimits();
assertTrue(
depositAmount > _vault.getCurrentLockLimit(_connector),
"deposit amount within limit"
);
vm.prank(_admin);
_token.transfer(_raju, depositAmount);
deal(_raju, _fees);
vm.startPrank(_raju);
_token.approve(address(_vault), depositAmount);
vm.expectRevert(Gauge.AmountOutsideLimit.selector);
_vault.depositToAppChain{value: _fees}(
_raju,
depositAmount,
_msgGasLimit,
_connector
);
vm.stopPrank();
}
function testZeroAmountDeposit() external {
_setLimits();
uint256 depositAmount = 0 ether;
uint256 dealAmount = 10 ether;
deal(address(_token), _raju, dealAmount);
deal(_raju, _fees);
vm.startPrank(_raju);
_token.approve(address(_vault), dealAmount);
vm.expectRevert(Vault.ZeroAmount.selector);
_vault.depositToAppChain{value: _fees}(
_raju,
depositAmount,
_msgGasLimit,
_connector
);
vm.stopPrank();
}
function testDeposit() external {
_setLimits();
uint256 depositAmount = 10 ether;
deal(address(_token), _raju, depositAmount);
deal(_raju, _fees);
uint256 rajuBalBefore = _token.balanceOf(_raju);
uint256 vaultBalBefore = _token.balanceOf(address(_vault));
uint256 lockLimitBefore = _vault.getCurrentLockLimit(_connector);
assertTrue(
depositAmount <= _vault.getCurrentLockLimit(_connector),
"too big deposit"
);
vm.startPrank(_raju);
_token.approve(address(_vault), depositAmount);
vm.mockCall(
_connector,
abi.encodeCall(
IConnector.outbound,
(_msgGasLimit, abi.encode(_raju, depositAmount))
),
bytes("0")
);
vm.expectCall(
_connector,
abi.encodeCall(
IConnector.outbound,
(_msgGasLimit, abi.encode(_raju, depositAmount))
)
);
_vault.depositToAppChain{value: _fees}(
_raju,
depositAmount,
_msgGasLimit,
_connector
);
vm.stopPrank();
uint256 rajuBalAfter = _token.balanceOf(_raju);
uint256 vaultBalAfter = _token.balanceOf(address(_vault));
uint256 lockLimitAfter = _vault.getCurrentLockLimit(_connector);
assertEq(
rajuBalAfter,
rajuBalBefore - depositAmount,
"raju balance sus"
);
assertEq(
vaultBalAfter,
vaultBalBefore + depositAmount,
"vault balance sus"
);
assertEq(
lockLimitAfter,
lockLimitBefore - depositAmount,
"lock limit sus"
);
}
function testPartLockLimitReplenish() external {
_setLimits();
uint256 usedLimit = 30 ether;
uint256 time = 10;
deal(_raju, _fees);
deal(address(_token), _raju, usedLimit);
vm.startPrank(_raju);
_token.approve(address(_vault), usedLimit);
vm.mockCall(
_connector,
abi.encodeCall(
IConnector.outbound,
(_msgGasLimit, abi.encode(_raju, usedLimit))
),
bytes("0")
);
_vault.depositToAppChain{value: _fees}(
_raju,
usedLimit,
_msgGasLimit,
_connector
);
vm.stopPrank();
uint256 lockLimitBefore = _vault.getCurrentLockLimit(_connector);
assertTrue(lockLimitBefore < _lockMaxLimit, "full limit avail");
assertTrue(
lockLimitBefore + time * _lockRate < _lockMaxLimit,
"too much time"
);
skip(time);
uint256 lockLimitAfter = _vault.getCurrentLockLimit(_connector);
assertEq(
lockLimitAfter,
lockLimitBefore + time * _lockRate,
"lock limit sus"
);
}
function testFullLockLimitReplenish() external {
_setLimits();
uint256 usedLimit = 30 ether;
uint256 time = 100;
deal(_raju, _fees);
deal(address(_token), _raju, usedLimit);
vm.startPrank(_raju);
_token.approve(address(_vault), usedLimit);
vm.mockCall(
_connector,
abi.encodeCall(
IConnector.outbound,
(_msgGasLimit, abi.encode(_raju, usedLimit))
),
bytes("0")
);
_vault.depositToAppChain{value: _fees}(
_raju,
usedLimit,
_msgGasLimit,
_connector
);
vm.stopPrank();
uint256 lockLimitBefore = _vault.getCurrentLockLimit(_connector);
assertTrue(lockLimitBefore < _lockMaxLimit, "full limit avail");
assertTrue(
lockLimitBefore + time * _lockRate > _lockMaxLimit,
"not enough time"
);
skip(time);
uint256 lockLimitAfter = _vault.getCurrentLockLimit(_connector);
assertEq(lockLimitAfter, _lockMaxLimit, "lock limit sus");
}
function testReceiveInboundConnectorUnavail() external {
_setLimits();
uint256 withdrawAmount = 2 ether;
deal(address(_token), address(_vault), withdrawAmount);
vm.expectRevert(Vault.ConnectorUnavailable.selector);
vm.prank(_wrongConnector);
_vault.receiveInbound(abi.encode(_raju, withdrawAmount));
}
function testFullConsumeInboundReceive() external {
_setLimits();
uint256 withdrawAmount = 2 ether;
deal(address(_token), address(_vault), withdrawAmount);
uint256 vaultBalBefore = _token.balanceOf(address(_vault));
uint256 rajuBalBefore = _token.balanceOf(_raju);
uint256 pendingUnlocksBefore = _vault.pendingUnlocks(_connector, _raju);
uint256 connectorPendingUnlocksBefore = _vault.connectorPendingUnlocks(
_connector
);
uint256 unlockLimitBefore = _vault.getCurrentUnlockLimit(_connector);
assertTrue(withdrawAmount <= unlockLimitBefore, "limit hit");
vm.prank(_connector);
_vault.receiveInbound(abi.encode(_raju, withdrawAmount));
uint256 vaultBalAfter = _token.balanceOf(address(_vault));
uint256 rajuBalAfter = _token.balanceOf(_raju);
uint256 pendingUnlocksAfter = _vault.pendingUnlocks(_connector, _raju);
uint256 connectorPendingUnlocksAfter = _vault.connectorPendingUnlocks(
_connector
);
uint256 unlockLimitAfter = _vault.getCurrentUnlockLimit(_connector);
assertEq(
vaultBalAfter,
vaultBalBefore - withdrawAmount,
"vault balance sus"
);
assertEq(
rajuBalAfter,
rajuBalBefore + withdrawAmount,
"raju balance sus"
);
assertEq(
pendingUnlocksAfter,
pendingUnlocksBefore,
"pending unlocks sus"
);
assertEq(
connectorPendingUnlocksAfter,
connectorPendingUnlocksBefore,
"total pending amount sus"
);
assertEq(
unlockLimitAfter,
unlockLimitBefore - withdrawAmount,
"unlock limit sus"
);
}
function testPartConsumeInboundReceive() external {
_setLimits();
uint256 withdrawAmount = 110 ether;
deal(address(_token), address(_vault), withdrawAmount);
uint256 vaultBalBefore = _token.balanceOf(address(_vault));
uint256 rajuBalBefore = _token.balanceOf(_raju);
uint256 pendingUnlocksBefore = _vault.pendingUnlocks(_connector, _raju);
uint256 connectorPendingUnlocksBefore = _vault.connectorPendingUnlocks(
_connector
);
uint256 unlockLimitBefore = _vault.getCurrentUnlockLimit(_connector);
assertTrue(unlockLimitBefore > 0, "no unlock limit available");
assertTrue(withdrawAmount > unlockLimitBefore, "unlock not partial");
vm.prank(_connector);
_vault.receiveInbound(abi.encode(_raju, withdrawAmount));
uint256 vaultBalAfter = _token.balanceOf(address(_vault));
uint256 rajuBalAfter = _token.balanceOf(_raju);
uint256 pendingUnlocksAfter = _vault.pendingUnlocks(_connector, _raju);
uint256 connectorPendingUnlocksAfter = _vault.connectorPendingUnlocks(
_connector
);
uint256 unlockLimitAfter = _vault.getCurrentUnlockLimit(_connector);
assertEq(
vaultBalAfter,
vaultBalBefore - unlockLimitBefore,
"vault balance sus"
);
assertEq(
rajuBalAfter,
rajuBalBefore + unlockLimitBefore,
"raju balance sus"
);
assertEq(
pendingUnlocksAfter,
pendingUnlocksBefore + withdrawAmount - unlockLimitBefore,
"pending unlocks sus"
);
assertEq(
connectorPendingUnlocksAfter,
connectorPendingUnlocksBefore + withdrawAmount - unlockLimitBefore,
"total pending amount sus"
);
assertEq(unlockLimitAfter, 0, "unlock limit sus");
}
function testPartUnlockLimitReplenish() external {
_setLimits();
uint256 usedLimit = 20 ether;
uint256 time = 10;
deal(address(_token), address(_vault), usedLimit);
vm.prank(_connector);
_vault.receiveInbound(abi.encode(_raju, usedLimit));
uint256 unlockLimitBefore = _vault.getCurrentUnlockLimit(_connector);
assertTrue(unlockLimitBefore < _unlockMaxLimit, "full limit avail");
assertTrue(
unlockLimitBefore + time * _unlockRate < _unlockMaxLimit,
"too much time"
);
skip(time);
uint256 unlockLimitAfter = _vault.getCurrentUnlockLimit(_connector);
assertEq(
unlockLimitAfter,
unlockLimitBefore + time * _unlockRate,
"unlock limit sus"
);
}
function testFullUnlockLimitReplenish() external {
_setLimits();
uint256 usedLimit = 20 ether;
uint256 time = 100;
deal(address(_token), address(_vault), usedLimit);
vm.prank(_connector);
_vault.receiveInbound(abi.encode(_raju, usedLimit));
uint256 unlockLimitBefore = _vault.getCurrentUnlockLimit(_connector);
assertTrue(unlockLimitBefore < _unlockMaxLimit, "full limit avail");
assertTrue(
unlockLimitBefore + time * _unlockRate > _unlockMaxLimit,
"not enough time"
);
skip(time);
uint256 unlockLimitAfter = _vault.getCurrentUnlockLimit(_connector);
assertEq(unlockLimitAfter, _unlockMaxLimit, "unlock limit sus");
}
function testUnlockPendingConnectorUnavail() external {
_setLimits();
uint256 withdrawAmount = 2 ether;
deal(address(_token), address(_vault), withdrawAmount);
vm.expectRevert(Vault.ConnectorUnavailable.selector);
_vault.unlockPendingFor(_raju, _wrongConnector);
}
function testFullConsumeUnlockPending() external {
_setLimits();
uint256 withdrawAmount = 120 ether;
uint256 time = 200;
deal(address(_token), address(_vault), withdrawAmount);
vm.prank(_connector);
_vault.receiveInbound(abi.encode(_raju, withdrawAmount));
uint256 vaultBalBefore = _token.balanceOf(address(_vault));
uint256 rajuBalBefore = _token.balanceOf(_raju);
uint256 pendingUnlocksBefore = _vault.pendingUnlocks(_connector, _raju);
uint256 connectorPendingUnlocksBefore = _vault.connectorPendingUnlocks(
_connector
);
assertEq(
vaultBalBefore,
withdrawAmount - _unlockMaxLimit,
"vault bal before sus"
);
assertEq(rajuBalBefore, _unlockMaxLimit, "raju bal before sus");
assertEq(
pendingUnlocksBefore,
withdrawAmount - _unlockMaxLimit,
"pending unlock before sus"
);
assertEq(
connectorPendingUnlocksBefore,
withdrawAmount - _unlockMaxLimit,
"total pending unlock before sus"
);
assertTrue(
time * _unlockRate > withdrawAmount - _unlockMaxLimit,
"not enough time"
);
skip(time);
_vault.unlockPendingFor(_raju, _connector);
uint256 vaultBalAfter = _token.balanceOf(address(_vault));
uint256 rajuBalAfter = _token.balanceOf(_raju);
uint256 pendingUnlocksAfter = _vault.pendingUnlocks(_connector, _raju);
uint256 connectorPendingUnlocksAfter = _vault.connectorPendingUnlocks(
_connector
);
assertEq(vaultBalAfter, 0, "vault bal after sus");
assertEq(rajuBalAfter, withdrawAmount, "raju bal after sus");
assertEq(pendingUnlocksAfter, 0, "pending unlock after sus");
assertEq(
connectorPendingUnlocksAfter,
0,
"total pending unlock after sus"
);
}
function testPartConsumeUnlockPending() external {
_setLimits();
uint256 withdrawAmount = 120 ether;
uint256 time = 5;
deal(address(_token), address(_vault), withdrawAmount);
vm.prank(_connector);
_vault.receiveInbound(abi.encode(_raju, withdrawAmount));
uint256 vaultBalBefore = _token.balanceOf(address(_vault));
uint256 rajuBalBefore = _token.balanceOf(_raju);
uint256 pendingUnlocksBefore = _vault.pendingUnlocks(_connector, _raju);
uint256 connectorPendingUnlocksBefore = _vault.connectorPendingUnlocks(
_connector
);
uint256 newUnlock = time * _unlockRate;
assertEq(
vaultBalBefore,
withdrawAmount - _unlockMaxLimit,
"vault bal before sus"
);
assertEq(rajuBalBefore, _unlockMaxLimit, "raju bal before sus");
assertEq(
pendingUnlocksBefore,
withdrawAmount - _unlockMaxLimit,
"pending unlock before sus"
);
assertEq(
connectorPendingUnlocksBefore,
withdrawAmount - _unlockMaxLimit,
"total pending unlock before sus"
);
assertTrue(withdrawAmount - _unlockMaxLimit > 0, "what to unlock?");
assertTrue(
newUnlock < withdrawAmount - _unlockMaxLimit,
"too much time"
);
skip(time);
_vault.unlockPendingFor(_raju, _connector);
uint256 vaultBalAfter = _token.balanceOf(address(_vault));
uint256 rajuBalAfter = _token.balanceOf(_raju);
uint256 pendingUnlocksAfter = _vault.pendingUnlocks(_connector, _raju);
uint256 connectorPendingUnlocksAfter = _vault.connectorPendingUnlocks(
_connector
);
assertEq(
vaultBalAfter,
withdrawAmount - _unlockMaxLimit - newUnlock,
"vault bal after sus"
);
assertEq(
rajuBalAfter,
_unlockMaxLimit + newUnlock,
"raju bal after sus"
);
assertEq(
pendingUnlocksAfter,
withdrawAmount - _unlockMaxLimit - newUnlock,
"pending unlock after sus"
);
assertEq(
connectorPendingUnlocksAfter,
withdrawAmount - _unlockMaxLimit - newUnlock,
"total pending unlock after sus"
);
}
}