mirror of
https://github.com/Instadapp/dsa-connectors.git
synced 2024-07-29 22:37:00 +00:00
update test script
This commit is contained in:
parent
bb8914afde
commit
b8e26934d4
|
@ -143,4 +143,6 @@ contract Events {
|
||||||
uint256 getId,
|
uint256 getId,
|
||||||
uint256 setId
|
uint256 setId
|
||||||
);
|
);
|
||||||
|
|
||||||
|
event LogApproveManger(address manger, bool isAllowed);
|
||||||
}
|
}
|
||||||
|
|
|
@ -717,8 +717,13 @@ abstract contract MorphoAaveV3 is Helpers, Events {
|
||||||
/// @notice Approves a `manager` to borrow/withdraw on behalf of the sender.
|
/// @notice Approves a `manager` to borrow/withdraw on behalf of the sender.
|
||||||
/// @param _manager The address of the manager.
|
/// @param _manager The address of the manager.
|
||||||
/// @param _isAllowed Whether `manager` is allowed to manage `msg.sender`'s position or not.
|
/// @param _isAllowed Whether `manager` is allowed to manage `msg.sender`'s position or not.
|
||||||
function approveManager(address _manager, bool _isAllowed) external {
|
function approveManager(address _manager, bool _isAllowed) external returns (string memory _eventName, bytes memory _eventParam) {
|
||||||
MORPHO_AAVE_V3.approveManager(_manager, _isAllowed);
|
MORPHO_AAVE_V3.approveManager(_manager, _isAllowed);
|
||||||
|
_eventName = "LogApproveManger(address,bool)";
|
||||||
|
_eventParam = abi.encode(
|
||||||
|
_manager,
|
||||||
|
_isAllowed
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -123,27 +123,27 @@ describe("Morpho-Aave-v3", function () {
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
it("Deposit 1 DAI into DSA wallet", async function () {
|
// it("Deposit 1 DAI into DSA wallet", async function () {
|
||||||
|
|
||||||
await hre.network.provider.request({
|
// await hre.network.provider.request({
|
||||||
method: 'hardhat_impersonateAccount',
|
// method: 'hardhat_impersonateAccount',
|
||||||
params: [ACC_DAI],
|
// params: [ACC_DAI],
|
||||||
})
|
// })
|
||||||
|
|
||||||
const signer_dai = await ethers.getSigner(ACC_DAI)
|
// const signer_dai = await ethers.getSigner(ACC_DAI)
|
||||||
await token_dai.connect(signer_dai).transfer(wallet0.getAddress(), Dai)
|
// await token_dai.connect(signer_dai).transfer(wallet0.getAddress(), Dai)
|
||||||
|
|
||||||
await hre.network.provider.request({
|
// await hre.network.provider.request({
|
||||||
method: 'hardhat_stopImpersonatingAccount',
|
// method: 'hardhat_stopImpersonatingAccount',
|
||||||
params: [ACC_DAI],
|
// params: [ACC_DAI],
|
||||||
})
|
// })
|
||||||
|
|
||||||
await token_dai.connect(wallet0).transfer(dsaWallet0.address, Dai);
|
// await token_dai.connect(wallet0).transfer(dsaWallet0.address, Dai);
|
||||||
|
|
||||||
expect(await token_dai.connect(masterSigner).balanceOf(dsaWallet0.address)).to.be.gte(
|
// expect(await token_dai.connect(masterSigner).balanceOf(dsaWallet0.address)).to.be.gte(
|
||||||
parseUnits('1', 18)
|
// parseUnits('1', 18)
|
||||||
);
|
// );
|
||||||
});
|
// });
|
||||||
});
|
});
|
||||||
|
|
||||||
describe("Main", function () {
|
describe("Main", function () {
|
||||||
|
@ -354,164 +354,18 @@ describe("Morpho-Aave-v3", function () {
|
||||||
.to.be.eq(parseUnits('2', 16));
|
.to.be.eq(parseUnits('2', 16));
|
||||||
})
|
})
|
||||||
|
|
||||||
it("Should borrow DAI into DSA on behalf", async function () {
|
it("Test withdrawCollateral ", async function () {
|
||||||
|
const balance = await token_weth.balanceOf(dsaWallet0.address);
|
||||||
const spells = [
|
const spells = [
|
||||||
{
|
{
|
||||||
connector: connectorName,
|
connector: connectorName,
|
||||||
method: "borrowOnBehalf",
|
method: "depositCollateral",
|
||||||
args: [tokens.dai.address, "10000000000000000000", user, dsaWallet0.address, "0", "0"], // 10 DAI
|
args: [tokens.usdc.address, "20000000", "0", "0"], // 20 USDC
|
||||||
},
|
},
|
||||||
];
|
|
||||||
|
|
||||||
const tx = await dsaWallet0
|
|
||||||
.connect(wallet0)
|
|
||||||
.cast(...encodeSpells(spells), wallet1.getAddress());
|
|
||||||
|
|
||||||
await tx.wait();
|
|
||||||
expect(await token_dai.connect(masterSigner).balanceOf(dsaWallet0.address))
|
|
||||||
.to.be.gte(parseUnits('21', 18));
|
|
||||||
})
|
|
||||||
|
|
||||||
it("Should borrow DAI into DSA with MaxIteration", async function () {
|
|
||||||
const spells = [
|
|
||||||
{
|
|
||||||
connector: connectorName,
|
|
||||||
method: "borrowWithMaxIterations",
|
|
||||||
args: [tokens.dai.address, "10000000000000000000", dsaWallet0.address, 5, "0", "0"], // 10 DAI
|
|
||||||
},
|
|
||||||
];
|
|
||||||
|
|
||||||
const tx = await dsaWallet0
|
|
||||||
.connect(wallet0)
|
|
||||||
.cast(...encodeSpells(spells), wallet1.getAddress());
|
|
||||||
|
|
||||||
await tx.wait();
|
|
||||||
expect(await token_dai.connect(masterSigner).balanceOf(dsaWallet0.address))
|
|
||||||
.to.be.gte(parseUnits('31', 18));
|
|
||||||
})
|
|
||||||
|
|
||||||
it("Should borrow DAI into DSA on behalf with MaxIteration", async function () {
|
|
||||||
const spells = [
|
|
||||||
{
|
|
||||||
connector: connectorName,
|
|
||||||
method: "borrowOnBehalfWithMaxIterations",
|
|
||||||
args: [tokens.dai.address, "10000000000000000000", user, dsaWallet0.address, 5, "0", "0"], // 10 DAI
|
|
||||||
},
|
|
||||||
];
|
|
||||||
|
|
||||||
const tx = await dsaWallet0
|
|
||||||
.connect(wallet0)
|
|
||||||
.cast(...encodeSpells(spells), wallet1.getAddress());
|
|
||||||
|
|
||||||
await tx.wait();
|
|
||||||
expect(await token_dai.connect(masterSigner).balanceOf(dsaWallet0.address))
|
|
||||||
.to.be.gte(parseUnits('41', 18));
|
|
||||||
})
|
|
||||||
|
|
||||||
it("Should payback DAI MAX", async function () {
|
|
||||||
const spells = [
|
|
||||||
{
|
|
||||||
connector: connectorName,
|
|
||||||
method: "payback",
|
|
||||||
args: [tokens.dai.address, dsaMaxValue, "0", "0"], // Max DAI
|
|
||||||
},
|
|
||||||
];
|
|
||||||
|
|
||||||
const tx = await dsaWallet0
|
|
||||||
.connect(wallet0)
|
|
||||||
.cast(...encodeSpells(spells), wallet1.getAddress());
|
|
||||||
|
|
||||||
await tx.wait();
|
|
||||||
expect(await token_dai.connect(masterSigner).balanceOf(dsaWallet0.address)).to.be.lte(
|
|
||||||
parseUnits('1', 18)
|
|
||||||
);
|
|
||||||
})
|
|
||||||
|
|
||||||
it("Should payback ETH on behalf", async function () {
|
|
||||||
const spells = [
|
|
||||||
{
|
|
||||||
connector: connectorName,
|
|
||||||
method: "paybackOnBehalf",
|
|
||||||
args: [tokens.eth.address, user, dsaMaxValue, "0", "0"], // Max ETH
|
|
||||||
},
|
|
||||||
];
|
|
||||||
|
|
||||||
const tx = await dsaWallet0
|
|
||||||
.connect(wallet0)
|
|
||||||
.cast(...encodeSpells(spells), wallet1.getAddress());
|
|
||||||
|
|
||||||
await tx.wait();
|
|
||||||
expect(await ethers.provider.getBalance(dsaWallet0.address)).to.be.lte(
|
|
||||||
parseUnits('125', 18)
|
|
||||||
);
|
|
||||||
})
|
|
||||||
|
|
||||||
it("Should withdraw 8 USDC on behalf", async function () {
|
|
||||||
const spells = [
|
|
||||||
{
|
|
||||||
connector: connectorName,
|
|
||||||
method: "withdrawOnBehalf",
|
|
||||||
args: [tokens.usdc.address, "8000000", user, dsaWallet0.address, "0", "0"], // 8 USDC
|
|
||||||
},
|
|
||||||
];
|
|
||||||
|
|
||||||
const tx = await dsaWallet0
|
|
||||||
.connect(wallet0)
|
|
||||||
.cast(...encodeSpells(spells), wallet1.getAddress());
|
|
||||||
|
|
||||||
await tx.wait();
|
|
||||||
console.log("----balance of USDC----", (await token_usdc.connect(wallet0).balanceOf(dsaWallet0.address)).toString())
|
|
||||||
// expect(expect(await token_usdc.connect(wallet0).balanceOf(dsaWallet0.address)).to.be.gte(
|
|
||||||
// parseUnits('398', 6))
|
|
||||||
// );
|
|
||||||
})
|
|
||||||
|
|
||||||
it("Should withdraw 8 USDC on behalf", async function () {
|
|
||||||
const spells = [
|
|
||||||
{
|
|
||||||
connector: connectorName,
|
|
||||||
method: "withdrawOnBehalf",
|
|
||||||
args: [tokens.usdc.address, "8000000", user, dsaWallet0.address, "0", "0"], // 8 USDC
|
|
||||||
},
|
|
||||||
];
|
|
||||||
|
|
||||||
const tx = await dsaWallet0
|
|
||||||
.connect(wallet0)
|
|
||||||
.cast(...encodeSpells(spells), wallet1.getAddress());
|
|
||||||
|
|
||||||
await tx.wait();
|
|
||||||
console.log("----balance of USDC----", (await token_usdc.connect(wallet0).balanceOf(dsaWallet0.address)).toString())
|
|
||||||
// expect(expect(await token_usdc.connect(wallet0).balanceOf(dsaWallet0.address)).to.be.gte(
|
|
||||||
// parseUnits('398', 6))
|
|
||||||
// );
|
|
||||||
})
|
|
||||||
|
|
||||||
it("Should withdraw 8 USDC on behalf with MaxIteration", async function () {
|
|
||||||
const spells = [
|
|
||||||
{
|
|
||||||
connector: connectorName,
|
|
||||||
method: "withdrawWithMaxIterations",
|
|
||||||
args: [tokens.usdc.address, "8000000", user, dsaWallet0.address, 5, "0", "0"], // 8 USDC
|
|
||||||
},
|
|
||||||
];
|
|
||||||
|
|
||||||
const tx = await dsaWallet0
|
|
||||||
.connect(wallet0)
|
|
||||||
.cast(...encodeSpells(spells), wallet1.getAddress());
|
|
||||||
|
|
||||||
await tx.wait();
|
|
||||||
console.log("----balance of USDC----", (await token_usdc.connect(wallet0).balanceOf(dsaWallet0.address)).toString())
|
|
||||||
// expect(expect(await token_usdc.connect(wallet0).balanceOf(dsaWallet0.address)).to.be.gte(
|
|
||||||
// parseUnits('398', 6))
|
|
||||||
// );
|
|
||||||
})
|
|
||||||
|
|
||||||
it("Should withdraw 8 USDC as collateral", async function () {
|
|
||||||
const spells = [
|
|
||||||
{
|
{
|
||||||
connector: connectorName,
|
connector: connectorName,
|
||||||
method: "withdrawCollateral",
|
method: "withdrawCollateral",
|
||||||
args: [tokens.usdc.address, "8000000", dsaWallet0.address, 5, "0", "0"], // 8 USDC
|
args: [tokens.usdc.address, "20000000", dsaWallet0.address, "0", "0"], // 20 USDC
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -520,18 +374,21 @@ describe("Morpho-Aave-v3", function () {
|
||||||
.cast(...encodeSpells(spells), wallet1.getAddress());
|
.cast(...encodeSpells(spells), wallet1.getAddress());
|
||||||
|
|
||||||
await tx.wait();
|
await tx.wait();
|
||||||
console.log("----balance of USDC----", (await token_usdc.connect(wallet0).balanceOf(dsaWallet0.address)).toString())
|
|
||||||
// expect(expect(await token_usdc.connect(wallet0).balanceOf(dsaWallet0.address)).to.be.gte(
|
|
||||||
// parseUnits('398', 6))
|
|
||||||
// );
|
|
||||||
})
|
})
|
||||||
|
|
||||||
it("Should withdraw 8 USDC as collateral on behalf", async function () {
|
it("Test withdrawCollateralOnBehalf ", async function () {
|
||||||
|
const balance = await token_weth.balanceOf(dsaWallet0.address);
|
||||||
const spells = [
|
const spells = [
|
||||||
|
{
|
||||||
|
connector: connectorName,
|
||||||
|
method: "depositCollateralOnBehalf",
|
||||||
|
args: [tokens.usdc.address, "20000000", user, "0", "0"], // 20 USDC
|
||||||
|
},
|
||||||
{
|
{
|
||||||
connector: connectorName,
|
connector: connectorName,
|
||||||
method: "withdrawCollateralOnBehalf",
|
method: "withdrawCollateralOnBehalf",
|
||||||
args: [tokens.usdc.address, "8000000",user, dsaWallet0.address, 5, "0", "0"], // 8 USDC
|
args: [tokens.usdc.address, "20000000", dsaWallet0.address, user, "0", "0"], // 20 USDC
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -540,10 +397,49 @@ describe("Morpho-Aave-v3", function () {
|
||||||
.cast(...encodeSpells(spells), wallet1.getAddress());
|
.cast(...encodeSpells(spells), wallet1.getAddress());
|
||||||
|
|
||||||
await tx.wait();
|
await tx.wait();
|
||||||
console.log("----balance of USDC----", (await token_usdc.connect(wallet0).balanceOf(dsaWallet0.address)).toString())
|
|
||||||
// expect(expect(await token_usdc.connect(wallet0).balanceOf(dsaWallet0.address)).to.be.gte(
|
})
|
||||||
// parseUnits('398', 6))
|
|
||||||
// );
|
it("Test payback ", async function () {
|
||||||
|
const spells = [
|
||||||
|
{
|
||||||
|
connector: connectorName,
|
||||||
|
method: "depositCollateral",
|
||||||
|
args: [tokens.usdc.address, "2000000000", "0", "0"], // 2 ETH
|
||||||
|
},
|
||||||
|
{
|
||||||
|
connector: connectorName,
|
||||||
|
method: "borrow",
|
||||||
|
args: [tokens.eth.address, "10000000000000000", dsaWallet0.address, "0", "0"], // 20 USDC
|
||||||
|
},
|
||||||
|
{
|
||||||
|
connector: connectorName,
|
||||||
|
method: "payback",
|
||||||
|
args: [tokens.eth.address, "10000000000000000", "0", "0"], // 20 USDC
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
const tx = await dsaWallet0
|
||||||
|
.connect(wallet0)
|
||||||
|
.cast(...encodeSpells(spells), wallet1.getAddress());
|
||||||
|
|
||||||
|
await tx.wait();
|
||||||
|
|
||||||
|
})
|
||||||
|
|
||||||
|
it("approve manger", async () => {
|
||||||
|
const spells = [
|
||||||
|
{
|
||||||
|
connector: connectorName,
|
||||||
|
method: "approveManager",
|
||||||
|
args: [user, true], // 2 ETH
|
||||||
|
},
|
||||||
|
]
|
||||||
|
const tx = await dsaWallet0
|
||||||
|
.connect(wallet0)
|
||||||
|
.cast(...encodeSpells(spells), wallet1.getAddress());
|
||||||
|
|
||||||
|
await tx.wait();
|
||||||
})
|
})
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue
Block a user