|
|
|
import React from 'react';
|
|
|
|
import configureMockStore from 'redux-mock-store';
|
|
|
|
import thunk from 'redux-thunk';
|
|
|
|
import { useSelector } from 'react-redux';
|
|
|
|
|
|
|
|
import {
|
|
|
|
renderWithProvider,
|
|
|
|
createSwapsMockStore,
|
|
|
|
setBackgroundConnection,
|
|
|
|
MOCKS,
|
|
|
|
} from '../../../../test/jest';
|
|
|
|
import { EDIT_GAS_MODES } from '../../../../shared/constants/gas';
|
|
|
|
import { MAINNET_CHAIN_ID } from '../../../../shared/constants/network';
|
|
|
|
|
|
|
|
import {
|
|
|
|
checkNetworkAndAccountSupports1559,
|
|
|
|
getPreferences,
|
|
|
|
getSelectedAccount,
|
|
|
|
} from '../../../selectors';
|
|
|
|
import {
|
|
|
|
getGasEstimateType,
|
|
|
|
getGasFeeEstimates,
|
|
|
|
getIsGasEstimatesLoading,
|
|
|
|
} from '../../../ducks/metamask/metamask';
|
|
|
|
import { GasFeeContextProvider } from '../../../contexts/gasFee';
|
|
|
|
import { TRANSACTION_ENVELOPE_TYPE_NAMES } from '../../../helpers/constants/transactions';
|
|
|
|
import { useGasFeeEstimates } from '../../../hooks/useGasFeeEstimates';
|
|
|
|
|
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
4 years ago
|
|
|
import FeeCard from '.';
|
|
|
|
|
|
|
|
const middleware = [thunk];
|
|
|
|
|
|
|
|
jest.mock('../../../hooks/useGasFeeEstimates', () => ({
|
|
|
|
useGasFeeEstimates: jest.fn(),
|
|
|
|
}));
|
|
|
|
|
|
|
|
jest.mock('react-redux', () => {
|
|
|
|
const actual = jest.requireActual('react-redux');
|
|
|
|
|
|
|
|
return {
|
|
|
|
...actual,
|
|
|
|
useSelector: jest.fn(),
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
|
|
|
const generateUseSelectorRouter = () => (selector) => {
|
|
|
|
if (selector === checkNetworkAndAccountSupports1559) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (selector === getGasEstimateType) {
|
|
|
|
return TRANSACTION_ENVELOPE_TYPE_NAMES.FEE_MARKET;
|
|
|
|
}
|
|
|
|
if (selector === getGasFeeEstimates) {
|
|
|
|
return MOCKS.createGasFeeEstimatesForFeeMarket();
|
|
|
|
}
|
|
|
|
if (selector === getIsGasEstimatesLoading) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return undefined;
|
|
|
|
};
|
|
|
|
|
|
|
|
setBackgroundConnection({
|
|
|
|
getGasFeeTimeEstimate: jest.fn(),
|
|
|
|
getGasFeeEstimatesAndStartPolling: jest.fn(),
|
|
|
|
});
|
|
|
|
|
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
4 years ago
|
|
|
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: (
|
|
|
|
<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
4 years ago
|
|
|
ABC
|
|
|
|
</span>
|
|
|
|
),
|
|
|
|
tokenApprovalSourceTokenSymbol: 'ABC',
|
|
|
|
onTokenApprovalClick: jest.fn(),
|
|
|
|
metaMaskFee: '0.875',
|
|
|
|
isBestQuote: true,
|
|
|
|
numberOfQuotes: 6,
|
|
|
|
onQuotesClick: jest.fn(),
|
|
|
|
tokenConversionRate: 0.015,
|
|
|
|
chainId: MAINNET_CHAIN_ID,
|
|
|
|
networkAndAccountSupports1559: false,
|
|
|
|
supportsEIP1559V2: 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
4 years ago
|
|
|
...customProps,
|
|
|
|
};
|
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
4 years ago
|
|
|
};
|
|
|
|
|
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
4 years ago
|
|
|
describe('FeeCard', () => {
|
|
|
|
it('renders the component with initial props', () => {
|
|
|
|
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
4 years ago
|
|
|
const props = createProps();
|
|
|
|
const { getByText } = renderWithProvider(<FeeCard {...props} />);
|
|
|
|
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
4 years ago
|
|
|
expect(getByText(props.primaryFee.fee)).toBeInTheDocument();
|
|
|
|
expect(getByText(props.secondaryFee.fee)).toBeInTheDocument();
|
|
|
|
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
4 years ago
|
|
|
expect(
|
|
|
|
document.querySelector('.fee-card__top-bordered-row'),
|
|
|
|
).toMatchSnapshot();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('renders the component with EIP-1559 enabled', () => {
|
|
|
|
const store = configureMockStore(middleware)(createSwapsMockStore());
|
|
|
|
const props = createProps({
|
|
|
|
networkAndAccountSupports1559: true,
|
|
|
|
maxPriorityFeePerGasDecGWEI: '3',
|
|
|
|
maxFeePerGasDecGWEI: '4',
|
|
|
|
});
|
|
|
|
const { getByText } = renderWithProvider(<FeeCard {...props} />, store);
|
|
|
|
expect(getByText('Best of 6 quotes.')).toBeInTheDocument();
|
|
|
|
expect(getByText('Estimated gas fee')).toBeInTheDocument();
|
|
|
|
expect(getByText('Max fee')).toBeInTheDocument();
|
|
|
|
expect(getByText(props.primaryFee.fee)).toBeInTheDocument();
|
|
|
|
expect(getByText(props.secondaryFee.fee)).toBeInTheDocument();
|
|
|
|
expect(getByText(`: ${props.secondaryFee.maxFee}`)).toBeInTheDocument();
|
|
|
|
expect(getByText('Includes a 0.875% MetaMask fee.')).toBeInTheDocument();
|
|
|
|
expect(
|
|
|
|
document.querySelector('.fee-card__top-bordered-row'),
|
|
|
|
).toMatchSnapshot();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('renders the component with EIP-1559 V2 enabled', () => {
|
|
|
|
process.env.EIP_1559_V2 = true;
|
|
|
|
useGasFeeEstimates.mockImplementation(() => ({ gasFeeEstimates: {} }));
|
|
|
|
useSelector.mockImplementation((selector) => {
|
|
|
|
if (selector === getPreferences) {
|
|
|
|
return {
|
|
|
|
useNativeCurrencyAsPrimaryCurrency: true,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
if (selector === getSelectedAccount) {
|
|
|
|
return {
|
|
|
|
balance: '0x440aa47cc2556',
|
|
|
|
};
|
|
|
|
}
|
|
|
|
if (selector === checkNetworkAndAccountSupports1559) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return undefined;
|
|
|
|
});
|
|
|
|
|
|
|
|
const store = configureMockStore(middleware)(createSwapsMockStore());
|
|
|
|
const props = createProps({
|
|
|
|
networkAndAccountSupports1559: true,
|
|
|
|
maxPriorityFeePerGasDecGWEI: '3',
|
|
|
|
maxFeePerGasDecGWEI: '4',
|
|
|
|
supportsEIP1559V2: true,
|
|
|
|
});
|
|
|
|
const { getByText } = renderWithProvider(
|
|
|
|
<GasFeeContextProvider
|
|
|
|
transaction={{ txParams: {}, userFeeLevel: 'high' }}
|
|
|
|
editGasMode={EDIT_GAS_MODES.SWAPS}
|
|
|
|
>
|
|
|
|
<FeeCard {...props} />
|
|
|
|
</GasFeeContextProvider>,
|
|
|
|
store,
|
|
|
|
);
|
|
|
|
expect(getByText('Best of 6 quotes.')).toBeInTheDocument();
|
|
|
|
expect(getByText('Gas')).toBeInTheDocument();
|
|
|
|
expect(getByText('(estimated)')).toBeInTheDocument();
|
|
|
|
expect(getByText('Swap suggested')).toBeInTheDocument();
|
|
|
|
expect(getByText('Max fee')).toBeInTheDocument();
|
|
|
|
expect(getByText(props.primaryFee.fee)).toBeInTheDocument();
|
|
|
|
expect(getByText(props.secondaryFee.fee)).toBeInTheDocument();
|
|
|
|
expect(getByText(`: ${props.secondaryFee.maxFee}`)).toBeInTheDocument();
|
|
|
|
expect(getByText('Includes a 0.875% MetaMask fee.')).toBeInTheDocument();
|
|
|
|
expect(
|
|
|
|
document.querySelector('.fee-card__top-bordered-row'),
|
|
|
|
).toMatchSnapshot();
|
|
|
|
process.env.EIP_1559_V2 = false;
|
|
|
|
});
|
|
|
|
});
|