-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #55 from OasisDEX/aave-v2-simulate
Aave V2 - Simulate positions tests
- Loading branch information
Showing
13 changed files
with
190 additions
and
105 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
import { test } from '#noWalletFixtures'; | ||
import { longTestTimeout } from 'utils/config'; | ||
|
||
test.describe('Aave v2 Earn', async () => { | ||
test('It should allow to simulate an Aave V2 Earn position before opening it - No wallet connected @regression', async ({ | ||
app, | ||
}) => { | ||
test.info().annotations.push({ | ||
type: 'Test case', | ||
description: '12577', | ||
}); | ||
|
||
test.setTimeout(longTestTimeout); | ||
|
||
await app.page.goto('/ethereum/aave/v2/earn/stETHeth#simulate'); | ||
|
||
// Depositing collateral too quickly after loading page returns wrong simulation results | ||
await app.position.setup.waitForComponentToBeStable(); | ||
await app.position.setup.deposit({ token: 'ETH', amount: '33.12345' }); | ||
|
||
await app.position.overview.shouldHaveTokenAmount({ amount: '33.12', token: 'ETH' }); | ||
await app.position.overview.shouldHavePrev30daysNetValue({ | ||
token: 'ETH', | ||
amount: '33.[0-9]{2}', | ||
}); | ||
await app.position.setup.shouldHaveCurrentPrice({ | ||
amount: '[0-9](.[0-9]{2,4})?', | ||
pair: 'STETH/ETH', | ||
}); | ||
await app.position.setup.shouldHaveLiquidationPrice({ | ||
amount: '[0-3].[0-9]{3,4}', | ||
pair: 'STETH/ETH', | ||
}); | ||
await app.position.setup.orderInformation.shouldHaveBuyingAmount({ | ||
tokenAmount: '[0-9]{2,3}.[0-9]{5}', | ||
token: 'STETH', | ||
dollarsAmount: '[0-9]{2,3},[0-9]{3}.[0-9]{2}', | ||
}); | ||
await app.position.setup.orderInformation.shouldHaveFlashloanAmount({ | ||
token: 'DAI', | ||
amount: '[0-9]{2,3},[0-9]{3}.[0-9]{4}', | ||
}); | ||
await app.position.setup.orderInformation.shouldHavePriceImpact({ | ||
amount: '[0-9].[0-9]{4}', | ||
percentage: '0.[0-9]{2}', | ||
}); | ||
await app.position.setup.orderInformation.shouldHaveSlippageLimit('0.[0-9]{2}'); | ||
await app.position.setup.orderInformation.shouldHaveMultiply({ | ||
current: '1', | ||
future: '[1-9](.[0-9]{1,2})?', | ||
}); | ||
await app.position.setup.orderInformation.shouldHaveOutstandingDebt({ | ||
token: 'ETH', | ||
current: '0.00000', | ||
future: '[0-9]{2,3}.[0-9]{5}', | ||
}); | ||
await app.position.setup.orderInformation.shouldHaveTotalCollateral({ | ||
token: 'STETH', | ||
current: '0.00000', | ||
future: '[0-9]{2,3}.[0-9]{5}', | ||
}); | ||
await app.position.setup.orderInformation.shouldHaveLTV({ | ||
current: '0.00', | ||
future: '[0-9]{2,3}.[0-9]{2}', | ||
}); | ||
await app.position.setup.orderInformation.shouldHaveTransactionFee({ fee: '0' }); | ||
}); | ||
}); |
Oops, something went wrong.