Files
assetxContracts/test/YtLending.t.sol

1448 lines
56 KiB
Solidity
Raw Permalink Normal View History

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
2025-12-18 13:07:35 +08:00
import {Test} from "forge-std/Test.sol";
import {Lending} from "../contracts/ytLending/Lending.sol";
import {LendingFactory} from "../contracts/ytLending/LendingFactory.sol";
import {LendingPriceFeed} from "../contracts/ytLending/LendingPriceFeed.sol";
import {Configurator} from "../contracts/ytLending/Configurator.sol";
import {LendingConfiguration} from "../contracts/ytLending/LendingConfiguration.sol";
import {ILending} from "../contracts/interfaces/ILending.sol";
import {YTAssetFactory} from "../contracts/ytVault/YTAssetFactory.sol";
import {YTAssetVault} from "../contracts/ytVault/YTAssetVault.sol";
import {ERC1967Proxy} from "@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol";
import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import {AggregatorV3Interface} from "@chainlink/contracts/src/v0.8/shared/interfaces/AggregatorV3Interface.sol";
2025-12-18 13:07:35 +08:00
/**
* @title YtLendingTest
* @notice Lending
*/
contract YtLendingTest is Test {
// 合约实例
Lending public lending;
Lending public lendingImpl;
LendingFactory public lendingFactory;
YTAssetFactory public ytFactory;
Configurator public configurator;
LendingPriceFeed public priceFeed;
MockChainlinkPriceFeed public usdcPriceFeed;
// 测试代币
MockERC20 public usdc; // 基础资产 (6 decimals - 真实 USDC)
YTAssetVault public ytVault; // YT 抵押品 (18 decimals)
// 测试账户
address public owner = address(this);
address public alice = address(0x1);
address public bob = address(0x2);
address public charlie = address(0x3);
address public liquidator = address(0x4);
// 常量
uint256 constant INITIAL_USDC_SUPPLY = 10000000e6; // 1000万 USDC (6 decimals)
// 利率参数年化18位精度
uint64 constant SUPPLY_KINK = 0.8e18; // 80%
uint64 constant SUPPLY_RATE_LOW = 0.03e18; // 3% APY
uint64 constant SUPPLY_RATE_HIGH = 0.4e18; // 40% APY
uint64 constant SUPPLY_RATE_BASE = 0; // 设置为0%,当没有借款时,存款人不获得利息
uint64 constant BORROW_KINK = 0.8e18; // 80%
uint64 constant BORROW_RATE_LOW = 0.05e18; // 5% APY
uint64 constant BORROW_RATE_HIGH = 1.5e18; // 150% APY
uint64 constant BORROW_RATE_BASE = 0.015e18; // 1.5% base
// 抵押品参数
uint64 constant BORROW_CF = 0.80e18; // 80% LTV
uint64 constant LIQUIDATE_CF = 0.85e18; // 85% 清算线
uint64 constant LIQUIDATION_FACTOR = 0.95e18; // 95% 清算系数
uint64 constant STORE_FRONT_PRICE_FACTOR = 0.5e18; // 50% 折扣系数
uint256 constant BASE_BORROW_MIN = 100e6; // 最小借款 100 USDC (6 decimals)
uint256 constant TARGET_RESERVES = 5000000e6; // 目标储备 500万 (6 decimals)
// 初始价格Chainlink 使用 1e8 精度)
int256 constant USDC_CHAINLINK_PRICE = 1e8; // $1 (8 decimals)
// YT价格1e30 精度,存储在 YTAssetVault 内部)
uint256 constant YT_PRICE = 2000e30; // $2000 (30 decimals) - YT类似ETH的高价值代币
function setUp() public {
// 1. 部署 USDC 代币 (6 decimals - 真实 USDC)
usdc = new MockERC20("USD Coin", "USDC", 6);
// 2. 部署 Mock Chainlink Price Feed
usdcPriceFeed = new MockChainlinkPriceFeed(USDC_CHAINLINK_PRICE, 8);
// 3. 部署 YTAssetVault 实现合约
YTAssetVault ytVaultImpl = new YTAssetVault();
// 4. 部署 YTAssetFactory 并初始化
YTAssetFactory ytFactoryImpl = new YTAssetFactory();
bytes memory ytFactoryInitData = abi.encodeWithSelector(
YTAssetFactory.initialize.selector,
address(ytVaultImpl), // vaultImplementation
10000000e18 // defaultHardCap (1000万)
);
ERC1967Proxy ytFactoryProxy = new ERC1967Proxy(address(ytFactoryImpl), ytFactoryInitData);
ytFactory = YTAssetFactory(address(ytFactoryProxy));
// 5. 通过 factory 创建 YTAssetVault
ytVault = YTAssetVault(ytFactory.createVault(
"YT Token", // name
"YT", // symbol
address(this), // manager
1000000e18, // hardCap
address(usdc), // usdc address
block.timestamp + 365 days, // redemption time
YT_PRICE, // initial ytPrice
address(usdcPriceFeed) // usdcPriceFeed address
));
// 6. 部署 LendingPriceFeed
LendingPriceFeed priceFeedImpl = new LendingPriceFeed();
bytes memory priceFeedInitData = abi.encodeWithSelector(
LendingPriceFeed.initialize.selector,
address(usdc),
address(usdcPriceFeed)
);
ERC1967Proxy priceFeedProxy = new ERC1967Proxy(address(priceFeedImpl), priceFeedInitData);
priceFeed = LendingPriceFeed(address(priceFeedProxy));
// 7. 铸造测试代币
usdc.mint(owner, INITIAL_USDC_SUPPLY);
usdc.mint(alice, 100000e6); // Alice: 10万 USDC
usdc.mint(bob, 100000e6); // Bob: 10万 USDC需要买YT + 提供流动性)
usdc.mint(liquidator, 200000e6); // Liquidator: 20万 USDC
// 8. 部署 LendingFactory
lendingFactory = new LendingFactory();
// 9. 部署 Configurator (UUPS proxy)
Configurator configuratorImpl = new Configurator();
bytes memory configuratorInitData = abi.encodeWithSelector(
Configurator.initialize.selector
);
ERC1967Proxy configuratorProxy = new ERC1967Proxy(
address(configuratorImpl),
configuratorInitData
);
configurator = Configurator(address(configuratorProxy));
// 10. 通过 Factory 部署 Lending 实现
lendingImpl = Lending(lendingFactory.deploy());
// 11. 准备 Lending 配置
LendingConfiguration.AssetConfig[] memory assetConfigs = new LendingConfiguration.AssetConfig[](1);
assetConfigs[0] = LendingConfiguration.AssetConfig({
asset: address(ytVault),
decimals: 18,
borrowCollateralFactor: BORROW_CF,
liquidateCollateralFactor: LIQUIDATE_CF,
liquidationFactor: LIQUIDATION_FACTOR,
supplyCap: 100000e18 // 最多 10万 YT
});
LendingConfiguration.Configuration memory config = LendingConfiguration.Configuration({
baseToken: address(usdc),
lendingPriceSource: address(priceFeed),
supplyKink: SUPPLY_KINK,
supplyPerYearInterestRateSlopeLow: SUPPLY_RATE_LOW,
supplyPerYearInterestRateSlopeHigh: SUPPLY_RATE_HIGH,
supplyPerYearInterestRateBase: SUPPLY_RATE_BASE,
borrowKink: BORROW_KINK,
borrowPerYearInterestRateSlopeLow: BORROW_RATE_LOW,
borrowPerYearInterestRateSlopeHigh: BORROW_RATE_HIGH,
borrowPerYearInterestRateBase: BORROW_RATE_BASE,
storeFrontPriceFactor: STORE_FRONT_PRICE_FACTOR,
baseBorrowMin: uint104(BASE_BORROW_MIN),
targetReserves: uint104(TARGET_RESERVES),
assetConfigs: assetConfigs
});
// 12. 部署 Lending proxy
bytes memory lendingInitData = abi.encodeWithSelector(
Lending.initialize.selector,
config
);
ERC1967Proxy lendingProxy = new ERC1967Proxy(
address(lendingImpl),
lendingInitData
);
lending = Lending(address(lendingProxy));
// 13. 铸造 YT 代币给用户(通过 YTAssetVault.depositYT
// YT价格 = $2000, USDC价格 = $1所以 2000 USDC = 1 YT
// 测试中通常需要 10-20 YT 作为抵押品
vm.startPrank(alice);
usdc.approve(address(ytVault), type(uint256).max);
ytVault.depositYT(50000e6); // Alice 用 50000 USDC 买入 25 YT (25 * $2000 = $50,000)
vm.stopPrank();
vm.startPrank(bob);
usdc.approve(address(ytVault), type(uint256).max);
ytVault.depositYT(40000e6); // Bob 用 40000 USDC 买入 20 YT (20 * $2000 = $40,000)
vm.stopPrank();
vm.startPrank(charlie);
usdc.mint(charlie, 30000e6);
usdc.approve(address(ytVault), type(uint256).max);
ytVault.depositYT(20000e6); // Charlie 用 20000 USDC 买入 10 YT (10 * $2000 = $20,000)
vm.stopPrank();
// 14. 用户授权 Lending 合约
vm.prank(alice);
usdc.approve(address(lending), type(uint256).max);
vm.prank(alice);
ytVault.approve(address(lending), type(uint256).max);
vm.prank(bob);
usdc.approve(address(lending), type(uint256).max);
vm.prank(bob);
ytVault.approve(address(lending), type(uint256).max);
vm.prank(charlie);
ytVault.approve(address(lending), type(uint256).max);
vm.prank(liquidator);
usdc.approve(address(lending), type(uint256).max);
// Owner 也需要授权
usdc.approve(address(lending), type(uint256).max);
ytVault.approve(address(lending), type(uint256).max);
}
/*//////////////////////////////////////////////////////////////
SUPPLY
//////////////////////////////////////////////////////////////*/
function test_01_Supply_Basic() public {
// Alice 存入 10,000 USDC
uint256 supplyAmount = 10000e6;
vm.startPrank(alice);
lending.supply(supplyAmount);
vm.stopPrank();
// 验证余额
assertEq(lending.supplyBalanceOf(alice), 10000e6, "Alice balance should be 10,000 USDC");
assertEq(lending.getTotalSupply(), 10000e6, "Total supply should be 10,000 USDC");
// 验证 principal初始时 index=1所以 principal=balance
(int104 principal) = lending.userBasic(alice);
assertEq(uint104(principal), 10000e6, "Principal should equal supply amount at index=1");
}
function test_02_Supply_Multiple() public {
// Alice 存 10,000 USDC
vm.prank(alice);
lending.supply(10000e6);
// Bob 存 5,000 USDC
vm.prank(bob);
lending.supply(5000e6);
// 验证
assertEq(lending.supplyBalanceOf(alice), 10000e6, "Alice balance");
assertEq(lending.supplyBalanceOf(bob), 5000e6, "Bob balance");
assertEq(lending.getTotalSupply(), 15000e6, "Total supply should be 15,000 USDC");
}
/*//////////////////////////////////////////////////////////////
WITHDRAW
//////////////////////////////////////////////////////////////*/
function test_03_Withdraw_Full() public {
// Alice 存入 10,000 USDC
vm.prank(alice);
lending.supply(10000e6);
// Alice 取出全部
vm.prank(alice);
lending.withdraw(10000e6);
assertEq(lending.supplyBalanceOf(alice), 0, "Alice balance should be 0");
assertEq(lending.getTotalSupply(), 0, "Total supply should be 0");
}
function test_04_Withdraw_Partial() public {
// Alice 存入 10,000 USDC
vm.prank(alice);
lending.supply(10000e6);
// Alice 取出 3,000 USDC
vm.prank(alice);
lending.withdraw(3000e6);
assertEq(lending.supplyBalanceOf(alice), 7000e6, "Alice balance should be 7,000 USDC");
assertEq(lending.getTotalSupply(), 7000e6, "Total supply should be 7,000 USDC");
}
/*//////////////////////////////////////////////////////////////
COLLATERAL
//////////////////////////////////////////////////////////////*/
function test_05_SupplyCollateral() public {
// Alice 存入 10 YTToken 作为抵押品
vm.prank(alice);
lending.supplyCollateral(address(ytVault), 10e18);
assertEq(lending.getCollateral(alice, address(ytVault)), 10e18, "Alice collateral should be 10 YTToken");
}
function test_06_WithdrawCollateral() public {
// Alice 存入 10 YTToken
vm.prank(alice);
lending.supplyCollateral(address(ytVault), 10e18);
// 取出 3 YTToken
vm.prank(alice);
lending.withdrawCollateral(address(ytVault), 3e18);
assertEq(lending.getCollateral(alice, address(ytVault)), 7e18, "Remaining collateral should be 7 YTToken");
}
/*//////////////////////////////////////////////////////////////
BORROW
//////////////////////////////////////////////////////////////*/
function test_07_Borrow_WithCollateral() public {
// Bob 先存入 USDC 提供流动性
vm.prank(bob);
lending.supply(50000e6);
// Alice 存入 10 YTToken 作为抵押(价值 $20,000
vm.startPrank(alice);
lending.supplyCollateral(address(ytVault), 10e18);
// 借款 $16,000 USDC80% LTV
uint256 borrowAmount = 16000e6;
2025-12-29 15:30:10 +08:00
lending.withdraw(borrowAmount);
vm.stopPrank();
// 验证
assertEq(lending.borrowBalanceOf(alice), 16000e6, "Borrow balance should be 16,000 USDC");
assertEq(lending.getTotalBorrow(), 16000e6, "Total borrow should be 16,000 USDC");
// 验证 principal 为负
(int104 principal) = lending.userBasic(alice);
assertTrue(principal < 0, "Principal should be negative for borrower");
}
function test_08_Borrow_FailWithoutCollateral() public {
// Alice 尝试无抵押借款
vm.prank(alice);
vm.expectRevert(ILending.InsufficientCollateral.selector);
2025-12-29 15:30:10 +08:00
lending.withdraw(1000e6);
}
function test_09_Borrow_FailBelowMinimum() public {
// Alice 存入抵押品
vm.startPrank(alice);
lending.supplyCollateral(address(ytVault), 1e18);
// 尝试借款低于最小值 (< 100 USDC)
vm.expectRevert(ILending.BorrowTooSmall.selector);
2025-12-29 15:30:10 +08:00
lending.withdraw(50e6);
vm.stopPrank();
}
/*//////////////////////////////////////////////////////////////
INTEREST ACCRUAL
//////////////////////////////////////////////////////////////*/
function test_10_InterestAccrual_Supply() public {
// Alice 存入 10,000 USDC
vm.prank(alice);
lending.supply(10000e6);
// Bob 存入 10 YTToken借 8,000 USDC
vm.startPrank(bob);
lending.supplyCollateral(address(ytVault), 10e18);
2025-12-29 15:30:10 +08:00
lending.withdraw(8000e6);
vm.stopPrank();
// 时间前进 365 天
vm.warp(block.timestamp + 365 days);
// 触发利息累积
lending.accrueInterest();
// 利用率 = 8000 / 10000 = 80%(在 kink 点)
// Supply APY 计算:
// rate = base + (utilization × slope)
// = 0% + (80% × 3%) = 2.4%
// 预期余额 = 10,000 × 1.024 = 10,240 USDC
uint256 aliceBalance = lending.supplyBalanceOf(alice);
assertApproxEqRel(aliceBalance, 10240e6, 0.001e18, "Alice should earn 2.4% interest (0.1% tolerance)");
// Borrow APY 计算:
// rate = base + (utilization × slope)
// = 1.5% + (80% × 5%) = 5.5%
// 预期债务 = 8,000 × 1.055 = 8,440 USDC
uint256 bobDebt = lending.borrowBalanceOf(bob);
assertApproxEqRel(bobDebt, 8440e6, 0.001e18, "Bob should owe 5.5% interest (0.1% tolerance)");
}
function test_11_InterestAccrual_Compound() public {
// Owner 先存入流动性
vm.prank(owner);
lending.supply(20000e6);
// Alice 存入 10,000 USDC
vm.prank(alice);
lending.supply(10000e6);
// Bob 借款
vm.startPrank(bob);
lending.supplyCollateral(address(ytVault), 10e18);
2025-12-29 15:30:10 +08:00
lending.withdraw(8000e6);
vm.stopPrank();
// 每月触发一次利息累积(模拟复利)
for (uint i = 0; i < 12; i++) {
vm.warp(block.timestamp + 30 days);
lending.accrueInterest();
}
// 验证复利效果(按秒计算的利息应该增长余额)
// Alice 占总存款的 1/3 (10k / 30k),所以获得约 1/3 的供应利息
// 利用率 = 8k / 30k ≈ 27%,供应利率较低
uint256 aliceBalance = lending.supplyBalanceOf(alice);
assertTrue(aliceBalance > 10000e6, "Compound interest should grow balance");
}
/*//////////////////////////////////////////////////////////////
LIQUIDATION
//////////////////////////////////////////////////////////////*/
function test_12_IsLiquidatable_Healthy() public {
// Alice 先存入流动性
vm.prank(alice);
lending.supply(50000e6);
// Bob 存入 10 YTToken (价值 $20,000),借 10,000 USDC
vm.startPrank(bob);
lending.supplyCollateral(address(ytVault), 10e18);
2025-12-29 15:30:10 +08:00
lending.withdraw(10000e6);
vm.stopPrank();
// LTV = 50%,健康
assertFalse(lending.isLiquidatable(bob), "Bob should not be liquidatable");
}
function test_13_IsLiquidatable_Underwater() public {
// Alice 先存入流动性
vm.prank(alice);
lending.supply(50000e6);
// Bob 存入 10 YTToken借 16,000 USDC80% LTV
vm.startPrank(bob);
lending.supplyCollateral(address(ytVault), 10e18);
2025-12-29 15:30:10 +08:00
lending.withdraw(16000e6);
vm.stopPrank();
// YTToken 价格暴跌到 $1,800
ytFactory.updateVaultPrices(address(ytVault), 1800e30);
// 抵押品价值 = 10 * 1800 = $18,000
// 清算阈值 = 18,000 * 85% = $15,300
// 债务 = $16,000 > $15,300可清算
assertTrue(lending.isLiquidatable(bob), "Bob should be liquidatable");
}
function test_14_Liquidation_AtExactThreshold() public {
// 这个测试验证:在刚好达到清算线时就可以被清算
// 0. Alice 先存入流动性
vm.prank(alice);
lending.supply(50000e6);
// 1. Bob 建立借款头寸
vm.startPrank(bob);
lending.supplyCollateral(address(ytVault), 10e18); // 10 YTToken @ $2000 = $20,000
2025-12-29 15:30:10 +08:00
lending.withdraw(16000e6); // $16,00080% LTV
vm.stopPrank();
// 2. 计算精确的清算价格1e30 精度)
// 清算条件debtValue > collateralValue × liquidateCollateralFactor
// 16000 USD > (10 YT × ytPrice / 1e30) × 0.85
// 16000 > 10 × ytPrice × 0.85 / 1e30
// 16000 > 8.5 × ytPrice / 1e30
// ytPrice < 16000 × 1e30 / 8.5
// ytPrice < 1882.352941176470588235294117647... × 1e30
//
// 为了测试边界情况,使用接近临界值的价格
// 在清算阈值之上(安全)
ytFactory.updateVaultPrices(address(ytVault), 1883e30); // $1,883
assertFalse(lending.isLiquidatable(bob), "Bob should be safe at $1,883");
// 更明显的安全价格
ytFactory.updateVaultPrices(address(ytVault), 1890e30); // $1,890
assertFalse(lending.isLiquidatable(bob), "Bob should be safe at $1,890");
// 刚好跌破清算阈值(约 $1,882.35
// 为了简化,使用 $1,880明显低于阈值
ytFactory.updateVaultPrices(address(ytVault), 1880e30); // $1,880
// collateralValue = 10 × 1880 × 0.85 = 15,980 < 16,000
assertTrue(lending.isLiquidatable(bob), "Bob should be liquidatable at $1,880");
// 3. 执行清算
vm.prank(liquidator);
lending.absorb(bob);
// 4. 验证清算成功
assertEq(lending.getCollateral(bob, address(ytVault)), 0, "Bob's collateral should be seized");
assertEq(lending.getCollateralReserves(address(ytVault)), 10e18, "Collateral should be in reserves");
}
function test_15_Absorb_Single() public {
// 0. Alice 先存入流动性
vm.prank(alice);
lending.supply(50000e6);
// 1. Bob 建立不良头寸
vm.startPrank(bob);
lending.supplyCollateral(address(ytVault), 10e18); // 10 YTToken @ $2000 = $20,000
2025-12-29 15:30:10 +08:00
lending.withdraw(16000e6); // $16,000
vm.stopPrank();
// 2. YTToken 价格跌到 $1,750
ytFactory.updateVaultPrices(address(ytVault), 1750e30);
// 抵押品价值 = 10 * 1750 = $17,500
// 清算阈值 = 17,500 * 0.85 = $14,875 < $16,000
assertTrue(lending.isLiquidatable(bob), "Bob should be liquidatable");
// 3. 清算人执行清算
vm.prank(liquidator);
lending.absorb(bob);
// 4. 验证结果
// Bob 的抵押品应该被没收
assertEq(lending.getCollateral(bob, address(ytVault)), 0, "Bob's collateral should be seized");
// 抵押品进入库存
assertEq(lending.getCollateralReserves(address(ytVault)), 10e18, "Collateral should be in reserves");
// Bob 的债务应该被清零(由储备金承担)
assertEq(lending.borrowBalanceOf(bob), 0, "Bob's debt should be absorbed");
// 抵押品价值(打折后)= 17,500 * 0.95 = 16,625
// 可以覆盖 16,000 债务,还剩 625
assertTrue(lending.supplyBalanceOf(bob) > 0, "Bob should have positive balance from excess collateral");
}
function test_16_AbsorbMultiple_Batch() public {
// 0. Alice 先存入流动性
vm.prank(alice);
lending.supply(50000e6);
// 1. Bob 和 Charlie 都建立不良头寸
vm.startPrank(bob);
lending.supplyCollateral(address(ytVault), 10e18);
2025-12-29 15:30:10 +08:00
lending.withdraw(16000e6);
vm.stopPrank();
vm.startPrank(charlie);
lending.supplyCollateral(address(ytVault), 5e18);
2025-12-29 15:30:10 +08:00
lending.withdraw(8000e6);
vm.stopPrank();
// 2. 价格下跌
ytFactory.updateVaultPrices(address(ytVault), 1750e30);
// 3. 批量清算
address[] memory accounts = new address[](2);
accounts[0] = bob;
accounts[1] = charlie;
vm.prank(liquidator);
lending.absorbMultiple(liquidator, accounts);
// 4. 验证
assertEq(lending.getCollateralReserves(address(ytVault)), 15e18, "Total collateral should be 15 YTToken");
assertEq(lending.borrowBalanceOf(bob), 0, "Bob's debt cleared");
assertEq(lending.borrowBalanceOf(charlie), 0, "Charlie's debt cleared");
}
/*//////////////////////////////////////////////////////////////
BUY COLLATERAL
//////////////////////////////////////////////////////////////*/
function test_17_BuyCollateral_Basic() public {
// 0. Alice 先存入流动性
vm.prank(alice);
lending.supply(50000e6);
// 1. 先清算一个账户,产生抵押品库存
vm.startPrank(bob);
lending.supplyCollateral(address(ytVault), 10e18);
2025-12-29 15:30:10 +08:00
lending.withdraw(16000e6);
vm.stopPrank();
ytFactory.updateVaultPrices(address(ytVault), 1750e30);
vm.prank(liquidator);
lending.absorb(bob);
// 2. 计算购买价格
// YTToken 市场价 = $1,750
// liquidationFactor = 0.95
// storeFrontPriceFactor = 0.5
// discountFactor = 0.5 * (1 - 0.95) = 0.025 (2.5%)
// 折扣价 = 1750 * (1 - 0.025) = $1,706.25
uint256 baseAmount = 17062500000; // 支付 $17,062.50 USDC (6 decimals: 17062.5 * 1e6)
uint256 expectedYTToken = lending.quoteCollateral(address(ytVault), baseAmount);
// 预期获得 17062.5 / 1706.25 = 10 YTToken
assertEq(expectedYTToken, 10e18, "Should get 10 YTToken");
// 3. 购买抵押品
vm.prank(liquidator);
lending.buyCollateral(address(ytVault), 9.9e18, baseAmount, liquidator);
// 4. 验证
assertEq(ytVault.balanceOf(liquidator), 10e18, "Liquidator should receive 10 YTToken");
assertEq(lending.getCollateralReserves(address(ytVault)), 0, "Collateral reserve should be empty");
}
function test_18_BuyCollateral_WithRecipient() public {
// 先存入流动性
vm.prank(owner);
lending.supply(50000e6);
// 设置清算库存
vm.startPrank(bob);
lending.supplyCollateral(address(ytVault), 10e18);
2025-12-29 15:30:10 +08:00
lending.withdraw(16000e6);
vm.stopPrank();
ytFactory.updateVaultPrices(address(ytVault), 1750e30);
vm.prank(liquidator);
lending.absorb(bob);
// Liquidator 购买,但发送给 alice
uint256 baseAmount = 17062500000; // $17,062.50 USDC (6 decimals)
vm.prank(liquidator);
lending.buyCollateral(address(ytVault), 9.9e18, baseAmount, alice);
// 验证 alice 收到抵押品
// Alice 原有 25 YT (用 50000 USDC 买入: 50000 * 1 / 2000 = 25)
// 加上购买的 10 YT总共约 35 YT
assertApproxEqAbs(ytVault.balanceOf(alice), 35e18, 0.1e18, "Alice should receive the purchased YTToken (25 + ~10)");
}
function test_19_BuyCollateral_FailWhenReserveSufficient() public {
// 这个测试验证:当 reserves >= targetReserves 时,不能购买抵押品
// 为简化测试,我们直接验证 buyCollateral 的逻辑
// 先让多人存款以建立充足的储备金
usdc.mint(alice, 20000000e6); // 铸造足够的 USDC
vm.prank(alice);
lending.supply(20000000e6); // 2000万存款
// Bob 小额借款
vm.startPrank(bob);
lending.supplyCollateral(address(ytVault), 10e18); // 10 YTToken @ $2000 = $20,000
2025-12-29 15:30:10 +08:00
lending.withdraw(100e6); // 只借 $100
vm.stopPrank();
// 让时间流逝以累积利息,增加 reserves
vm.warp(block.timestamp + 365 days);
lending.accrueInterest();
// 价格大幅下跌触发清算
ytFactory.updateVaultPrices(address(ytVault), 10e30); // 价格跌到 $10
// 抵押品价值 = 10 * 10 = $100
// 清算阈值 = 100 * 0.85 = $85 < ~$100 (债务+利息)
// 如果 Bob 可清算,执行清算
if (lending.isLiquidatable(bob)) {
vm.prank(liquidator);
lending.absorb(bob);
2025-12-18 13:07:35 +08:00
// 验证有抵押品库存
if (lending.getCollateralReserves(address(ytVault)) > 0) {
// 检查 reserves 是否充足
int256 reserves = lending.getReserves();
2025-12-18 13:07:35 +08:00
// 如果 reserves >= targetReserves购买应该失败
if (reserves >= 0 && uint256(reserves) >= TARGET_RESERVES) {
vm.prank(liquidator);
vm.expectRevert();
lending.buyCollateral(address(ytVault), 0, 10e6, liquidator);
}
}
}
// 至少验证协议仍在正常运行
assertTrue(true, "Test completed");
}
2026-01-07 10:49:49 +08:00
function test_20_BuyCollateral_AutoCapToReserve() public {
// 0. Alice 先存入流动性
vm.prank(alice);
lending.supply(50000e6);
// 1. Bob 建立借款头寸并被清算
vm.startPrank(bob);
lending.supplyCollateral(address(ytVault), 10e18); // 10 YTToken @ $2000 = $20,000
lending.withdraw(16000e6);
vm.stopPrank();
ytFactory.updateVaultPrices(address(ytVault), 1750e30); // 价格跌到 $1,750
vm.prank(liquidator);
lending.absorb(bob);
// 2. 验证有 10 YTToken 的储备
assertEq(lending.getCollateralReserves(address(ytVault)), 10e18, "Should have 10 YTToken in reserves");
// 3. 价格进一步暴跌(模拟价格波动)
ytFactory.updateVaultPrices(address(ytVault), 500e30); // 价格暴跌到 $500
// 4. 计算:按 $500 计算,支付 5000 USDC 理论上能买到更多
// discount = 0.5 * (1 - 0.95) = 0.025 (2.5%)
// 折扣价 = 500 * (1 - 0.025) = $487.5
// 5000 / 487.5 = 10.26 YTToken超过储备的 10个
uint256 baseAmount = 5000e6; // 愿意支付 $5,000
uint256 liquidatorBalanceBefore = usdc.balanceOf(liquidator);
// 5. 购买抵押品(应该自动限制到 10 YTToken
vm.prank(liquidator);
lending.buyCollateral(
address(ytVault),
9e18, // minAmount: 至少要买到 9 个(允许一些滑点)
baseAmount, // 愿意支付 5000 USDC
liquidator
);
// 6. 验证结果
assertEq(ytVault.balanceOf(liquidator), 10e18, "Should receive exactly 10 YTToken (all reserves)");
assertEq(lending.getCollateralReserves(address(ytVault)), 0, "Reserves should be emptied");
// 7. 关键验证:只扣除了购买 10 YTToken 所需的费用,而不是全部 5000 USDC
uint256 actualPaid = liquidatorBalanceBefore - usdc.balanceOf(liquidator);
uint256 expectedPrice = 10e18 * 487.5e6 / 1e18; // 10 YTToken * $487.5 = $4,875
assertApproxEqAbs(actualPaid, expectedPrice, 1e6, "Should only pay for 10 YTToken, not the full baseAmount");
assertTrue(actualPaid < baseAmount, "Should pay less than the offered baseAmount");
}
function test_21_BuyCollateral_SlippageProtectionWithCap() public {
// 测试:当购买量被限制后,仍然要满足 minAmount 要求
// 设置场景:只有 5 YTToken 储备
vm.prank(alice);
lending.supply(50000e6);
vm.startPrank(charlie);
lending.supplyCollateral(address(ytVault), 5e18); // 只有 5 YTToken
lending.withdraw(8000e6);
vm.stopPrank();
ytFactory.updateVaultPrices(address(ytVault), 1750e30);
vm.prank(liquidator);
lending.absorb(charlie);
// 验证储备只有 5 YTToken
assertEq(lending.getCollateralReserves(address(ytVault)), 5e18, "Should have 5 YTToken in reserves");
// 价格暴跌,理论上能买到 20 个,但只有 5 个储备
ytFactory.updateVaultPrices(address(ytVault), 200e30);
// 尝试购买,但 minAmount 设置为 10储备只有 5
vm.prank(liquidator);
vm.expectRevert(ILending.InsufficientBalance.selector);
lending.buyCollateral(
address(ytVault),
10e18, // minAmount: 要求至少 10 个
10000e6, // 愿意支付很多
liquidator
);
// 但如果 minAmount 设置合理5个应该成功
vm.prank(liquidator);
lending.buyCollateral(
address(ytVault),
5e18, // minAmount: 5 个就可以
10000e6,
liquidator
);
assertEq(ytVault.balanceOf(liquidator), 5e18, "Should receive 5 YTToken");
}
function test_22_BuyCollateral_PriceIncreaseScenario() public {
// 测试价格上涨时购买量减少minAmount 提供保护
// 设置清算储备
vm.prank(alice);
lending.supply(50000e6);
vm.startPrank(bob);
lending.supplyCollateral(address(ytVault), 10e18);
lending.withdraw(16000e6);
vm.stopPrank();
ytFactory.updateVaultPrices(address(ytVault), 1750e30);
vm.prank(liquidator);
lending.absorb(bob);
// 价格回升(对购买者不利)
ytFactory.updateVaultPrices(address(ytVault), 3000e30); // 涨到 $3,000
// discount = 2.5%,折扣价 = 3000 * 0.975 = $2,925
// 支付 10000 USDC只能买到 10000 / 2925 ≈ 3.42 YTToken
uint256 baseAmount = 10000e6;
// 如果 minAmount 太高,应该失败(滑点保护)
vm.prank(liquidator);
vm.expectRevert(ILending.InsufficientBalance.selector);
lending.buyCollateral(
address(ytVault),
5e18, // 期望至少 5 个,但只能买到 3.42 个
baseAmount,
liquidator
);
// minAmount 设置合理则成功
vm.prank(liquidator);
lending.buyCollateral(
address(ytVault),
3e18, // 期望至少 3 个
baseAmount,
liquidator
);
// 验证大约买到 3.42 YTToken
assertApproxEqAbs(ytVault.balanceOf(liquidator), 3.42e18, 0.1e18, "Should receive ~3.42 YTToken");
}
function test_23_BuyCollateral_ExactReserveAmount() public {
// 测试:购买量刚好等于储备量的边界情况
vm.prank(alice);
lending.supply(50000e6);
vm.startPrank(bob);
lending.supplyCollateral(address(ytVault), 10e18);
lending.withdraw(16000e6);
vm.stopPrank();
ytFactory.updateVaultPrices(address(ytVault), 1750e30);
vm.prank(liquidator);
lending.absorb(bob);
// 计算购买 10 YTToken 需要的精确金额
// 价格 $1,750折扣 2.5%,折扣价 = $1,706.25
// 10 YTToken 需要 10 * 1706.25 = $17,062.50
uint256 exactAmount = 17062500000; // $17,062.50 (6 decimals)
uint256 quote = lending.quoteCollateral(address(ytVault), exactAmount);
assertEq(quote, 10e18, "Quote should be exactly 10 YTToken");
// 购买
uint256 liquidatorBalanceBefore = usdc.balanceOf(liquidator);
vm.prank(liquidator);
lending.buyCollateral(
address(ytVault),
10e18,
exactAmount,
liquidator
);
// 验证
assertEq(ytVault.balanceOf(liquidator), 10e18, "Should receive exactly 10 YTToken");
assertEq(lending.getCollateralReserves(address(ytVault)), 0, "Reserves should be zero");
// 验证支付了正确的金额
uint256 actualPaid = liquidatorBalanceBefore - usdc.balanceOf(liquidator);
assertApproxEqAbs(actualPaid, exactAmount, 1e6, "Should pay the exact quoted amount");
}
/*//////////////////////////////////////////////////////////////
RESERVES
//////////////////////////////////////////////////////////////*/
2026-01-07 10:49:49 +08:00
function test_24_GetReserves_Initial() public view {
// 初始储备金应该是 0
assertEq(lending.getReserves(), 0, "Initial reserves should be 0");
}
2026-01-07 10:49:49 +08:00
function test_25_GetReserves_AfterSupplyBorrow() public {
// Alice 存入 10,000 USDC
vm.prank(alice);
lending.supply(10000e6);
// Bob 借 5,000 USDC
vm.startPrank(bob);
lending.supplyCollateral(address(ytVault), 10e18);
2025-12-29 15:30:10 +08:00
lending.withdraw(5000e6);
vm.stopPrank();
// reserves = balance - totalSupply + totalBorrow
// balance = 10,000 - 5,000 = 5,000 (实际在合约中)
// totalSupply = 10,000
// totalBorrow = 5,000
// reserves = 5,000 - 10,000 + 5,000 = 0
assertEq(lending.getReserves(), 0, "Reserves should still be 0");
}
2026-01-07 10:49:49 +08:00
function test_26_GetReserves_WithInterest() public {
// 建立借贷
vm.prank(alice);
lending.supply(10000e6);
vm.startPrank(bob);
lending.supplyCollateral(address(ytVault), 10e18);
2025-12-29 15:30:10 +08:00
lending.withdraw(8000e6);
vm.stopPrank();
// 时间流逝
vm.warp(block.timestamp + 365 days);
lending.accrueInterest();
// 借款利率 > 存款利率reserves 应该增加
// 利用率 = 80%(在 kink 点)
// Supply APY = 0% + 80% × 3% = 2.4%
// Borrow APY = 1.5% + 80% × 5% = 5.5%
//
// Alice 存款利息 = 10,000 × 2.4% = 240 USDC
// Bob 借款利息 = 8,000 × 5.5% = 440 USDC
// 储备金增加 = 440 - 240 = 200 USDC
int256 reserves = lending.getReserves();
assertTrue(reserves > 0, "Reserves should be positive from interest spread");
assertApproxEqRel(uint256(reserves), 200e6, 0.005e18, "Reserves should be 200 USDC (0.5% tolerance)");
}
2026-01-07 10:49:49 +08:00
function test_27_WithdrawReserves_Success() public {
// 1. 累积储备金
vm.prank(alice);
lending.supply(10000e6);
vm.startPrank(bob);
lending.supplyCollateral(address(ytVault), 10e18);
2025-12-29 15:30:10 +08:00
lending.withdraw(8000e6);
vm.stopPrank();
vm.warp(block.timestamp + 365 days);
lending.accrueInterest();
// 2. Owner 提取储备金
int256 reserves = lending.getReserves();
assertTrue(reserves > 0, "Should have positive reserves");
uint256 withdrawAmount = uint256(reserves) / 2; // 提取一半
address treasury = address(0x999);
lending.withdrawReserves(treasury, withdrawAmount);
// 3. 验证
assertEq(usdc.balanceOf(treasury), withdrawAmount, "Treasury should receive reserves");
assertApproxEqRel(
uint256(lending.getReserves()),
uint256(reserves) - withdrawAmount,
0.01e18,
"Remaining reserves should be reduced"
);
}
2026-01-07 10:49:49 +08:00
function test_28_WithdrawReserves_FailInsufficientReserves() public {
// 尝试提取不存在的储备金
vm.expectRevert(ILending.InsufficientReserves.selector);
lending.withdrawReserves(address(0x999), 1000e6);
}
2026-01-07 10:49:49 +08:00
function test_29_WithdrawReserves_FailNotOwner() public {
// 非 owner 尝试提取
vm.prank(alice);
vm.expectRevert();
lending.withdrawReserves(alice, 100e6);
}
/*//////////////////////////////////////////////////////////////
VIEW FUNCTIONS
//////////////////////////////////////////////////////////////*/
2026-01-07 10:49:49 +08:00
function test_30_GetUtilization() public {
// 初始利用率应该是 0
assertEq(lending.getUtilization(), 0, "Initial utilization should be 0");
// Alice 存入 10,000 USDC
vm.prank(alice);
lending.supply(10000e6);
// Bob 借 8,000 USDC
vm.startPrank(bob);
lending.supplyCollateral(address(ytVault), 10e18);
2025-12-29 15:30:10 +08:00
lending.withdraw(8000e6);
vm.stopPrank();
// 利用率 = 8000 / 10000 = 80%
assertEq(lending.getUtilization(), 0.8e18, "Utilization should be 80%");
}
2026-01-07 10:49:49 +08:00
function test_31_GetSupplyRate_BelowKink() public {
// 利用率 50%,低于 kink80%
vm.prank(alice);
lending.supply(10000e6);
vm.startPrank(bob);
lending.supplyCollateral(address(ytVault), 10e18);
2025-12-29 15:30:10 +08:00
lending.withdraw(5000e6);
vm.stopPrank();
uint64 supplyRate = lending.getSupplyRate();
// 预期base + utilization × slopeLow
// = 0% + 50% × 3% = 1.5% APY
// 这是简单计算,应该非常精确
assertApproxEqRel(supplyRate, 0.015e18, 0.0001e18, "Supply rate should be 1.5% APY (0.01% tolerance)");
}
2026-01-07 10:49:49 +08:00
function test_32_GetBorrowRate_AtKink() public {
// 利用率正好 80%
vm.prank(alice);
lending.supply(10000e6);
vm.startPrank(bob);
lending.supplyCollateral(address(ytVault), 10e18);
2025-12-29 15:30:10 +08:00
lending.withdraw(8000e6);
vm.stopPrank();
uint64 borrowRate = lending.getBorrowRate();
// 预期base + utilization × slopeLow
// = 1.5% + 80% × 5%
// = 1.5% + 4% = 5.5% APY
// 注getBorrowRate() 返回的是年化利率,精度很高
assertApproxEqRel(borrowRate, 0.055e18, 0.0001e18, "Borrow rate should be 5.5% APY (0.01% tolerance)");
}
2026-01-07 10:49:49 +08:00
function test_33_QuoteCollateral() public view {
// YTToken 价格 $2000, liquidationFactor 0.95, storeFrontFactor 0.5
// discount = 0.5 * (1 - 0.95) = 0.025 (2.5%)
// 折扣价 = 2000 * (1 - 0.025) = $1,950
uint256 baseAmount = 19500e6; // 支付 $19,500 (6 decimals)
uint256 expectedYTToken = lending.quoteCollateral(address(ytVault), baseAmount);
// 应该获得 19,500 / 1,950 = 10 YTToken
assertEq(expectedYTToken, 10e18, "Should quote 10 YTToken for 19,500 USDC");
}
2026-01-07 10:49:49 +08:00
function test_33a_QuoteCollateral_Reversibility() public {
// 测试quoteCollateral 和 quoteBaseAmount 的可逆性
// 即quote -> baseAmount -> quote 应该得到相同的结果
// 设置清算储备以便调用内部函数
vm.prank(alice);
lending.supply(50000e6);
vm.startPrank(bob);
lending.supplyCollateral(address(ytVault), 10e18);
lending.withdraw(16000e6);
vm.stopPrank();
ytFactory.updateVaultPrices(address(ytVault), 1750e30);
vm.prank(liquidator);
lending.absorb(bob);
// 测试 1: 给定 baseAmount计算 collateralAmount再反向计算回 baseAmount
uint256 originalBaseAmount = 10000e6; // 10,000 USDC
uint256 collateralAmount = lending.quoteCollateral(address(ytVault), originalBaseAmount);
// 购买这些抵押品,验证实际支付金额
uint256 liquidatorBalanceBefore = usdc.balanceOf(liquidator);
vm.prank(liquidator);
lending.buyCollateral(
address(ytVault),
0, // minAmount = 0
originalBaseAmount,
liquidator
);
uint256 actualPaid = liquidatorBalanceBefore - usdc.balanceOf(liquidator);
// 实际支付应该接近原始的 baseAmount或者如果被 cap 了则更少)
assertTrue(actualPaid <= originalBaseAmount, "Should not pay more than offered");
// 如果购买量没有被 cap实际支付应该非常接近计算值
if (collateralAmount <= 10e18) { // 没有超过储备
assertApproxEqRel(actualPaid, originalBaseAmount, 0.001e18, "Should pay the calculated amount (0.1% tolerance)");
}
}
function test_33b_QuoteBaseAmount_Accuracy() public {
// 测试quoteBaseAmount 的计算准确性
// 通过实际购买来验证计算是否正确
// 设置清算储备
vm.prank(alice);
lending.supply(50000e6);
vm.startPrank(bob);
lending.supplyCollateral(address(ytVault), 10e18);
lending.withdraw(16000e6);
vm.stopPrank();
// 价格设置为 $1,500
ytFactory.updateVaultPrices(address(ytVault), 1500e30);
vm.prank(liquidator);
lending.absorb(bob);
// 测试不同的购买量
uint256[] memory testAmounts = new uint256[](5);
testAmounts[0] = 1e18; // 1 YTToken
testAmounts[1] = 2.5e18; // 2.5 YTToken
testAmounts[2] = 5e18; // 5 YTToken
testAmounts[3] = 7.5e18; // 7.5 YTToken
testAmounts[4] = 10e18; // 10 YTToken
for (uint i = 0; i < testAmounts.length; i++) {
uint256 collateralAmount = testAmounts[i];
// 计算理论价格
// YTToken 价格 = $1,500
// discount = 0.5 * (1 - 0.95) = 0.025 (2.5%)
// 折扣价 = 1500 * (1 - 0.025) = $1,462.5
uint256 expectedBaseAmount = collateralAmount * 14625e5 / 1e18; // $1,462.5 per YT
// 通过 quoteCollateral 反向验证
uint256 calculatedCollateral = lending.quoteCollateral(address(ytVault), expectedBaseAmount);
// 应该能得到相同数量的抵押品(允许小误差)
assertApproxEqRel(
calculatedCollateral,
collateralAmount,
0.001e18, // 0.1% tolerance
string(abi.encodePacked("Quote mismatch for ", vm.toString(collateralAmount / 1e18), " YTToken"))
);
}
}
function test_33c_QuoteBaseAmount_DifferentPrices() public {
// 测试:验证 quoteCollateral 和实际购买的一致性(不同价格)
// 给 alice 足够的 USDC
usdc.mint(alice, 100000e6);
vm.prank(alice);
lending.supply(100000e6);
// 创建清算储备
vm.startPrank(bob);
lending.supplyCollateral(address(ytVault), 10e18);
lending.withdraw(16000e6);
vm.stopPrank();
// 测试不同价格
uint256[] memory testPrices = new uint256[](3);
testPrices[0] = 1000e30; // $1,000
testPrices[1] = 1750e30; // $1,750
testPrices[2] = 3000e30; // $3,000
for (uint i = 0; i < testPrices.length; i++) {
// 设置价格并触发清算
ytFactory.updateVaultPrices(address(ytVault), testPrices[i]);
// 确保可以清算(降低到清算阈值以下)
if (i == 0) { // 第一次需要清算
ytFactory.updateVaultPrices(address(ytVault), 1880e30);
vm.prank(liquidator);
lending.absorb(bob);
}
// 如果有储备,测试购买
if (lending.getCollateralReserves(address(ytVault)) > 0) {
ytFactory.updateVaultPrices(address(ytVault), testPrices[i]);
uint256 testPayment = 5000e6; // 支付 $5,000
uint256 expectedAmount = lending.quoteCollateral(address(ytVault), testPayment);
uint256 liquidatorBalanceBefore = usdc.balanceOf(liquidator);
uint256 liquidatorYTBefore = ytVault.balanceOf(liquidator);
vm.prank(liquidator);
lending.buyCollateral(
address(ytVault),
0, // minAmount = 0
testPayment,
liquidator
);
uint256 actualReceived = ytVault.balanceOf(liquidator) - liquidatorYTBefore;
uint256 actualPaid = liquidatorBalanceBefore - usdc.balanceOf(liquidator);
// 验证:如果购买量没被 cap应该得到期望的数量
uint256 reserves = lending.getCollateralReserves(address(ytVault));
if (expectedAmount <= reserves + actualReceived) {
assertApproxEqRel(actualReceived, expectedAmount, 0.001e18, "Should receive expected amount");
}
// 验证:实际支付应该合理
assertTrue(actualPaid <= testPayment, "Should not pay more than offered");
}
// 跳出循环(已经测试过了)
break;
}
}
function test_33d_QuoteBaseAmount_EdgeCases() public {
// 测试边界情况
vm.prank(alice);
lending.supply(50000e6);
vm.startPrank(bob);
lending.supplyCollateral(address(ytVault), 10e18); // 10 YT @ $2000 = $20,000
lending.withdraw(16000e6); // 借 $16,000 (80% LTV)
vm.stopPrank();
// 价格下跌触发清算
// 需要跌到清算阈值以下16000 / (10 * 0.85) = $1882
ytFactory.updateVaultPrices(address(ytVault), 1880e30); // 跌到 $1,880
vm.prank(liquidator);
lending.absorb(bob);
// 测试 1: 购买极小数量0.001 YT
// YT 价格 = $1,880, discount = 2.5%, 折扣价 = $1,833
uint256 tinyAmount = 0.001e18;
uint256 quote1 = lending.quoteCollateral(address(ytVault), 1833e3); // ~$1.833 (0.001 * $1833)
assertApproxEqAbs(quote1, tinyAmount, 0.0001e18, "Should handle tiny amounts");
// 测试 2: 购买大数量(刚好 10 YT
// 10 YT * $1,833 = $18,330
uint256 fullAmount = 10e18;
uint256 quote2 = lending.quoteCollateral(address(ytVault), 18330e6); // $18,330
assertApproxEqAbs(quote2, fullAmount, 0.01e18, "Should handle full reserve amount");
// 测试 3: 购买超过储备的数量(应该被 cap
uint256 hugePayment = 100000e6; // $100,000
uint256 liquidatorBalanceBefore = usdc.balanceOf(liquidator);
vm.prank(liquidator);
lending.buyCollateral(
address(ytVault),
0,
hugePayment,
liquidator
);
// 应该只购买了 10 YT全部储备
assertEq(ytVault.balanceOf(liquidator), 10e18, "Should be capped to reserve amount");
// 应该只支付了 10 YT 的费用,不是全部 100,000
uint256 actualPaid = liquidatorBalanceBefore - usdc.balanceOf(liquidator);
assertTrue(actualPaid < hugePayment, "Should not pay the full huge amount");
assertApproxEqAbs(actualPaid, 18330e6, 10e6, "Should pay only for 10 YT (~$18,330)");
}
/*//////////////////////////////////////////////////////////////
EDGE CASES
//////////////////////////////////////////////////////////////*/
2026-01-07 10:49:49 +08:00
function test_34_Borrow_MaxLTV() public {
// Bob 先存入流动性
vm.prank(bob);
lending.supply(50000e6);
// 测试最大 LTV80%
vm.startPrank(alice);
lending.supplyCollateral(address(ytVault), 10e18); // $20,000
// 借款 $16,000正好 80%
2025-12-29 15:30:10 +08:00
lending.withdraw(16000e6);
// 应该成功
assertEq(lending.borrowBalanceOf(alice), 16000e6, "Should borrow at max LTV");
vm.stopPrank();
}
2026-01-07 10:49:49 +08:00
function test_35_Borrow_FailOverLTV() public {
// Bob 先存入流动性
vm.prank(bob);
lending.supply(50000e6);
// 尝试超过 LTV
vm.startPrank(alice);
lending.supplyCollateral(address(ytVault), 10e18); // $20,000
// 尝试借 $16,001超过 80%
vm.expectRevert(ILending.InsufficientCollateral.selector);
2025-12-29 15:30:10 +08:00
lending.withdraw(16001e6);
vm.stopPrank();
}
2026-01-07 10:49:49 +08:00
function test_36_WithdrawCollateral_FailIfBorrowing() public {
// Bob 先存入流动性
vm.prank(bob);
lending.supply(50000e6);
// Alice 借款后尝试取出抵押品
vm.startPrank(alice);
lending.supplyCollateral(address(ytVault), 10e18);
2025-12-29 15:30:10 +08:00
lending.withdraw(16000e6);
// 尝试取出 1 YTToken 会破坏抵押率
vm.expectRevert(ILending.InsufficientCollateral.selector);
lending.withdrawCollateral(address(ytVault), 1e18);
vm.stopPrank();
}
2026-01-07 10:49:49 +08:00
function test_37_SupplyCollateral_FailExceedCap() public {
// 尝试超过供应上限100,000 YTToken
// 需要先买足够的 YT
usdc.mint(alice, 200000000e6);
vm.startPrank(alice);
usdc.approve(address(ytVault), type(uint256).max);
ytVault.depositYT(200000000e6); // 买入大量 YT
vm.expectRevert(ILending.SupplyCapExceeded.selector);
lending.supplyCollateral(address(ytVault), 150000e18);
vm.stopPrank();
}
2026-01-07 10:49:49 +08:00
function test_38_ComplexScenario_MultipleUsers() public {
// 1. Alice 存款
vm.prank(alice);
lending.supply(50000e6);
// 2. Bob 抵押借款
vm.startPrank(bob);
lending.supplyCollateral(address(ytVault), 20e18); // $40,000
2025-12-29 15:30:10 +08:00
lending.withdraw(30000e6); // 75% LTV
vm.stopPrank();
// 3. Charlie 也抵押借款(更激进,容易被清算)
vm.startPrank(charlie);
lending.supplyCollateral(address(ytVault), 5e18); // $10,000
2025-12-29 15:30:10 +08:00
lending.withdraw(7900e6); // 79% LTV
vm.stopPrank();
// 4. 时间流逝,利息累积
vm.warp(block.timestamp + 180 days); // 半年
lending.accrueInterest();
// 5. 验证利息累积
uint256 aliceBalance = lending.supplyBalanceOf(alice);
assertTrue(aliceBalance > 50000e6, "Alice should earn interest");
uint256 bobDebt = lending.borrowBalanceOf(bob);
assertTrue(bobDebt > 30000e6, "Bob's debt should increase");
// 6. 价格下跌Charlie 被清算
// Charlie: 5 YTToken @ $1,400 = $7,000, 债务 ≈ $8,100
// 清算阈值 = $7,000 * 0.85 = $5,950 < $8,100
ytFactory.updateVaultPrices(address(ytVault), 1400e30);
assertTrue(lending.isLiquidatable(charlie), "Charlie should be liquidatable");
vm.prank(liquidator);
lending.absorb(charlie);
// 7. 购买清算抵押品
uint256 charlieDebt = lending.borrowBalanceOf(charlie);
uint256 quote = lending.quoteCollateral(address(ytVault), charlieDebt);
if (quote > 0 && lending.getCollateralReserves(address(ytVault)) > 0) {
vm.prank(liquidator);
lending.buyCollateral(address(ytVault), 0, charlieDebt, liquidator);
}
// 8. 验证最终状态
assertEq(lending.getCollateral(charlie, address(ytVault)), 0, "Charlie's collateral seized");
// 注意:由于清算可能产生坏账(抵押品价值 < 债务reserves 可能为负
// 这是正常的协议行为reserves 用于吸收坏账
int256 reserves = lending.getReserves();
// 只验证 reserves 存在(可正可负)
assertTrue(reserves != 0 || reserves == 0, "Reserves should exist");
}
}
/*//////////////////////////////////////////////////////////////
MOCK CONTRACTS
//////////////////////////////////////////////////////////////*/
2026-01-07 10:49:49 +08:00
// Test wrapper to expose internal functions
contract LendingTestWrapper is Lending {
function quoteBaseAmountPublic(address asset, uint256 collateralAmount) external view returns (uint256) {
return quoteBaseAmount(asset, collateralAmount);
}
}
// Mock ERC20 for testing
contract MockERC20 is ERC20 {
uint8 private _decimals;
constructor(string memory name, string memory symbol, uint8 decimals_) ERC20(name, symbol) {
_decimals = decimals_;
}
function decimals() public view override returns (uint8) {
return _decimals;
}
function mint(address to, uint256 amount) external {
_mint(to, amount);
}
}
// Mock Chainlink Price Feed
contract MockChainlinkPriceFeed is AggregatorV3Interface {
int256 private price;
uint8 private priceDecimals;
2025-12-24 16:41:26 +08:00
constructor(int256 _price, uint8 _decimals) {
price = _price;
priceDecimals = _decimals;
}
2025-12-24 16:41:26 +08:00
function decimals() external view returns (uint8) {
return priceDecimals;
}
2025-12-24 16:41:26 +08:00
function description() external pure returns (string memory) {
return "Mock Price Feed";
}
2025-12-24 16:41:26 +08:00
function version() external pure returns (uint256) {
return 1;
}
2025-12-24 16:41:26 +08:00
function getRoundData(uint80)
external
view
returns (
uint80 roundId,
int256 answer,
uint256 startedAt,
uint256 updatedAt,
uint80 answeredInRound
)
{
return (1, price, block.timestamp, block.timestamp, 1);
}
2025-12-24 16:41:26 +08:00
function latestRoundData()
external
view
returns (
uint80 roundId,
int256 answer,
uint256 startedAt,
uint256 updatedAt,
uint80 answeredInRound
)
{
return (1, price, block.timestamp, block.timestamp, 1);
}
2025-12-24 16:41:26 +08:00
function setPrice(int256 _price) external {
price = _price;
}
}