mirror of
https://github.com/Instadapp/aave-protocol-v2.git
synced 2024-07-29 21:47:30 +00:00
42 lines
1.4 KiB
TypeScript
42 lines
1.4 KiB
TypeScript
import {expect} from 'chai';
|
|
import {makeSuite, TestEnv} from './helpers/make-suite';
|
|
import {ProtocolErrors, TokenContractId, eContractid} from '../helpers/types';
|
|
import {getContract} from '../helpers/contracts-helpers';
|
|
import {VariableDebtToken} from '../types/VariableDebtToken';
|
|
|
|
makeSuite('Variable debt token tests', (testEnv: TestEnv) => {
|
|
const {CALLER_MUST_BE_LENDING_POOL} = ProtocolErrors;
|
|
|
|
it('Tries to invoke mint not being the LendingPool', async () => {
|
|
const {deployer, pool, dai} = testEnv;
|
|
|
|
const daiVariableDebtTokenAddress = (await pool.getReserveTokensAddresses(dai.address))
|
|
.variableDebtTokenAddress;
|
|
|
|
const variableDebtContract = await getContract<VariableDebtToken>(
|
|
eContractid.VariableDebtToken,
|
|
daiVariableDebtTokenAddress
|
|
);
|
|
|
|
await expect(variableDebtContract.mint(deployer.address, '1', '1')).to.be.revertedWith(
|
|
CALLER_MUST_BE_LENDING_POOL
|
|
);
|
|
});
|
|
|
|
it('Tries to invoke burn not being the LendingPool', async () => {
|
|
const {deployer, pool, dai} = testEnv;
|
|
|
|
const daiVariableDebtTokenAddress = (await pool.getReserveTokensAddresses(dai.address))
|
|
.variableDebtTokenAddress;
|
|
|
|
const variableDebtContract = await getContract<VariableDebtToken>(
|
|
eContractid.VariableDebtToken,
|
|
daiVariableDebtTokenAddress
|
|
);
|
|
|
|
await expect(variableDebtContract.burn(deployer.address, '1', '1')).to.be.revertedWith(
|
|
CALLER_MUST_BE_LENDING_POOL
|
|
);
|
|
});
|
|
});
|