-
Notifications
You must be signed in to change notification settings - Fork 885
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
<test/Allocators>: add test case for aave allocator #318
Open
david30907d
wants to merge
2
commits into
OlympusDAO:main
Choose a base branch
from
david30907d:dchang/aave-allocator-test
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
import { SignerWithAddress } from "@nomiclabs/hardhat-ethers/dist/src/signer-with-address"; | ||
import chai, { expect } from "chai"; | ||
import { ethers } from "hardhat"; | ||
const { BigNumber } = ethers; | ||
import { FakeContract, smock } from "@defi-wonderland/smock"; | ||
import { | ||
IERC20, | ||
IERC20Metadata, | ||
ITreasury, | ||
IStabilityPool, | ||
ILQTYStaking, | ||
ISwapRouter, | ||
LUSDAllocator, | ||
AaveAllocator, | ||
AaveAllocator__factory, | ||
LUSDAllocator__factory, | ||
OlympusAuthority, | ||
OlympusAuthority__factory, | ||
} from "../../types"; | ||
const { fork_network, fork_reset } = require("../utils/network_fork"); | ||
const impersonateAccount = require("../utils/impersonate_account"); | ||
const { advanceBlock, duration, increase } = require("../utils/advancement"); | ||
|
||
chai.use(smock.matchers); | ||
|
||
describe("AaveAllocator", () => { | ||
describe("unit tests", () => { | ||
let owner: SignerWithAddress; | ||
let governor: SignerWithAddress; | ||
let guardian: SignerWithAddress; | ||
let other: SignerWithAddress; | ||
let alice: SignerWithAddress; | ||
let bob: SignerWithAddress; | ||
let treasuryFake: FakeContract<ITreasury>; | ||
let stabilityPoolFake: FakeContract<IStabilityPool>; | ||
let daiTokenFake: FakeContract<IERC20>; | ||
let adaiTokenFake: FakeContract<IERC20>; | ||
let aaveAllocator: AaveAllocator; | ||
let authority: OlympusAuthority; | ||
|
||
beforeEach(async () => { | ||
[owner, governor, guardian, other, alice, bob] = await ethers.getSigners(); | ||
treasuryFake = await smock.fake<ITreasury>("ITreasury"); | ||
stabilityPoolFake = await smock.fake<IStabilityPool>("IStabilityPool"); | ||
daiTokenFake = await smock.fake<IERC20>("contracts/interfaces/IERC20.sol:IERC20"); | ||
adaiTokenFake = await smock.fake<IERC20>("contracts/interfaces/IERC20.sol:IERC20"); | ||
authority = await new OlympusAuthority__factory(owner).deploy( | ||
governor.address, | ||
guardian.address, | ||
owner.address, | ||
owner.address | ||
); | ||
}); | ||
describe("constructor", () => { | ||
it("can construct", async () => { | ||
aaveAllocator = await new AaveAllocator__factory(owner).deploy( | ||
authority.address, | ||
); | ||
expect(await aaveAllocator.referralCode()).to.equal(0); | ||
await aaveAllocator.addToken(daiTokenFake.address, adaiTokenFake.address, 100) | ||
}); | ||
}); | ||
|
||
describe("post-constructor", () => { | ||
beforeEach(async () => { | ||
aaveAllocator = await new AaveAllocator__factory(owner).deploy( | ||
authority.address, | ||
); | ||
}); | ||
|
||
describe("setter tests", () => { | ||
it("invalid setReferralCode", async () => { | ||
try { | ||
await expect(aaveAllocator.connect(owner).setReferralCode(-1)) | ||
.to.be.revertedWith("value out-of-bounds (argument=\"code\", value=-1, code=INVALID_ARGUMENT, version=abi/5.5.0)"); | ||
} catch (error) { | ||
console.log(error) | ||
} | ||
}); | ||
it("valid setReferralCode", async () => { | ||
await aaveAllocator.connect(owner).setReferralCode(65535); | ||
await aaveAllocator.connect(owner).setReferralCode(0); | ||
}); | ||
}); | ||
}); | ||
// WIP | ||
// describe("deposit", () => { | ||
// it("not guardian", async () => { | ||
// await expect(aaveAllocator.connect(owner).deposit(daiTokenFake.address, 1)).to.be.revertedWith( | ||
// "UNAUTHORIZED" | ||
// ); | ||
// }); | ||
// }); | ||
|
||
}); | ||
}); |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
forgive my ignorance (I'm solidity noob), how can I
expect
an exception to be thrown in unittest?In python, I can do this to assert an exception get raised in unittest:
Already googled around but didn't found useful hardhat doc