-
Notifications
You must be signed in to change notification settings - Fork 481
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add unit tests for burns, mints, collects
- Loading branch information
Showing
12 changed files
with
571 additions
and
17 deletions.
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
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
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
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
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
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
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
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
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,194 @@ | ||
import { Address, BigDecimal, BigInt, ethereum } from '@graphprotocol/graph-ts' | ||
import { beforeAll, describe, test } from 'matchstick-as' | ||
|
||
import { handleBurnHelper } from '../src/mappings/pool/burn' | ||
import { Bundle, Pool, Tick, Token } from '../src/types/schema' | ||
import { Burn } from '../src/types/templates/Pool/Pool' | ||
import { convertTokenToDecimal, fastExponentiation, safeDiv } from '../src/utils' | ||
import { FACTORY_ADDRESS, ONE_BD, ZERO_BI } from '../src/utils/constants' | ||
import { | ||
assertObjectMatches, | ||
createTestPool, | ||
MOCK_EVENT, | ||
POOL_FEE_TIER_03, | ||
POOL_TICK_SPACING_03, | ||
TEST_ETH_PRICE_USD, | ||
TEST_USDC_DERIVED_ETH, | ||
TEST_WETH_DERIVED_ETH, | ||
USDC_MAINNET_FIXTURE, | ||
USDC_WETH_03_MAINNET_POOL, | ||
WETH_MAINNET_FIXTURE, | ||
} from './constants' | ||
|
||
class BurnFixture { | ||
owner: Address | ||
tickLower: i32 | ||
tickUpper: i32 | ||
amount: BigInt | ||
amount0: BigInt | ||
amount1: BigInt | ||
} | ||
|
||
// https://etherscan.io/tx/0x26b168e005a168b28d518675435c9f51816697c086deef7377e0018e4eb65dc9 | ||
const BURN_FIXTURE: BurnFixture = { | ||
owner: Address.fromString('0x8692f704a20d11be3b32de68656651b5291ed26c'), | ||
tickLower: 194280, | ||
tickUpper: 194520, | ||
amount: BigInt.fromString('107031367278175302'), | ||
amount0: BigInt.fromString('77186598043'), | ||
amount1: BigInt.fromString('0'), | ||
} | ||
|
||
const BURN_EVENT = new Burn( | ||
Address.fromString(USDC_WETH_03_MAINNET_POOL), | ||
MOCK_EVENT.logIndex, | ||
MOCK_EVENT.transactionLogIndex, | ||
MOCK_EVENT.logType, | ||
MOCK_EVENT.block, | ||
MOCK_EVENT.transaction, | ||
[ | ||
new ethereum.EventParam('owner', ethereum.Value.fromAddress(BURN_FIXTURE.owner)), | ||
new ethereum.EventParam('tickLower', ethereum.Value.fromI32(BURN_FIXTURE.tickLower)), | ||
new ethereum.EventParam('tickUpper', ethereum.Value.fromI32(BURN_FIXTURE.tickUpper)), | ||
new ethereum.EventParam('amount', ethereum.Value.fromUnsignedBigInt(BURN_FIXTURE.amount)), | ||
new ethereum.EventParam('amount0', ethereum.Value.fromUnsignedBigInt(BURN_FIXTURE.amount0)), | ||
new ethereum.EventParam('amount1', ethereum.Value.fromUnsignedBigInt(BURN_FIXTURE.amount1)), | ||
], | ||
MOCK_EVENT.receipt, | ||
) | ||
|
||
describe('handleBurn', () => { | ||
beforeAll(() => { | ||
createTestPool( | ||
MOCK_EVENT, | ||
FACTORY_ADDRESS, | ||
USDC_MAINNET_FIXTURE, | ||
WETH_MAINNET_FIXTURE, | ||
USDC_WETH_03_MAINNET_POOL, | ||
POOL_FEE_TIER_03, | ||
POOL_TICK_SPACING_03, | ||
) | ||
|
||
const bundle = new Bundle('1') | ||
bundle.ethPriceUSD = TEST_ETH_PRICE_USD | ||
bundle.save() | ||
|
||
const usdcEntity = Token.load(USDC_MAINNET_FIXTURE.address)! | ||
usdcEntity.derivedETH = TEST_USDC_DERIVED_ETH | ||
usdcEntity.save() | ||
|
||
const wethEntity = Token.load(WETH_MAINNET_FIXTURE.address)! | ||
wethEntity.derivedETH = TEST_WETH_DERIVED_ETH | ||
wethEntity.save() | ||
|
||
const tickLower = new Tick(USDC_WETH_03_MAINNET_POOL + '#' + BURN_FIXTURE.tickLower.toString()) | ||
tickLower.tickIdx = BigInt.fromI32(BURN_FIXTURE.tickLower) | ||
tickLower.pool = USDC_WETH_03_MAINNET_POOL | ||
tickLower.poolAddress = USDC_WETH_03_MAINNET_POOL | ||
tickLower.createdAtTimestamp = MOCK_EVENT.block.timestamp | ||
tickLower.createdAtBlockNumber = MOCK_EVENT.block.number | ||
tickLower.liquidityGross = ZERO_BI | ||
tickLower.liquidityNet = ZERO_BI | ||
tickLower.price0 = fastExponentiation(BigDecimal.fromString('1.0001'), BURN_FIXTURE.tickLower) | ||
tickLower.price1 = safeDiv(ONE_BD, tickLower.price0) | ||
tickLower.save() | ||
|
||
const tickUpper = new Tick(USDC_WETH_03_MAINNET_POOL + '#' + BURN_FIXTURE.tickUpper.toString()) | ||
tickUpper.tickIdx = BigInt.fromI32(BURN_FIXTURE.tickUpper) | ||
tickUpper.pool = USDC_WETH_03_MAINNET_POOL | ||
tickUpper.poolAddress = USDC_WETH_03_MAINNET_POOL | ||
tickUpper.createdAtTimestamp = MOCK_EVENT.block.timestamp | ||
tickUpper.createdAtBlockNumber = MOCK_EVENT.block.number | ||
tickUpper.liquidityGross = ZERO_BI | ||
tickUpper.liquidityNet = ZERO_BI | ||
tickUpper.price0 = fastExponentiation(BigDecimal.fromString('1.0001'), BURN_FIXTURE.tickUpper) | ||
tickUpper.price1 = safeDiv(ONE_BD, tickUpper.price0) | ||
tickUpper.save() | ||
}) | ||
|
||
// note: all tvl should be zero in this test because burns don't remove TVL, only collects do | ||
test('success - burn event, pool tick is between tickUpper and tickLower', () => { | ||
// put the pools tick in range | ||
const pool = Pool.load(USDC_WETH_03_MAINNET_POOL)! | ||
pool.tick = BigInt.fromI32(BURN_FIXTURE.tickLower + BURN_FIXTURE.tickUpper).div(BigInt.fromI32(2)) | ||
pool.save() | ||
|
||
handleBurnHelper(BURN_EVENT, FACTORY_ADDRESS) | ||
|
||
const amountToken0 = convertTokenToDecimal(BURN_FIXTURE.amount0, BigInt.fromString(USDC_MAINNET_FIXTURE.decimals)) | ||
const amountToken1 = convertTokenToDecimal(BURN_FIXTURE.amount1, BigInt.fromString(WETH_MAINNET_FIXTURE.decimals)) | ||
const poolTotalValueLockedETH = amountToken0 | ||
.times(TEST_USDC_DERIVED_ETH) | ||
.plus(amountToken1.times(TEST_WETH_DERIVED_ETH)) | ||
const poolTotalValueLockedUSD = poolTotalValueLockedETH.times(TEST_ETH_PRICE_USD) | ||
|
||
assertObjectMatches('Factory', FACTORY_ADDRESS, [ | ||
['txCount', '1'], | ||
['totalValueLockedETH', '0'], | ||
['totalValueLockedUSD', '0'], | ||
]) | ||
|
||
assertObjectMatches('Pool', USDC_WETH_03_MAINNET_POOL, [ | ||
['txCount', '1'], | ||
['liquidity', BURN_FIXTURE.amount.neg().toString()], | ||
['totalValueLockedToken0', '0'], | ||
['totalValueLockedToken1', '0'], | ||
['totalValueLockedETH', '0'], | ||
['totalValueLockedUSD', '0'], | ||
['totalValueLockedETH', '0'], | ||
['totalValueLockedUSD', '0'], | ||
]) | ||
|
||
assertObjectMatches('Token', USDC_MAINNET_FIXTURE.address, [ | ||
['txCount', '1'], | ||
['totalValueLocked', '0'], | ||
['totalValueLockedUSD', '0'], | ||
]) | ||
|
||
assertObjectMatches('Token', WETH_MAINNET_FIXTURE.address, [ | ||
['txCount', '1'], | ||
['totalValueLocked', '0'], | ||
['totalValueLockedUSD', '0'], | ||
]) | ||
|
||
assertObjectMatches('Burn', MOCK_EVENT.transaction.hash.toHexString() + '-' + MOCK_EVENT.logIndex.toString(), [ | ||
['transaction', MOCK_EVENT.transaction.hash.toHexString()], | ||
['timestamp', MOCK_EVENT.block.timestamp.toString()], | ||
['pool', USDC_WETH_03_MAINNET_POOL], | ||
['token0', USDC_MAINNET_FIXTURE.address], | ||
['token1', WETH_MAINNET_FIXTURE.address], | ||
['owner', BURN_FIXTURE.owner.toHexString()], | ||
['origin', MOCK_EVENT.transaction.from.toHexString()], | ||
['amount', BURN_FIXTURE.amount.toString()], | ||
['amount0', amountToken0.toString()], | ||
['amount1', amountToken1.toString()], | ||
['amountUSD', poolTotalValueLockedUSD.toString()], | ||
['tickUpper', BURN_FIXTURE.tickUpper.toString()], | ||
['tickLower', BURN_FIXTURE.tickLower.toString()], | ||
['logIndex', MOCK_EVENT.logIndex.toString()], | ||
]) | ||
|
||
assertObjectMatches('Tick', USDC_WETH_03_MAINNET_POOL + '#' + BURN_FIXTURE.tickLower.toString(), [ | ||
['liquidityGross', BURN_FIXTURE.amount.neg().toString()], | ||
['liquidityNet', BURN_FIXTURE.amount.neg().toString()], | ||
]) | ||
|
||
assertObjectMatches('Tick', USDC_WETH_03_MAINNET_POOL + '#' + BURN_FIXTURE.tickUpper.toString(), [ | ||
['liquidityGross', BURN_FIXTURE.amount.neg().toString()], | ||
['liquidityNet', BURN_FIXTURE.amount.toString()], | ||
]) | ||
}) | ||
|
||
test('success - burn event, pool tick is not between tickUpper and tickLower', () => { | ||
// put the pools tick out of range | ||
const pool = Pool.load(USDC_WETH_03_MAINNET_POOL)! | ||
pool.tick = BigInt.fromI32(BURN_FIXTURE.tickLower - 1) | ||
const liquidityBeforeBurn = pool.liquidity | ||
pool.save() | ||
|
||
handleBurnHelper(BURN_EVENT, FACTORY_ADDRESS) | ||
|
||
// liquidity should not be updated | ||
assertObjectMatches('Pool', USDC_WETH_03_MAINNET_POOL, [['liquidity', liquidityBeforeBurn.toString()]]) | ||
}) | ||
}) |
Oops, something went wrong.