Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add more test cases #253

Merged
merged 28 commits into from
Feb 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
b074159
test: Add tests for permissioned or not supported actions
miguelmtzinf Jan 26, 2023
1a6fcc4
test: Add test cases for else paths of FlashMinter
miguelmtzinf Jan 26, 2023
8f69f11
fix: Adds test cases for GHO functions and cleans up test suite
miguelmtzinf Jan 26, 2023
eb547b7
fix: Fix typos in tests
miguelmtzinf Jan 26, 2023
76194d0
test: Add test for borrowing less than accrued discount.
Zer0dot Jan 27, 2023
3d43d44
test: Add tests for initialization failures on GhoVariableDebtToken
Zer0dot Jan 27, 2023
3fed438
test: Add test for stkAAVE transfer to previous GHO borrower
Zer0dot Jan 27, 2023
5479c91
test: Add initialization and transfer tests for GhoAToken
Zer0dot Jan 27, 2023
990c3b9
chore: Remove unneeded script
Zer0dot Jan 27, 2023
11f3256
chore: Add temp files to gitignore
Zer0dot Jan 27, 2023
8b6c2c9
chore: Standardize test names for revert-expecting tests
Zer0dot Jan 27, 2023
89f6790
test: Add tests for flashmint edge cases
Zer0dot Jan 27, 2023
c8b5f43
feat: Update comment to match multi-line natspec
Zer0dot Jan 31, 2023
1211e00
test: Add capacity checks for test accuracy
Zer0dot Jan 31, 2023
9f01e09
test: Add capacity tests outside of FlashBorrower contract
Zer0dot Jan 31, 2023
98285eb
test: Add event check for facilitator bucket capacity change
Zer0dot Jan 31, 2023
c1299c8
test: Add check for burn event emission in less than discount borrow …
Zer0dot Jan 31, 2023
c083316
test: Fix typo in test case of Discount Borrow scenario
miguelmtzinf Feb 1, 2023
587cb62
fix: Fix event emission check in test
miguelmtzinf Feb 1, 2023
6bdbd4d
feat: Add hardhat script to package.json
Zer0dot Feb 1, 2023
5332f84
test: Revert invalid burn event check
Zer0dot Feb 1, 2023
d227558
fix: Fix flashmint bucket capacity test event emission checker
Zer0dot Feb 1, 2023
340b5d9
fix: Fix event emission checks in tests (#264)
Zer0dot Feb 2, 2023
5e56567
Merge pull request #255 from aave/test/debt-token-coverage
miguelmtzinf Feb 2, 2023
ff0b111
Merge branch 'main' into test/enhancement-coverage
Zer0dot Feb 2, 2023
4e4f9e4
chore: Run prettier
Zer0dot Feb 2, 2023
dd0fe14
test: Fix minor test issue
Zer0dot Feb 2, 2023
3d3df25
test: Add clean ups to tests
miguelmtzinf Feb 2, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@
/coverage.json

/temp-artifacts
/src/contracts/hardhat-dependency-compiler

.DS_Store
73 changes: 71 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@
"bluebird": "^3.7.2",
"chai": "^4.3.6",
"dotenv": "^16.0.3",
"eth-sig-util": "^3.0.1",
"ethereumjs-util": "^7.1.5",
"ethers": "^5.6.4",
"hardhat": "^2.9.3",
"hardhat-contract-sizer": "^2.6.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,13 @@ pragma solidity ^0.8.10;
import {IERC20} from '@openzeppelin/contracts/token/ERC20/IERC20.sol';
import {IERC3156FlashBorrower} from '@openzeppelin/contracts/interfaces/IERC3156FlashBorrower.sol';
import {IERC3156FlashLender} from '@openzeppelin/contracts/interfaces/IERC3156FlashLender.sol';
import {IGhoToken} from '../../../gho/interfaces/IGhoToken.sol';

/**
* @title MockFlashBorrower
* @author Aave
* @dev This is purely an unsafe mock testing contract. Do not use in production.
*/
contract MockFlashBorrower is IERC3156FlashBorrower {
enum Action {
NORMAL,
Expand All @@ -13,11 +19,13 @@ contract MockFlashBorrower is IERC3156FlashBorrower {

IERC3156FlashLender private _lender;

bool allowRepayment;
bool private _allowRepayment;
bool private _allowCallback;

constructor(IERC3156FlashLender lender) {
_lender = lender;
allowRepayment = true;
_allowRepayment = true;
_allowCallback = true;
}

/// @dev ERC-3156 Flash loan callback
Expand All @@ -30,30 +38,58 @@ contract MockFlashBorrower is IERC3156FlashBorrower {
) external override returns (bytes32) {
require(msg.sender == address(_lender), 'FlashBorrower: Untrusted lender');
require(initiator == address(this), 'FlashBorrower: Untrusted loan initiator');

Action action = abi.decode(data, (Action));

if (action == Action.NORMAL) {
// do one thing
// Intentionally left blank.
} else if (action == Action.OTHER) {
// do another
// Tests capacity change mid-flashmint.
require(
_lender.flashFee(token, type(uint128).max) == 0,
'FlashBorrower: Non-zero flashfee during capacity change test'
);

(uint256 capacityBefore, ) = IGhoToken(token).getFacilitatorBucket(address(_lender));
require(capacityBefore != 0, 'FlashBorrower: Zero bucket capacity before setting');

IGhoToken(token).setFacilitatorBucketCapacity(address(_lender), 0);

(uint256 capacityAfter, ) = IGhoToken(token).getFacilitatorBucket(address(_lender));
require(capacityAfter == 0, 'FlashBorrower: Non-zero bucket capacity after setting');

require(
_lender.maxFlashLoan(token) == 0,
'FlashBorrower: Non-zero max flashloan at capacity < level'
);
}

// Repayment
if (_allowRepayment) {
IERC20(token).approve(address(_lender), amount + fee);
}
return keccak256('ERC3156FlashBorrower.onFlashLoan');
return _allowCallback ? keccak256('ERC3156FlashBorrower.onFlashLoan') : keccak256('arbitrary');
}

/// @dev Initiate a flash loan
function flashBorrow(address token, uint256 amount) public {
bytes memory data = abi.encode(Action.NORMAL);

if (allowRepayment) {
uint256 allowance = IERC20(token).allowance(address(this), address(_lender));
uint256 fee = _lender.flashFee(token, amount);
uint256 repayment = amount + fee;
IERC20(token).approve(address(_lender), allowance + repayment);
}
_lender.flashLoan(this, token, amount, data);
}

function flashBorrowOtherActionMax(address token) public {
bytes memory data = abi.encode(Action.OTHER);
uint256 amount = _lender.maxFlashLoan(token);

_lender.flashLoan(this, token, amount, data);
}

function setAllowRepayment(bool active) public {
allowRepayment = active;
_allowRepayment = active;
}

function setAllowCallback(bool active) public {
_allowCallback = active;
}
}
1 change: 1 addition & 0 deletions src/helpers/types.ts
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
export type tEthereumAddress = string;
export type tStringTokenSmallUnits = string; // 1 wei, or 1 basic unit of USDC, or 1 basic unit of DAI
19 changes: 11 additions & 8 deletions src/test/basic-borrow.test.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import hre from 'hardhat';
import { expect } from 'chai';
import { BigNumber } from 'ethers';
import './helpers/math/wadraymath';
Expand Down Expand Up @@ -37,14 +38,15 @@ makeSuite('Gho Basic Borrow Flow', (testEnv: TestEnv) => {
.connect(users[0].signer)
.borrow(gho.address, borrowAmount, 2, 0, users[0].address);

expect(tx)
await expect(tx)
.to.emit(variableDebtToken, 'Transfer')
.withArgs(ZERO_ADDRESS, users[0].address, borrowAmount)
.to.emit(variableDebtToken, 'Mint')
.withArgs(users[0].address, users[0].address, borrowAmount, 0, oneRay)
.to.not.emit(variableDebtToken, 'DiscountPercentLocked');

expect(await gho.balanceOf(users[0].address)).to.be.equal(borrowAmount);
expect(await variableDebtToken.totalSupply()).to.be.equal(borrowAmount);
expect(await variableDebtToken.getBalanceFromInterest(users[0].address)).to.be.equal(0);
expect(await variableDebtToken.balanceOf(users[0].address)).to.be.equal(borrowAmount);
});
Expand Down Expand Up @@ -74,6 +76,7 @@ makeSuite('Gho Basic Borrow Flow', (testEnv: TestEnv) => {

expect(await gho.balanceOf(users[0].address)).to.be.equal(borrowAmount);
expect(user1Year1Debt).to.be.eq(user1ExpectedBalance);
expect(await variableDebtToken.totalSupply()).to.be.equal(user1ExpectedBalance);
expect(await variableDebtToken.getBalanceFromInterest(users[0].address)).to.be.equal(0);
});

Expand All @@ -100,7 +103,7 @@ makeSuite('Gho Basic Borrow Flow', (testEnv: TestEnv) => {
);
const expIndex = variableBorrowIndex.rayMul(multiplier);

expect(tx)
await expect(tx)
.to.emit(variableDebtToken, 'Transfer')
.withArgs(ZERO_ADDRESS, users[1].address, borrowAmount)
.to.emit(variableDebtToken, 'Mint')
Expand Down Expand Up @@ -144,7 +147,7 @@ makeSuite('Gho Basic Borrow Flow', (testEnv: TestEnv) => {
const amount = user1ExpectedBalance.sub(borrowAmount);
const user1ExpectedBalanceIncrease = amount.sub(borrowAmount);

expect(tx)
await expect(tx)
.to.emit(variableDebtToken, 'Transfer')
.withArgs(ZERO_ADDRESS, users[0].address, amount)
.to.emit(variableDebtToken, 'Mint')
Expand Down Expand Up @@ -192,7 +195,7 @@ makeSuite('Gho Basic Borrow Flow', (testEnv: TestEnv) => {
const user2ExpectedBalance = user2ScaledBefore.rayMul(expIndex);
const user2ExpectedInterest = user2ExpectedBalance.sub(borrowAmount);

expect(tx)
await expect(tx)
.to.emit(variableDebtToken, 'Transfer')
.withArgs(users[1].address, ZERO_ADDRESS, borrowAmount)
.to.emit(variableDebtToken, 'Burn')
Expand Down Expand Up @@ -237,7 +240,7 @@ makeSuite('Gho Basic Borrow Flow', (testEnv: TestEnv) => {
);
const expIndex = variableBorrowIndex.rayMul(multiplier);

expect(tx)
await expect(tx)
.to.emit(variableDebtToken, 'Transfer')
.withArgs(ZERO_ADDRESS, users[2].address, borrowAmount.mul(3))
.to.emit(variableDebtToken, 'Mint')
Expand Down Expand Up @@ -281,7 +284,7 @@ makeSuite('Gho Basic Borrow Flow', (testEnv: TestEnv) => {
const expectedATokenGhoBalance = aTokenGhoBalanceBefore.add(repayAmount);

const amount = user1ExpectedBalanceIncrease.sub(repayAmount);
expect(tx)
await expect(tx)
.to.emit(variableDebtToken, 'Transfer')
.withArgs(ZERO_ADDRESS, users[0].address, amount)
.to.emit(variableDebtToken, 'Mint')
Expand Down Expand Up @@ -330,7 +333,7 @@ makeSuite('Gho Basic Borrow Flow', (testEnv: TestEnv) => {
const expectedATokenGhoBalance = aTokenGhoBalanceBefore.add(user1ExpectedInterest);

const amount = user1ExpectedBalance.sub(user1ExpectedBalanceIncrease);
expect(tx)
await expect(tx)
.to.emit(variableDebtToken, 'Transfer')
.withArgs(users[0].address, ZERO_ADDRESS, amount)
.to.emit(variableDebtToken, 'Burn')
Expand All @@ -353,7 +356,7 @@ makeSuite('Gho Basic Borrow Flow', (testEnv: TestEnv) => {

const tx = await aToken.distributeFeesToTreasury();

expect(tx)
await expect(tx)
.to.emit(aToken, 'FeesDistributedToTreasury')
.withArgs(treasuryAddress, gho.address, aTokenBalance);

Expand Down
9 changes: 5 additions & 4 deletions src/test/borrow-onBehalf.test.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import hre from 'hardhat';
import { expect } from 'chai';
import { BigNumber } from 'ethers';
import './helpers/math/wadraymath';
Expand Down Expand Up @@ -38,7 +39,7 @@ makeSuite('Gho OnBehalf Borrow Flow', (testEnv: TestEnv) => {
.connect(users[0].signer)
.approveDelegation(users[1].address, borrowAmount);

expect(tx)
await expect(tx)
.to.emit(variableDebtToken, 'BorrowAllowanceDelegated')
.withArgs(users[0].address, users[1].address, gho.address, borrowAmount);
});
Expand All @@ -50,7 +51,7 @@ makeSuite('Gho OnBehalf Borrow Flow', (testEnv: TestEnv) => {
.connect(users[1].signer)
.borrow(gho.address, borrowAmount, 2, 0, users[0].address);

expect(tx)
await expect(tx)
.to.emit(variableDebtToken, 'Transfer')
.withArgs(ZERO_ADDRESS, users[0].address, borrowAmount)
.to.emit(variableDebtToken, 'Mint')
Expand Down Expand Up @@ -113,7 +114,7 @@ makeSuite('Gho OnBehalf Borrow Flow', (testEnv: TestEnv) => {
);
const expIndex = variableBorrowIndex.rayMul(multiplier);

expect(tx)
await expect(tx)
.to.emit(variableDebtToken, 'Transfer')
.withArgs(ZERO_ADDRESS, users[2].address, borrowAmount)
.to.emit(variableDebtToken, 'Mint')
Expand Down Expand Up @@ -158,7 +159,7 @@ makeSuite('Gho OnBehalf Borrow Flow', (testEnv: TestEnv) => {
.repay(gho.address, user1ExpectedBalance, 2, users[0].address);
rcpt = await tx.wait();

expect(tx)
await expect(tx)
.to.emit(variableDebtToken, 'Transfer')
.withArgs(users[0].address, ZERO_ADDRESS, borrowAmount)
.to.emit(variableDebtToken, 'Burn')
Expand Down
Loading