735546619e
Signed-off-by: T-Hax <>
45 lines
1.5 KiB
TypeScript
45 lines
1.5 KiB
TypeScript
import { expect } from './shared/expect'
|
|
import { LiquidityMathTest } from '../typechain/LiquidityMathTest'
|
|
import { ethers, waffle } from 'hardhat'
|
|
import snapshotGasCost from './shared/snapshotGasCost'
|
|
|
|
const { BigNumber } = ethers
|
|
|
|
describe('LiquidityMath', () => {
|
|
let liquidityMath: LiquidityMathTest
|
|
const fixture = async () => {
|
|
const factory = await ethers.getContractFactory('LiquidityMathTest')
|
|
return (await factory.deploy()) as LiquidityMathTest
|
|
}
|
|
beforeEach('deploy LiquidityMathTest', async () => {
|
|
liquidityMath = await waffle.loadFixture(fixture)
|
|
})
|
|
|
|
describe('#addDelta', () => {
|
|
it('1 + 0', async () => {
|
|
expect(await liquidityMath.addDelta(1, 0)).to.eq(1)
|
|
})
|
|
it('1 + -1', async () => {
|
|
expect(await liquidityMath.addDelta(1, -1)).to.eq(0)
|
|
})
|
|
it('1 + 1', async () => {
|
|
expect(await liquidityMath.addDelta(1, 1)).to.eq(2)
|
|
})
|
|
it('2**128-15 + 15 overflows', async () => {
|
|
await expect(liquidityMath.addDelta(BigNumber.from(2).pow(128).sub(15), 15)).to.be.revertedWith('LA')
|
|
})
|
|
it('0 + -1 underflows', async () => {
|
|
await expect(liquidityMath.addDelta(0, -1)).to.be.revertedWith('LS')
|
|
})
|
|
it('3 + -4 underflows', async () => {
|
|
await expect(liquidityMath.addDelta(3, -4)).to.be.revertedWith('LS')
|
|
})
|
|
it('gas add', async () => {
|
|
await snapshotGasCost(liquidityMath.getGasCostOfAddDelta(15, 4))
|
|
})
|
|
it('gas sub', async () => {
|
|
await snapshotGasCost(liquidityMath.getGasCostOfAddDelta(15, -4))
|
|
})
|
|
})
|
|
})
|