-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPC.sol
693 lines (605 loc) · 23.8 KB
/
PC.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
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;
import {DeployDSC} from "../../script/DeployDSC.s.sol";
import {DSCEngine} from "../../src/DSCEngine.sol";
import {DecentralizedStableCoin} from "../../src/DecentralizedStableCoin.sol";
import {HelperConfig} from "../../script/HelperConfig.s.sol";
// import { ERC20Mock } from "@openzeppelin/contracts/mocks/ERC20Mock.sol"; Updated mock location
import {ERC20Mock} from "../mocks/ERC20Mock.sol";
import {MockV3Aggregator} from "../mocks/MockV3Aggregator.sol";
import {MockMoreDebtDSC} from "../mocks/MockMoreDebtDSC.sol";
import {MockFailedMintDSC} from "../mocks/MockFailedMintDSC.sol";
import {MockFailedTransferFrom} from "../mocks/MockFailedTransferFrom.sol";
import {MockFailedTransfer} from "../mocks/MockFailedTransfer.sol";
import {Test, console} from "forge-std/Test.sol";
import {StdCheats} from "forge-std/StdCheats.sol";
contract DSCEngineTest is StdCheats, Test {
event CollateralRedeemed(
address indexed redeemFrom,
address indexed redeemTo,
address token,
uint256 amount
); // if
// redeemFrom != redeemedTo, then it was liquidated
DSCEngine public dsce;
DecentralizedStableCoin public dsc;
HelperConfig public helperConfig;
address public ethUsdPriceFeed;
address public btcUsdPriceFeed;
address public weth;
address public wbtc;
uint256 public deployerKey;
uint256 amountCollateral = 10 ether;
uint256 amountToMint = 100 ether;
address public user = address(1);
uint256 public constant STARTING_USER_BALANCE = 10 ether;
uint256 public constant MIN_HEALTH_FACTOR = 1e18;
uint256 public constant LIQUIDATION_THRESHOLD = 50;
// Liquidation
address public liquidator = makeAddr("liquidator");
uint256 public collateralToCover = 20 ether;
function setUp() external {
DeployDSC deployer = new DeployDSC();
(dsc, dsce, helperConfig) = deployer.run();
(
ethUsdPriceFeed,
btcUsdPriceFeed,
weth,
wbtc,
deployerKey
) = helperConfig.activeNetworkConfig();
if (block.chainid == 31_337) {
vm.deal(user, STARTING_USER_BALANCE);
}
// Should we put our integration tests here?
// else {
// user = vm.addr(deployerKey);
// ERC20Mock mockErc = new ERC20Mock("MOCK", "MOCK", user, 100e18);
// MockV3Aggregator aggregatorMock = new MockV3Aggregator(
// helperConfig.DECIMALS(),
// helperConfig.ETH_USD_PRICE()
// );
// vm.etch(weth, address(mockErc).code);
// vm.etch(wbtc, address(mockErc).code);
// vm.etch(ethUsdPriceFeed, address(aggregatorMock).code);
// vm.etch(btcUsdPriceFeed, address(aggregatorMock).code);
// }
ERC20Mock(weth).mint(user, STARTING_USER_BALANCE);
ERC20Mock(wbtc).mint(user, STARTING_USER_BALANCE);
}
///////////////////////
// Constructor Tests //
///////////////////////
address[] public tokenAddresses;
address[] public feedAddresses;
function testRevertsIfTokenLengthDoesntMatchPriceFeeds() public {
tokenAddresses.push(weth);
feedAddresses.push(ethUsdPriceFeed);
feedAddresses.push(btcUsdPriceFeed);
vm.expectRevert(
DSCEngine
.DSCEngine__TokenAddressesAndPriceFeedAddressesAmountsDontMatch
.selector
);
new DSCEngine(tokenAddresses, feedAddresses, address(dsc));
}
//////////////////
// Price Tests //
//////////////////
function testGetTokenAmountFromUsd() public {
// If we want $100 of WETH @ $2000/WETH, that would be 0.05 WETH
uint256 expectedWeth = 0.05 ether;
uint256 amountWeth = dsce.getTokenAmountFromUsd(weth, 100 ether);
assertEq(amountWeth, expectedWeth);
}
function testGetUsdValue() public {
uint256 ethAmount = 15e18;
// 15e18 ETH * $2000/ETH = $30,000e18
uint256 expectedUsd = 30_000e18;
uint256 usdValue = dsce.getUsdValue(weth, ethAmount);
assertEq(usdValue, expectedUsd);
}
///////////////////////////////////////
// depositCollateral Tests //
///////////////////////////////////////
// this test needs it's own setup
function testRevertsIfTransferFromFails() public {
// Arrange - Setup
address owner = msg.sender;
vm.prank(owner);
MockFailedTransferFrom mockDsc = new MockFailedTransferFrom();
tokenAddresses = [address(mockDsc)];
feedAddresses = [ethUsdPriceFeed];
vm.prank(owner);
DSCEngine mockDsce = new DSCEngine(
tokenAddresses,
feedAddresses,
address(mockDsc)
);
mockDsc.mint(user, amountCollateral);
vm.prank(owner);
mockDsc.transferOwnership(address(mockDsce));
// Arrange - User
vm.startPrank(user);
ERC20Mock(address(mockDsc)).approve(
address(mockDsce),
amountCollateral
);
// Act / Assert
vm.expectRevert(DSCEngine.DSCEngine__TransferFailed.selector);
mockDsce.depositCollateral(address(mockDsc), amountCollateral);
vm.stopPrank();
}
function testRevertsIfCollateralZero() public {
vm.startPrank(user);
ERC20Mock(weth).approve(address(dsce), amountCollateral);
vm.expectRevert(DSCEngine.DSCEngine__NeedsMoreThanZero.selector);
dsce.depositCollateral(weth, 0);
vm.stopPrank();
}
function testRevertsWithUnapprovedCollateral() public {
ERC20Mock randToken = new ERC20Mock("RAN", "RAN", user, 100e18);
vm.startPrank(user);
vm.expectRevert(
abi.encodeWithSelector(
DSCEngine.DSCEngine__TokenNotAllowed.selector,
address(randToken)
)
);
dsce.depositCollateral(address(randToken), amountCollateral);
vm.stopPrank();
}
modifier depositedCollateral() {
vm.startPrank(user);
ERC20Mock(weth).approve(address(dsce), amountCollateral);
dsce.depositCollateral(weth, amountCollateral);
vm.stopPrank();
_;
}
function testCanDepositCollateralWithoutMinting()
public
depositedCollateral
{
uint256 userBalance = dsc.balanceOf(user);
assertEq(userBalance, 0);
}
function testCanDepositedCollateralAndGetAccountInfo()
public
depositedCollateral
{
(uint256 totalDscMinted, uint256 collateralValueInUsd) = dsce
.getAccountInformation(user);
uint256 expectedDepositedAmount = dsce.getTokenAmountFromUsd(
weth,
collateralValueInUsd
);
assertEq(totalDscMinted, 0);
assertEq(expectedDepositedAmount, amountCollateral);
}
///////////////////////////////////////
// depositCollateralAndMintDsc Tests //
///////////////////////////////////////
function testRevertsIfMintedDscBreaksHealthFactor() public {
(, int256 price, , , ) = MockV3Aggregator(ethUsdPriceFeed)
.latestRoundData();
amountToMint =
(amountCollateral *
(uint256(price) * dsce.getAdditionalFeedPrecision())) /
dsce.getPrecision();
vm.startPrank(user);
ERC20Mock(weth).approve(address(dsce), amountCollateral);
uint256 expectedHealthFactor = dsce.calculateHealthFactor(
amountToMint,
dsce.getUsdValue(weth, amountCollateral)
);
vm.expectRevert(
abi.encodeWithSelector(
DSCEngine.DSCEngine__BreaksHealthFactor.selector,
expectedHealthFactor
)
);
dsce.depositCollateralAndMintDsc(weth, amountCollateral, amountToMint);
vm.stopPrank();
}
modifier depositedCollateralAndMintedDsc() {
vm.startPrank(user);
ERC20Mock(weth).approve(address(dsce), amountCollateral);
dsce.depositCollateralAndMintDsc(weth, amountCollateral, amountToMint);
vm.stopPrank();
_;
}
function testCanMintWithDepositedCollateral()
public
depositedCollateralAndMintedDsc
{
uint256 userBalance = dsc.balanceOf(user);
assertEq(userBalance, amountToMint);
}
///////////////////////////////////
// mintDsc Tests //
///////////////////////////////////
// This test needs it's own custom setup
function testRevertsIfMintFails() public {
// Arrange - Setup
MockFailedMintDSC mockDsc = new MockFailedMintDSC();
tokenAddresses = [weth];
feedAddresses = [ethUsdPriceFeed];
address owner = msg.sender;
vm.prank(owner);
DSCEngine mockDsce = new DSCEngine(
tokenAddresses,
feedAddresses,
address(mockDsc)
);
mockDsc.transferOwnership(address(mockDsce));
// Arrange - User
vm.startPrank(user);
ERC20Mock(weth).approve(address(mockDsce), amountCollateral);
vm.expectRevert(DSCEngine.DSCEngine__MintFailed.selector);
mockDsce.depositCollateralAndMintDsc(
weth,
amountCollateral,
amountToMint
);
vm.stopPrank();
}
function testRevertsIfMintAmountIsZero() public {
vm.startPrank(user);
ERC20Mock(weth).approve(address(dsce), amountCollateral);
dsce.depositCollateralAndMintDsc(weth, amountCollateral, amountToMint);
vm.expectRevert(DSCEngine.DSCEngine__NeedsMoreThanZero.selector);
dsce.mintDsc(0);
vm.stopPrank();
}
function testRevertsIfMintAmountBreaksHealthFactor()
public
depositedCollateral
{
// 0xe580cc6100000000000000000000000000000000000000000000000006f05b59d3b20000
// 0xe580cc6100000000000000000000000000000000000000000000003635c9adc5dea00000
(, int256 price, , , ) = MockV3Aggregator(ethUsdPriceFeed)
.latestRoundData();
amountToMint =
(amountCollateral *
(uint256(price) * dsce.getAdditionalFeedPrecision())) /
dsce.getPrecision();
vm.startPrank(user);
uint256 expectedHealthFactor = dsce.calculateHealthFactor(
amountToMint,
dsce.getUsdValue(weth, amountCollateral)
);
vm.expectRevert(
abi.encodeWithSelector(
DSCEngine.DSCEngine__BreaksHealthFactor.selector,
expectedHealthFactor
)
);
dsce.mintDsc(amountToMint);
vm.stopPrank();
}
function testCanMintDsc() public depositedCollateral {
vm.prank(user);
dsce.mintDsc(amountToMint);
uint256 userBalance = dsc.balanceOf(user);
assertEq(userBalance, amountToMint);
}
///////////////////////////////////
// burnDsc Tests //
///////////////////////////////////
function testRevertsIfBurnAmountIsZero() public {
vm.startPrank(user);
ERC20Mock(weth).approve(address(dsce), amountCollateral);
dsce.depositCollateralAndMintDsc(weth, amountCollateral, amountToMint);
vm.expectRevert(DSCEngine.DSCEngine__NeedsMoreThanZero.selector);
dsce.burnDsc(0);
vm.stopPrank();
}
function testCantBurnMoreThanUserHas() public {
vm.prank(user);
vm.expectRevert();
dsce.burnDsc(1);
}
function testCanBurnDsc() public depositedCollateralAndMintedDsc {
vm.startPrank(user);
dsc.approve(address(dsce), amountToMint);
dsce.burnDsc(amountToMint);
vm.stopPrank();
uint256 userBalance = dsc.balanceOf(user);
assertEq(userBalance, 0);
}
///////////////////////////////////
// redeemCollateral Tests //
//////////////////////////////////
// this test needs it's own setup
function testRevertsIfTransferFails() public {
// Arrange - Setup
address owner = msg.sender;
vm.prank(owner);
MockFailedTransfer mockDsc = new MockFailedTransfer();
tokenAddresses = [address(mockDsc)];
feedAddresses = [ethUsdPriceFeed];
vm.prank(owner);
DSCEngine mockDsce = new DSCEngine(
tokenAddresses,
feedAddresses,
address(mockDsc)
);
mockDsc.mint(user, amountCollateral);
vm.prank(owner);
mockDsc.transferOwnership(address(mockDsce));
// Arrange - User
vm.startPrank(user);
ERC20Mock(address(mockDsc)).approve(
address(mockDsce),
amountCollateral
);
// Act / Assert
mockDsce.depositCollateral(address(mockDsc), amountCollateral);
vm.expectRevert(DSCEngine.DSCEngine__TransferFailed.selector);
mockDsce.redeemCollateral(address(mockDsc), amountCollateral);
vm.stopPrank();
}
function testRevertsIfRedeemAmountIsZero() public {
vm.startPrank(user);
ERC20Mock(weth).approve(address(dsce), amountCollateral);
dsce.depositCollateralAndMintDsc(weth, amountCollateral, amountToMint);
vm.expectRevert(DSCEngine.DSCEngine__NeedsMoreThanZero.selector);
dsce.redeemCollateral(weth, 0);
vm.stopPrank();
}
function testCanRedeemCollateral() public depositedCollateral {
vm.startPrank(user);
dsce.redeemCollateral(weth, amountCollateral);
uint256 userBalance = ERC20Mock(weth).balanceOf(user);
assertEq(userBalance, amountCollateral);
vm.stopPrank();
}
function testEmitCollateralRedeemedWithCorrectArgs()
public
depositedCollateral
{
vm.expectEmit(true, true, true, true, address(dsce));
emit CollateralRedeemed(user, user, weth, amountCollateral);
vm.startPrank(user);
dsce.redeemCollateral(weth, amountCollateral);
vm.stopPrank();
}
///////////////////////////////////
// redeemCollateralForDsc Tests //
//////////////////////////////////
function testMustRedeemMoreThanZero()
public
depositedCollateralAndMintedDsc
{
vm.startPrank(user);
dsc.approve(address(dsce), amountToMint);
vm.expectRevert(DSCEngine.DSCEngine__NeedsMoreThanZero.selector);
dsce.redeemCollateralForDsc(weth, 0, amountToMint);
vm.stopPrank();
}
function testCanRedeemDepositedCollateral() public {
vm.startPrank(user);
ERC20Mock(weth).approve(address(dsce), amountCollateral);
dsce.depositCollateralAndMintDsc(weth, amountCollateral, amountToMint);
dsc.approve(address(dsce), amountToMint);
dsce.redeemCollateralForDsc(weth, amountCollateral, amountToMint);
vm.stopPrank();
uint256 userBalance = dsc.balanceOf(user);
assertEq(userBalance, 0);
}
////////////////////////
// healthFactor Tests //
////////////////////////
function testProperlyReportsHealthFactor()
public
depositedCollateralAndMintedDsc
{
uint256 expectedHealthFactor = 100 ether;
uint256 healthFactor = dsce.getHealthFactor(user);
// $100 minted with $20,000 collateral at 50% liquidation threshold
// means that we must have $200 collatareral at all times.
// 20,000 * 0.5 = 10,000
// 10,000 / 100 = 100 health factor
assertEq(healthFactor, expectedHealthFactor);
}
function testHealthFactorCanGoBelowOne()
public
depositedCollateralAndMintedDsc
{
int256 ethUsdUpdatedPrice = 18e8; // 1 ETH = $18
// Rememeber, we need $200 at all times if we have $100 of debt
MockV3Aggregator(ethUsdPriceFeed).updateAnswer(ethUsdUpdatedPrice);
uint256 userHealthFactor = dsce.getHealthFactor(user);
// 180*50 (LIQUIDATION_THRESHOLD) / 100 (LIQUIDATION_PRECISION) / 100 (PRECISION) = 90 / 100 (totalDscMinted) =
// 0.9
assert(userHealthFactor == 0.9 ether);
}
///////////////////////
// Liquidation Tests //
///////////////////////
// This test needs it's own setup
function testMustImproveHealthFactorOnLiquidation() public {
// Arrange - Setup
MockMoreDebtDSC mockDsc = new MockMoreDebtDSC(ethUsdPriceFeed);
tokenAddresses = [weth];
feedAddresses = [ethUsdPriceFeed];
address owner = msg.sender;
vm.prank(owner);
DSCEngine mockDsce = new DSCEngine(
tokenAddresses,
feedAddresses,
address(mockDsc)
);
mockDsc.transferOwnership(address(mockDsce));
// Arrange - User
vm.startPrank(user);
ERC20Mock(weth).approve(address(mockDsce), amountCollateral);
mockDsce.depositCollateralAndMintDsc(
weth,
amountCollateral,
amountToMint
);
vm.stopPrank();
// Arrange - Liquidator
collateralToCover = 1 ether;
ERC20Mock(weth).mint(liquidator, collateralToCover);
vm.startPrank(liquidator);
ERC20Mock(weth).approve(address(mockDsce), collateralToCover);
uint256 debtToCover = 10 ether;
mockDsce.depositCollateralAndMintDsc(
weth,
collateralToCover,
amountToMint
);
mockDsc.approve(address(mockDsce), debtToCover);
// Act
int256 ethUsdUpdatedPrice = 18e8; // 1 ETH = $18
MockV3Aggregator(ethUsdPriceFeed).updateAnswer(ethUsdUpdatedPrice);
// Act/Assert
vm.expectRevert(DSCEngine.DSCEngine__HealthFactorNotImproved.selector);
mockDsce.liquidate(weth, user, debtToCover);
vm.stopPrank();
}
function testCantLiquidateGoodHealthFactor()
public
depositedCollateralAndMintedDsc
{
ERC20Mock(weth).mint(liquidator, collateralToCover);
vm.startPrank(liquidator);
ERC20Mock(weth).approve(address(dsce), collateralToCover);
dsce.depositCollateralAndMintDsc(weth, collateralToCover, amountToMint);
dsc.approve(address(dsce), amountToMint);
vm.expectRevert(DSCEngine.DSCEngine__HealthFactorOk.selector);
dsce.liquidate(weth, user, amountToMint);
vm.stopPrank();
}
modifier liquidated() {
uint256 amountCollateral = 10 ether;
uint256 amountToMint = 100 ether;
uint256 collateralToCover = 20 ether;
vm.startPrank(user);
ERC20Mock(weth).approve(address(dsce), amountCollateral);
dsce.depositCollateralAndMintDsc(weth, amountCollateral, amountToMint);
vm.stopPrank();
int256 ethUsdUpdatedPrice = 18e8; // 1 ETH = $18
MockV3Aggregator(ethUsdPriceFeed).updateAnswer(ethUsdUpdatedPrice);
uint256 userHealthFactor = dsce.getHealthFactor(user);
ERC20Mock(weth).mint(liquidator, collateralToCover);
vm.startPrank(liquidator);
ERC20Mock(weth).approve(address(dsce), collateralToCover);
dsce.depositCollateralAndMintDsc(weth, collateralToCover, amountToMint);
dsc.approve(address(dsce), amountToMint);
dsce.liquidate(weth, user, amountToMint); // We are covering their whole debt
vm.stopPrank();
_;
}
function testLiquidationPayoutIsCorrect() public liquidated {
uint256 liquidatorWethBalance = ERC20Mock(weth).balanceOf(liquidator);
uint256 expectedWeth = dsce.getTokenAmountFromUsd(weth, amountToMint) +
(dsce.getTokenAmountFromUsd(weth, amountToMint) /
dsce.getLiquidationBonus());
uint256 hardCodedExpected = 6_111_111_111_111_111_110;
assertEq(liquidatorWethBalance, hardCodedExpected);
assertEq(liquidatorWethBalance, expectedWeth);
}
function testUserStillHasSomeEthAfterLiquidation() public liquidated {
// Get how much WETH the user lost
uint256 amountLiquidated = dsce.getTokenAmountFromUsd(
weth,
amountToMint
) +
(dsce.getTokenAmountFromUsd(weth, amountToMint) /
dsce.getLiquidationBonus());
uint256 usdAmountLiquidated = dsce.getUsdValue(weth, amountLiquidated);
uint256 expectedUserCollateralValueInUsd = dsce.getUsdValue(
weth,
amountCollateral
) - (usdAmountLiquidated);
(, uint256 userCollateralValueInUsd) = dsce.getAccountInformation(user);
uint256 hardCodedExpectedValue = 70_000_000_000_000_000_020;
assertEq(userCollateralValueInUsd, expectedUserCollateralValueInUsd);
assertEq(userCollateralValueInUsd, hardCodedExpectedValue);
}
function testLiquidatorTakesOnUsersDebt() public liquidated {
(uint256 liquidatorDscMinted, ) = dsce.getAccountInformation(
liquidator
);
assertEq(liquidatorDscMinted, amountToMint);
}
function testUserHasNoMoreDebt() public liquidated {
(uint256 userDscMinted, ) = dsce.getAccountInformation(user);
assertEq(userDscMinted, 0);
}
///////////////////////////////////
// View & Pure Function Tests //
//////////////////////////////////
function testGetCollateralTokenPriceFeed() public {
address priceFeed = dsce.getCollateralTokenPriceFeed(weth);
assertEq(priceFeed, ethUsdPriceFeed);
}
function testGetCollateralTokens() public {
address[] memory collateralTokens = dsce.getCollateralTokens();
assertEq(collateralTokens[0], weth);
}
function testGetMinHealthFactor() public {
uint256 minHealthFactor = dsce.getMinHealthFactor();
assertEq(minHealthFactor, MIN_HEALTH_FACTOR);
}
function testGetLiquidationThreshold() public {
uint256 liquidationThreshold = dsce.getLiquidationThreshold();
assertEq(liquidationThreshold, LIQUIDATION_THRESHOLD);
}
function testGetAccountCollateralValueFromInformation()
public
depositedCollateral
{
(, uint256 collateralValue) = dsce.getAccountInformation(user);
uint256 expectedCollateralValue = dsce.getUsdValue(
weth,
amountCollateral
);
assertEq(collateralValue, expectedCollateralValue);
}
function testGetCollateralBalanceOfUser() public {
vm.startPrank(user);
ERC20Mock(weth).approve(address(dsce), amountCollateral);
dsce.depositCollateral(weth, amountCollateral);
vm.stopPrank();
uint256 collateralBalance = dsce.getCollateralBalanceOfUser(user, weth);
assertEq(collateralBalance, amountCollateral);
}
function testGetAccountCollateralValue() public {
vm.startPrank(user);
ERC20Mock(weth).approve(address(dsce), amountCollateral);
dsce.depositCollateral(weth, amountCollateral);
vm.stopPrank();
uint256 collateralValue = dsce.getAccountCollateralValue(user);
uint256 expectedCollateralValue = dsce.getUsdValue(
weth,
amountCollateral
);
assertEq(collateralValue, expectedCollateralValue);
}
function testGetDsc() public {
address dscAddress = dsce.getDsc();
assertEq(dscAddress, address(dsc));
}
function testLiquidationPrecision() public {
uint256 expectedLiquidationPrecision = 100;
uint256 actualLiquidationPrecision = dsce.getLiquidationPrecision();
assertEq(actualLiquidationPrecision, expectedLiquidationPrecision);
}
// How do we adjust our invariant tests for this?
// function testInvariantBreaks() public depositedCollateralAndMintedDsc {
// MockV3Aggregator(ethUsdPriceFeed).updateAnswer(0);
// uint256 totalSupply = dsc.totalSupply();
// uint256 wethDeposted = ERC20Mock(weth).balanceOf(address(dsce));
// uint256 wbtcDeposited = ERC20Mock(wbtc).balanceOf(address(dsce));
// uint256 wethValue = dsce.getUsdValue(weth, wethDeposted);
// uint256 wbtcValue = dsce.getUsdValue(wbtc, wbtcDeposited);
// console.log("wethValue: %s", wethValue);
// console.log("wbtcValue: %s", wbtcValue);
// console.log("totalSupply: %s", totalSupply);
// assert(wethValue + wbtcValue >= totalSupply);
// }
}