2021-04-16 23:52:32 +02:00
|
|
|
import React from 'react';
|
2021-08-06 01:59:58 +02:00
|
|
|
import { useSelector } from 'react-redux';
|
|
|
|
|
2021-07-30 13:35:30 +02:00
|
|
|
import {
|
|
|
|
renderWithProvider,
|
2021-07-30 19:40:41 +02:00
|
|
|
setBackgroundConnection,
|
2021-07-30 13:35:30 +02:00
|
|
|
MOCKS,
|
2022-10-04 18:55:05 +02:00
|
|
|
fireEvent,
|
2021-07-30 13:35:30 +02:00
|
|
|
} from '../../../../test/jest';
|
2022-09-14 16:55:31 +02:00
|
|
|
import { CHAIN_IDS } from '../../../../shared/constants/network';
|
2021-12-12 00:26:28 +01:00
|
|
|
|
2023-01-17 16:23:04 +01:00
|
|
|
import {
|
|
|
|
checkNetworkAndAccountSupports1559,
|
|
|
|
getUseCurrencyRateCheck,
|
|
|
|
} from '../../../selectors';
|
2021-12-12 00:26:28 +01:00
|
|
|
import {
|
|
|
|
getGasEstimateType,
|
|
|
|
getGasFeeEstimates,
|
|
|
|
getIsGasEstimatesLoading,
|
|
|
|
} from '../../../ducks/metamask/metamask';
|
2021-11-10 20:50:43 +01:00
|
|
|
import { TRANSACTION_ENVELOPE_TYPE_NAMES } from '../../../helpers/constants/transactions';
|
2021-12-12 00:26:28 +01:00
|
|
|
|
Increase Jest unit test coverage for the Swaps feature to ~25% (#10900)
* Swaps: Show a network name dynamically in a tooltip
* Replace “Ethereum” with “$1”, change “Test” to “Testnet”
* Replace 이더리움 with $1
* Translate network names, use ‘Ethereum’ by default if a translation is not available yet
* Reorder messages to resolve ESLint issues
* Add a snapshot test for the FeeCard component, increase Jest threshold
* Enable snapshot testing into external .snap files in ESLint
* Add the “networkNameEthereum” key in ko/messages.json, remove default “Ethereum” value
* Throw an error if chain ID is not supported by the Swaps feature
* Use string literals when calling the `t` fn,
* Watch Jest tests silently (no React warnings in terminal, only errors)
* Add @testing-library/jest-dom, import it before running Jest tests
* Add snapshot testing of Swaps’ React components for happy paths, increase minimum threshold for Jest
* Add the test/jest folder for Jest setup and shared functions, use it in Swaps Jest tests
* Fix ESLint issues, update linting config
* Enable ESLint for .snap files (Jest snapshots), throw an error if a snapshot is bigger than 50 lines
* Don’t run lint:fix for .snap files
* Move `createProps` outside of `describe` blocks, move store creation inside tests
* Use translations instead of keys, update a rendering function to load translations
* Make sure all Jest snapshots are shorter than 50 lines (default limit)
* Add / update props for Swaps tests
* Fix React warnings when running tests for Swaps
2021-04-21 21:34:35 +02:00
|
|
|
import FeeCard from '.';
|
2021-04-16 23:52:32 +02:00
|
|
|
|
2021-12-12 00:26:28 +01:00
|
|
|
jest.mock('../../../hooks/useGasFeeEstimates', () => ({
|
|
|
|
useGasFeeEstimates: jest.fn(),
|
|
|
|
}));
|
|
|
|
|
2021-08-06 01:59:58 +02:00
|
|
|
jest.mock('react-redux', () => {
|
|
|
|
const actual = jest.requireActual('react-redux');
|
|
|
|
|
2021-07-30 13:35:30 +02:00
|
|
|
return {
|
2021-08-06 01:59:58 +02:00
|
|
|
...actual,
|
|
|
|
useSelector: jest.fn(),
|
2021-07-30 13:35:30 +02:00
|
|
|
};
|
|
|
|
});
|
|
|
|
|
2021-08-06 01:59:58 +02:00
|
|
|
const generateUseSelectorRouter = () => (selector) => {
|
|
|
|
if (selector === checkNetworkAndAccountSupports1559) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (selector === getGasEstimateType) {
|
2021-11-10 20:50:43 +01:00
|
|
|
return TRANSACTION_ENVELOPE_TYPE_NAMES.FEE_MARKET;
|
2021-08-06 01:59:58 +02:00
|
|
|
}
|
|
|
|
if (selector === getGasFeeEstimates) {
|
|
|
|
return MOCKS.createGasFeeEstimatesForFeeMarket();
|
|
|
|
}
|
|
|
|
if (selector === getIsGasEstimatesLoading) {
|
|
|
|
return false;
|
|
|
|
}
|
2023-01-17 16:23:04 +01:00
|
|
|
if (selector === getUseCurrencyRateCheck) {
|
|
|
|
return true;
|
|
|
|
}
|
2021-08-06 01:59:58 +02:00
|
|
|
return undefined;
|
|
|
|
};
|
|
|
|
|
2021-07-30 19:40:41 +02:00
|
|
|
setBackgroundConnection({
|
|
|
|
getGasFeeTimeEstimate: jest.fn(),
|
2021-08-06 01:59:58 +02:00
|
|
|
getGasFeeEstimatesAndStartPolling: jest.fn(),
|
2022-02-03 01:28:28 +01:00
|
|
|
createTransactionEventFragment: jest.fn(),
|
2021-07-30 19:40:41 +02:00
|
|
|
});
|
|
|
|
|
Increase Jest unit test coverage for the Swaps feature to ~25% (#10900)
* Swaps: Show a network name dynamically in a tooltip
* Replace “Ethereum” with “$1”, change “Test” to “Testnet”
* Replace 이더리움 with $1
* Translate network names, use ‘Ethereum’ by default if a translation is not available yet
* Reorder messages to resolve ESLint issues
* Add a snapshot test for the FeeCard component, increase Jest threshold
* Enable snapshot testing into external .snap files in ESLint
* Add the “networkNameEthereum” key in ko/messages.json, remove default “Ethereum” value
* Throw an error if chain ID is not supported by the Swaps feature
* Use string literals when calling the `t` fn,
* Watch Jest tests silently (no React warnings in terminal, only errors)
* Add @testing-library/jest-dom, import it before running Jest tests
* Add snapshot testing of Swaps’ React components for happy paths, increase minimum threshold for Jest
* Add the test/jest folder for Jest setup and shared functions, use it in Swaps Jest tests
* Fix ESLint issues, update linting config
* Enable ESLint for .snap files (Jest snapshots), throw an error if a snapshot is bigger than 50 lines
* Don’t run lint:fix for .snap files
* Move `createProps` outside of `describe` blocks, move store creation inside tests
* Use translations instead of keys, update a rendering function to load translations
* Make sure all Jest snapshots are shorter than 50 lines (default limit)
* Add / update props for Swaps tests
* Fix React warnings when running tests for Swaps
2021-04-21 21:34:35 +02:00
|
|
|
const createProps = (customProps = {}) => {
|
|
|
|
return {
|
|
|
|
primaryFee: {
|
|
|
|
fee: '0.0441 ETH',
|
|
|
|
maxFee: '0.04851 ETH',
|
|
|
|
},
|
|
|
|
secondaryFee: {
|
|
|
|
fee: '$101.98',
|
|
|
|
maxFee: '$112.17',
|
|
|
|
},
|
|
|
|
hideTokenApprovalRow: false,
|
|
|
|
onFeeCardMaxRowClick: jest.fn(),
|
|
|
|
tokenApprovalTextComponent: (
|
2021-12-07 04:51:26 +01:00
|
|
|
<span key="fee-card-approve-symbol" className="fee-card__bold">
|
Increase Jest unit test coverage for the Swaps feature to ~25% (#10900)
* Swaps: Show a network name dynamically in a tooltip
* Replace “Ethereum” with “$1”, change “Test” to “Testnet”
* Replace 이더리움 with $1
* Translate network names, use ‘Ethereum’ by default if a translation is not available yet
* Reorder messages to resolve ESLint issues
* Add a snapshot test for the FeeCard component, increase Jest threshold
* Enable snapshot testing into external .snap files in ESLint
* Add the “networkNameEthereum” key in ko/messages.json, remove default “Ethereum” value
* Throw an error if chain ID is not supported by the Swaps feature
* Use string literals when calling the `t` fn,
* Watch Jest tests silently (no React warnings in terminal, only errors)
* Add @testing-library/jest-dom, import it before running Jest tests
* Add snapshot testing of Swaps’ React components for happy paths, increase minimum threshold for Jest
* Add the test/jest folder for Jest setup and shared functions, use it in Swaps Jest tests
* Fix ESLint issues, update linting config
* Enable ESLint for .snap files (Jest snapshots), throw an error if a snapshot is bigger than 50 lines
* Don’t run lint:fix for .snap files
* Move `createProps` outside of `describe` blocks, move store creation inside tests
* Use translations instead of keys, update a rendering function to load translations
* Make sure all Jest snapshots are shorter than 50 lines (default limit)
* Add / update props for Swaps tests
* Fix React warnings when running tests for Swaps
2021-04-21 21:34:35 +02:00
|
|
|
ABC
|
|
|
|
</span>
|
|
|
|
),
|
|
|
|
tokenApprovalSourceTokenSymbol: 'ABC',
|
|
|
|
onTokenApprovalClick: jest.fn(),
|
|
|
|
metaMaskFee: '0.875',
|
|
|
|
isBestQuote: true,
|
|
|
|
numberOfQuotes: 6,
|
|
|
|
onQuotesClick: jest.fn(),
|
|
|
|
tokenConversionRate: 0.015,
|
2022-09-14 16:55:31 +02:00
|
|
|
chainId: CHAIN_IDS.MAINNET,
|
2021-08-03 00:52:18 +02:00
|
|
|
networkAndAccountSupports1559: false,
|
Increase Jest unit test coverage for the Swaps feature to ~25% (#10900)
* Swaps: Show a network name dynamically in a tooltip
* Replace “Ethereum” with “$1”, change “Test” to “Testnet”
* Replace 이더리움 with $1
* Translate network names, use ‘Ethereum’ by default if a translation is not available yet
* Reorder messages to resolve ESLint issues
* Add a snapshot test for the FeeCard component, increase Jest threshold
* Enable snapshot testing into external .snap files in ESLint
* Add the “networkNameEthereum” key in ko/messages.json, remove default “Ethereum” value
* Throw an error if chain ID is not supported by the Swaps feature
* Use string literals when calling the `t` fn,
* Watch Jest tests silently (no React warnings in terminal, only errors)
* Add @testing-library/jest-dom, import it before running Jest tests
* Add snapshot testing of Swaps’ React components for happy paths, increase minimum threshold for Jest
* Add the test/jest folder for Jest setup and shared functions, use it in Swaps Jest tests
* Fix ESLint issues, update linting config
* Enable ESLint for .snap files (Jest snapshots), throw an error if a snapshot is bigger than 50 lines
* Don’t run lint:fix for .snap files
* Move `createProps` outside of `describe` blocks, move store creation inside tests
* Use translations instead of keys, update a rendering function to load translations
* Make sure all Jest snapshots are shorter than 50 lines (default limit)
* Add / update props for Swaps tests
* Fix React warnings when running tests for Swaps
2021-04-21 21:34:35 +02:00
|
|
|
...customProps,
|
2021-04-16 23:52:32 +02:00
|
|
|
};
|
Increase Jest unit test coverage for the Swaps feature to ~25% (#10900)
* Swaps: Show a network name dynamically in a tooltip
* Replace “Ethereum” with “$1”, change “Test” to “Testnet”
* Replace 이더리움 with $1
* Translate network names, use ‘Ethereum’ by default if a translation is not available yet
* Reorder messages to resolve ESLint issues
* Add a snapshot test for the FeeCard component, increase Jest threshold
* Enable snapshot testing into external .snap files in ESLint
* Add the “networkNameEthereum” key in ko/messages.json, remove default “Ethereum” value
* Throw an error if chain ID is not supported by the Swaps feature
* Use string literals when calling the `t` fn,
* Watch Jest tests silently (no React warnings in terminal, only errors)
* Add @testing-library/jest-dom, import it before running Jest tests
* Add snapshot testing of Swaps’ React components for happy paths, increase minimum threshold for Jest
* Add the test/jest folder for Jest setup and shared functions, use it in Swaps Jest tests
* Fix ESLint issues, update linting config
* Enable ESLint for .snap files (Jest snapshots), throw an error if a snapshot is bigger than 50 lines
* Don’t run lint:fix for .snap files
* Move `createProps` outside of `describe` blocks, move store creation inside tests
* Use translations instead of keys, update a rendering function to load translations
* Make sure all Jest snapshots are shorter than 50 lines (default limit)
* Add / update props for Swaps tests
* Fix React warnings when running tests for Swaps
2021-04-21 21:34:35 +02:00
|
|
|
};
|
2021-04-16 23:52:32 +02:00
|
|
|
|
Increase Jest unit test coverage for the Swaps feature to ~25% (#10900)
* Swaps: Show a network name dynamically in a tooltip
* Replace “Ethereum” with “$1”, change “Test” to “Testnet”
* Replace 이더리움 with $1
* Translate network names, use ‘Ethereum’ by default if a translation is not available yet
* Reorder messages to resolve ESLint issues
* Add a snapshot test for the FeeCard component, increase Jest threshold
* Enable snapshot testing into external .snap files in ESLint
* Add the “networkNameEthereum” key in ko/messages.json, remove default “Ethereum” value
* Throw an error if chain ID is not supported by the Swaps feature
* Use string literals when calling the `t` fn,
* Watch Jest tests silently (no React warnings in terminal, only errors)
* Add @testing-library/jest-dom, import it before running Jest tests
* Add snapshot testing of Swaps’ React components for happy paths, increase minimum threshold for Jest
* Add the test/jest folder for Jest setup and shared functions, use it in Swaps Jest tests
* Fix ESLint issues, update linting config
* Enable ESLint for .snap files (Jest snapshots), throw an error if a snapshot is bigger than 50 lines
* Don’t run lint:fix for .snap files
* Move `createProps` outside of `describe` blocks, move store creation inside tests
* Use translations instead of keys, update a rendering function to load translations
* Make sure all Jest snapshots are shorter than 50 lines (default limit)
* Add / update props for Swaps tests
* Fix React warnings when running tests for Swaps
2021-04-21 21:34:35 +02:00
|
|
|
describe('FeeCard', () => {
|
2021-04-16 23:52:32 +02:00
|
|
|
it('renders the component with initial props', () => {
|
2021-08-06 01:59:58 +02:00
|
|
|
useSelector.mockImplementation(generateUseSelectorRouter());
|
Increase Jest unit test coverage for the Swaps feature to ~25% (#10900)
* Swaps: Show a network name dynamically in a tooltip
* Replace “Ethereum” with “$1”, change “Test” to “Testnet”
* Replace 이더리움 with $1
* Translate network names, use ‘Ethereum’ by default if a translation is not available yet
* Reorder messages to resolve ESLint issues
* Add a snapshot test for the FeeCard component, increase Jest threshold
* Enable snapshot testing into external .snap files in ESLint
* Add the “networkNameEthereum” key in ko/messages.json, remove default “Ethereum” value
* Throw an error if chain ID is not supported by the Swaps feature
* Use string literals when calling the `t` fn,
* Watch Jest tests silently (no React warnings in terminal, only errors)
* Add @testing-library/jest-dom, import it before running Jest tests
* Add snapshot testing of Swaps’ React components for happy paths, increase minimum threshold for Jest
* Add the test/jest folder for Jest setup and shared functions, use it in Swaps Jest tests
* Fix ESLint issues, update linting config
* Enable ESLint for .snap files (Jest snapshots), throw an error if a snapshot is bigger than 50 lines
* Don’t run lint:fix for .snap files
* Move `createProps` outside of `describe` blocks, move store creation inside tests
* Use translations instead of keys, update a rendering function to load translations
* Make sure all Jest snapshots are shorter than 50 lines (default limit)
* Add / update props for Swaps tests
* Fix React warnings when running tests for Swaps
2021-04-21 21:34:35 +02:00
|
|
|
const props = createProps();
|
|
|
|
const { getByText } = renderWithProvider(<FeeCard {...props} />);
|
2021-12-07 04:51:26 +01:00
|
|
|
expect(getByText('Best of 6 quotes.')).toBeInTheDocument();
|
|
|
|
expect(getByText('Estimated gas fee')).toBeInTheDocument();
|
|
|
|
expect(getByText('Max fee')).toBeInTheDocument();
|
Increase Jest unit test coverage for the Swaps feature to ~25% (#10900)
* Swaps: Show a network name dynamically in a tooltip
* Replace “Ethereum” with “$1”, change “Test” to “Testnet”
* Replace 이더리움 with $1
* Translate network names, use ‘Ethereum’ by default if a translation is not available yet
* Reorder messages to resolve ESLint issues
* Add a snapshot test for the FeeCard component, increase Jest threshold
* Enable snapshot testing into external .snap files in ESLint
* Add the “networkNameEthereum” key in ko/messages.json, remove default “Ethereum” value
* Throw an error if chain ID is not supported by the Swaps feature
* Use string literals when calling the `t` fn,
* Watch Jest tests silently (no React warnings in terminal, only errors)
* Add @testing-library/jest-dom, import it before running Jest tests
* Add snapshot testing of Swaps’ React components for happy paths, increase minimum threshold for Jest
* Add the test/jest folder for Jest setup and shared functions, use it in Swaps Jest tests
* Fix ESLint issues, update linting config
* Enable ESLint for .snap files (Jest snapshots), throw an error if a snapshot is bigger than 50 lines
* Don’t run lint:fix for .snap files
* Move `createProps` outside of `describe` blocks, move store creation inside tests
* Use translations instead of keys, update a rendering function to load translations
* Make sure all Jest snapshots are shorter than 50 lines (default limit)
* Add / update props for Swaps tests
* Fix React warnings when running tests for Swaps
2021-04-21 21:34:35 +02:00
|
|
|
expect(getByText(props.primaryFee.fee)).toBeInTheDocument();
|
|
|
|
expect(getByText(props.secondaryFee.fee)).toBeInTheDocument();
|
2021-12-07 04:51:26 +01:00
|
|
|
expect(getByText(`: ${props.secondaryFee.maxFee}`)).toBeInTheDocument();
|
|
|
|
expect(getByText('Includes a 0.875% MetaMask fee.')).toBeInTheDocument();
|
Increase Jest unit test coverage for the Swaps feature to ~25% (#10900)
* Swaps: Show a network name dynamically in a tooltip
* Replace “Ethereum” with “$1”, change “Test” to “Testnet”
* Replace 이더리움 with $1
* Translate network names, use ‘Ethereum’ by default if a translation is not available yet
* Reorder messages to resolve ESLint issues
* Add a snapshot test for the FeeCard component, increase Jest threshold
* Enable snapshot testing into external .snap files in ESLint
* Add the “networkNameEthereum” key in ko/messages.json, remove default “Ethereum” value
* Throw an error if chain ID is not supported by the Swaps feature
* Use string literals when calling the `t` fn,
* Watch Jest tests silently (no React warnings in terminal, only errors)
* Add @testing-library/jest-dom, import it before running Jest tests
* Add snapshot testing of Swaps’ React components for happy paths, increase minimum threshold for Jest
* Add the test/jest folder for Jest setup and shared functions, use it in Swaps Jest tests
* Fix ESLint issues, update linting config
* Enable ESLint for .snap files (Jest snapshots), throw an error if a snapshot is bigger than 50 lines
* Don’t run lint:fix for .snap files
* Move `createProps` outside of `describe` blocks, move store creation inside tests
* Use translations instead of keys, update a rendering function to load translations
* Make sure all Jest snapshots are shorter than 50 lines (default limit)
* Add / update props for Swaps tests
* Fix React warnings when running tests for Swaps
2021-04-21 21:34:35 +02:00
|
|
|
expect(
|
|
|
|
document.querySelector('.fee-card__top-bordered-row'),
|
|
|
|
).toMatchSnapshot();
|
2022-10-04 18:55:05 +02:00
|
|
|
expect(document.querySelector('.info-tooltip')).toMatchSnapshot();
|
|
|
|
expect(getByText('Edit limit')).toBeInTheDocument();
|
2021-04-16 23:52:32 +02:00
|
|
|
});
|
2021-07-30 13:35:30 +02:00
|
|
|
|
|
|
|
it('renders the component with EIP-1559 enabled', () => {
|
|
|
|
const props = createProps({
|
2021-08-03 00:52:18 +02:00
|
|
|
networkAndAccountSupports1559: true,
|
2021-07-30 13:35:30 +02:00
|
|
|
maxPriorityFeePerGasDecGWEI: '3',
|
2021-07-30 15:19:30 +02:00
|
|
|
maxFeePerGasDecGWEI: '4',
|
2021-07-30 13:35:30 +02:00
|
|
|
});
|
2023-01-17 16:23:04 +01:00
|
|
|
const { getByText } = renderWithProvider(<FeeCard {...props} />);
|
2021-12-07 04:51:26 +01:00
|
|
|
expect(getByText('Best of 6 quotes.')).toBeInTheDocument();
|
2021-07-30 13:35:30 +02:00
|
|
|
expect(getByText('Estimated gas fee')).toBeInTheDocument();
|
2021-12-07 04:51:26 +01:00
|
|
|
expect(getByText('Max fee')).toBeInTheDocument();
|
2021-07-30 13:35:30 +02:00
|
|
|
expect(getByText(props.primaryFee.fee)).toBeInTheDocument();
|
|
|
|
expect(getByText(props.secondaryFee.fee)).toBeInTheDocument();
|
|
|
|
expect(getByText(`: ${props.secondaryFee.maxFee}`)).toBeInTheDocument();
|
2021-12-07 04:51:26 +01:00
|
|
|
expect(getByText('Includes a 0.875% MetaMask fee.')).toBeInTheDocument();
|
2021-07-30 13:35:30 +02:00
|
|
|
expect(
|
|
|
|
document.querySelector('.fee-card__top-bordered-row'),
|
|
|
|
).toMatchSnapshot();
|
|
|
|
});
|
2021-12-12 00:26:28 +01:00
|
|
|
|
2022-08-08 21:01:38 +02:00
|
|
|
it('renders the component with smart transactions enabled and user opted in', () => {
|
2022-02-18 17:48:38 +01:00
|
|
|
const props = createProps({
|
|
|
|
smartTransactionsOptInStatus: true,
|
|
|
|
smartTransactionsEnabled: true,
|
|
|
|
maxPriorityFeePerGasDecGWEI: '3',
|
|
|
|
maxFeePerGasDecGWEI: '4',
|
|
|
|
});
|
|
|
|
const { getByText, queryByTestId } = renderWithProvider(
|
|
|
|
<FeeCard {...props} />,
|
|
|
|
);
|
|
|
|
expect(getByText('Best of 6 quotes.')).toBeInTheDocument();
|
|
|
|
expect(getByText('Estimated gas fee')).toBeInTheDocument();
|
|
|
|
expect(getByText(props.primaryFee.fee)).toBeInTheDocument();
|
|
|
|
expect(getByText(props.secondaryFee.fee)).toBeInTheDocument();
|
|
|
|
expect(getByText(`: ${props.secondaryFee.maxFee}`)).toBeInTheDocument();
|
|
|
|
expect(queryByTestId('fee-card__edit-link')).not.toBeInTheDocument();
|
|
|
|
});
|
2022-10-04 18:55:05 +02:00
|
|
|
|
|
|
|
it('renders the component with hidden token approval row', () => {
|
|
|
|
const props = createProps({
|
|
|
|
hideTokenApprovalRow: true,
|
|
|
|
});
|
2023-01-17 16:23:04 +01:00
|
|
|
const { queryByText } = renderWithProvider(<FeeCard {...props} />);
|
2022-10-04 18:55:05 +02:00
|
|
|
expect(queryByText('Edit limit')).not.toBeInTheDocument();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('approves a token', () => {
|
|
|
|
const props = createProps({
|
|
|
|
onTokenApprovalClick: jest.fn(),
|
|
|
|
});
|
2023-01-17 16:23:04 +01:00
|
|
|
const { queryByText } = renderWithProvider(<FeeCard {...props} />);
|
2022-10-04 18:55:05 +02:00
|
|
|
fireEvent.click(queryByText('Edit limit'));
|
|
|
|
expect(props.onTokenApprovalClick).toHaveBeenCalled();
|
|
|
|
});
|
2021-04-16 23:52:32 +02:00
|
|
|
});
|