Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: batch deposit e2e #1892

Merged
merged 29 commits into from
Sep 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -167,11 +167,27 @@ export function TransactionsTableRow({
return tx.status === 'Failure'
}, [tx])

const testId = useMemo(() => {
const type = isClaimableTx ? 'claimable' : 'deposit'
const id = `${type}-row-${tx.txId}-${tx.value}${tx.asset}`

if (tx.value2) {
return `${id}-${tx.value2}${nativeCurrency.symbol}`
}

return id
}, [
isClaimableTx,
nativeCurrency.symbol,
tx.asset,
tx.txId,
tx.value,
tx.value2
])

return (
<div
data-testid={`${isClaimableTx ? 'claimable' : 'deposit'}-row-${tx.txId}-${
tx.value
}${tx.asset}`}
data-testid={testId}
className={twMerge(
'relative mx-4 grid h-[60px] grid-cols-[140px_140px_140px_140px_100px_170px_140px] items-center justify-between border-b border-white/30 text-xs text-white',
className
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,10 @@ function Amount2ToggleButton({
className="border-white/30 shadow-2"
onClick={onClick}
>
<div className="flex items-center space-x-1">
<div
aria-label="Add native currency button"
className="flex items-center space-x-1"
>
<PlusCircleIcon width={18} />
<span>Add {nativeCurrency.symbol}</span>
</div>
Expand Down Expand Up @@ -185,6 +188,7 @@ export function SourceNetworkBox({
maxAmount={maxAmount2}
isMaxAmount={isMaxAmount2}
decimals={nativeCurrency.decimals}
aria-label="Amount2 input"
/>
<p className="mt-1 text-xs font-light text-white">
You can transfer {nativeCurrency.symbol} in the same transaction
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,11 @@ function MaxButton({
}

function SourceChainTokenBalance({
balanceOverride
balanceOverride,
symbolOverride
}: {
balanceOverride?: AmountInputOptions['balance']
symbolOverride?: AmountInputOptions['symbol']
}) {
const {
app: { selectedToken }
Expand Down Expand Up @@ -105,15 +107,18 @@ function SourceChainTokenBalance({
})
: null

const symbol =
symbolOverride ?? selectedToken?.symbol ?? nativeCurrency.symbol

if (formattedBalance) {
return (
<>
<span className="text-sm font-light text-white">Balance: </span>
<span
className="whitespace-nowrap text-sm text-white"
aria-label={`${
selectedToken?.symbol ?? nativeCurrency.symbol
} balance amount on ${isDepositMode ? 'parentChain' : 'childChain'}`}
aria-label={`${symbol} balance amount on ${
isDepositMode ? 'parentChain' : 'childChain'
}`}
>
{formattedBalance}
</span>
Expand Down Expand Up @@ -284,7 +289,10 @@ export const TransferPanelMainInput = React.memo(
<div className="flex flex-col items-end">
<TokenButton options={options} />
<div className="flex items-center space-x-1 px-3 pb-2 pt-1">
<SourceChainTokenBalance balanceOverride={options?.balance} />
<SourceChainTokenBalance
balanceOverride={options?.balance}
symbolOverride={options?.symbol}
/>
<MaxButton onClick={handleMaxButtonClick} />
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { useAppState } from '../../state'
import { isExperimentalFeatureEnabled } from '../../util'
import { isTokenNativeUSDC } from '../../util/TokenUtils'
import { useNetworks } from '../useNetworks'
import { useNetworksRelationship } from '../useNetworksRelationship'
Expand All @@ -11,9 +10,6 @@ export const useIsBatchTransferSupported = () => {
app: { selectedToken }
} = useAppState()

if (!isExperimentalFeatureEnabled('batch')) {
return false
}
if (!selectedToken) {
return false
}
Expand Down
2 changes: 0 additions & 2 deletions packages/arb-token-bridge-ui/src/util/TokenDepositUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ import { addressIsSmartContract } from './AddressUtils'
import { getChainIdFromProvider } from '../token-bridge-sdk/utils'
import { captureSentryErrorWithExtraData } from './SentryUtils'
import { MergedTransaction } from '../state/app/state'
import { isExperimentalFeatureEnabled } from '.'

async function fetchTokenFallbackGasEstimates({
inboxAddress,
Expand Down Expand Up @@ -221,7 +220,6 @@ async function addressIsCustomGatewayToken({

export function isBatchTransfer(tx: MergedTransaction) {
return (
isExperimentalFeatureEnabled('batch') &&
!tx.isCctp &&
!tx.isWithdrawal &&
tx.assetType === AssetType.ERC20 &&
Expand Down
3 changes: 2 additions & 1 deletion packages/arb-token-bridge-ui/src/util/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ export const getAPIBaseUrl = () => {
return process.env.NODE_ENV === 'test' ? 'http://localhost:3000' : ''
}

const featureFlags = ['batch'] as const
// add feature flags to the array
const featureFlags = [] as const

type FeatureFlag = (typeof featureFlags)[number]

Expand Down
4 changes: 4 additions & 0 deletions packages/arb-token-bridge-ui/tests/e2e/cypress.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ import {
searchAndSelectToken,
fillCustomDestinationAddress,
typeAmount,
typeAmount2,
findAmountInput,
findAmount2Input,
findSourceChainButton,
findDestinationChainButton,
findGasFeeSummary,
Expand Down Expand Up @@ -53,7 +55,9 @@ declare global {
}): typeof searchAndSelectToken
fillCustomDestinationAddress(): typeof fillCustomDestinationAddress
typeAmount: typeof typeAmount
typeAmount2: typeof typeAmount2
findAmountInput: typeof findAmountInput
findAmount2Input: typeof findAmount2Input
findSourceChainButton: typeof findSourceChainButton
findDestinationChainButton: typeof findDestinationChainButton
findGasFeeForChain: typeof findGasFeeForChain
Expand Down
5 changes: 5 additions & 0 deletions packages/arb-token-bridge-ui/tests/e2e/specfiles.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@
"file": "tests/e2e/specs/**/withdrawERC20.cy.{js,jsx,ts,tsx}",
"recordVideo": "false"
},
{
"name": "Batch deposit",
"file": "tests/e2e/specs/**/batchDeposit.cy.{js,jsx,ts,tsx}",
"recordVideo": "false"
},
{
"name": "TX history",
"file": "tests/e2e/specs/**/txHistory.cy.{js,jsx,ts,tsx}",
Expand Down
Loading