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 React from 'react';
|
|
|
|
|
2022-10-04 18:55:05 +02:00
|
|
|
import { renderWithProvider, fireEvent } from '../../../../test/jest';
|
2023-01-24 17:38:01 +01:00
|
|
|
import { Slippage } from '../../../../shared/constants/swaps';
|
|
|
|
import SlippageButtons from './slippage-buttons';
|
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 {
|
|
|
|
onSelect: jest.fn(),
|
|
|
|
maxAllowedSlippage: 15,
|
2023-01-24 17:38:01 +01:00
|
|
|
currentSlippage: Slippage.high,
|
2022-02-18 17:48:38 +01:00
|
|
|
smartTransactionsEnabled: 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,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
describe('SlippageButtons', () => {
|
|
|
|
it('renders the component with initial props', () => {
|
2022-10-04 18:55:05 +02:00
|
|
|
const { getByText, queryByText, getByTestId } = renderWithProvider(
|
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
|
|
|
<SlippageButtons {...createProps()} />,
|
|
|
|
);
|
|
|
|
expect(getByText('2%')).toBeInTheDocument();
|
|
|
|
expect(getByText('3%')).toBeInTheDocument();
|
|
|
|
expect(getByText('custom')).toBeInTheDocument();
|
2022-08-08 21:01:38 +02:00
|
|
|
expect(getByText('Advanced options')).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('.slippage-buttons__header'),
|
|
|
|
).toMatchSnapshot();
|
|
|
|
expect(
|
|
|
|
document.querySelector('.slippage-buttons__button-group'),
|
|
|
|
).toMatchSnapshot();
|
2022-02-18 17:48:38 +01:00
|
|
|
expect(queryByText('Smart transaction')).not.toBeInTheDocument();
|
2022-10-04 18:55:05 +02:00
|
|
|
expect(getByTestId('button-group__button1')).toHaveAttribute(
|
|
|
|
'aria-checked',
|
|
|
|
'true',
|
|
|
|
);
|
2022-02-18 17:48:38 +01:00
|
|
|
});
|
|
|
|
|
2022-10-04 18:55:05 +02:00
|
|
|
it('renders the component with the smart transaction opt-in button available, opt into STX', () => {
|
|
|
|
const setSmartTransactionsOptInStatus = jest.fn();
|
2022-02-18 17:48:38 +01:00
|
|
|
const { getByText } = renderWithProvider(
|
2022-10-04 18:55:05 +02:00
|
|
|
<SlippageButtons
|
|
|
|
{...createProps({
|
|
|
|
smartTransactionsEnabled: true,
|
|
|
|
setSmartTransactionsOptInStatus,
|
|
|
|
})}
|
|
|
|
/>,
|
2022-02-18 17:48:38 +01:00
|
|
|
);
|
|
|
|
expect(getByText('2%')).toBeInTheDocument();
|
|
|
|
expect(getByText('3%')).toBeInTheDocument();
|
|
|
|
expect(getByText('custom')).toBeInTheDocument();
|
2022-08-08 21:01:38 +02:00
|
|
|
expect(getByText('Advanced options')).toBeInTheDocument();
|
2022-02-18 17:48:38 +01:00
|
|
|
expect(
|
|
|
|
document.querySelector('.slippage-buttons__header'),
|
|
|
|
).toMatchSnapshot();
|
|
|
|
expect(
|
|
|
|
document.querySelector('.slippage-buttons__button-group'),
|
|
|
|
).toMatchSnapshot();
|
2022-08-08 21:01:38 +02:00
|
|
|
expect(getByText('Smart transaction')).toBeInTheDocument();
|
2022-10-04 18:55:05 +02:00
|
|
|
expect(document.querySelector('.toggle-button--off')).toBeInTheDocument();
|
|
|
|
fireEvent.click(document.querySelector('.toggle-button'));
|
|
|
|
expect(setSmartTransactionsOptInStatus).toHaveBeenCalledWith(true, false);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('renders slippage with a custom value', () => {
|
|
|
|
const { getByText } = renderWithProvider(
|
|
|
|
<SlippageButtons {...createProps({ currentSlippage: 2.5 })} />,
|
|
|
|
);
|
|
|
|
expect(getByText('2.5')).toBeInTheDocument();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('renders the default slippage with Advanced options hidden', () => {
|
|
|
|
const { getByText, queryByText } = renderWithProvider(
|
|
|
|
<SlippageButtons
|
2023-01-24 17:38:01 +01:00
|
|
|
{...createProps({ currentSlippage: Slippage.default })}
|
2022-10-04 18:55:05 +02:00
|
|
|
/>,
|
|
|
|
);
|
|
|
|
expect(getByText('Advanced options')).toBeInTheDocument();
|
|
|
|
expect(document.querySelector('.fa-angle-down')).toBeInTheDocument();
|
|
|
|
expect(queryByText('2%')).not.toBeInTheDocument();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('opens the Advanced options section and sets a default slippage', () => {
|
|
|
|
const { getByText, getByTestId } = renderWithProvider(
|
|
|
|
<SlippageButtons
|
2023-01-24 17:38:01 +01:00
|
|
|
{...createProps({ currentSlippage: Slippage.default })}
|
2022-10-04 18:55:05 +02:00
|
|
|
/>,
|
|
|
|
);
|
|
|
|
fireEvent.click(getByText('Advanced options'));
|
|
|
|
fireEvent.click(getByTestId('button-group__button0'));
|
|
|
|
expect(getByTestId('button-group__button0')).toHaveAttribute(
|
|
|
|
'aria-checked',
|
|
|
|
'true',
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('opens the Advanced options section and sets a high slippage', () => {
|
|
|
|
const { getByText, getByTestId } = renderWithProvider(
|
|
|
|
<SlippageButtons
|
2023-01-24 17:38:01 +01:00
|
|
|
{...createProps({ currentSlippage: Slippage.default })}
|
2022-10-04 18:55:05 +02:00
|
|
|
/>,
|
|
|
|
);
|
|
|
|
fireEvent.click(getByText('Advanced options'));
|
|
|
|
fireEvent.click(getByTestId('button-group__button1'));
|
|
|
|
expect(getByTestId('button-group__button1')).toHaveAttribute(
|
|
|
|
'aria-checked',
|
|
|
|
'true',
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('sets a custom slippage value', () => {
|
|
|
|
const { getByTestId } = renderWithProvider(
|
|
|
|
<SlippageButtons {...createProps()} />,
|
|
|
|
);
|
|
|
|
fireEvent.click(getByTestId('button-group__button2'));
|
|
|
|
expect(getByTestId('button-group__button2')).toHaveAttribute(
|
|
|
|
'aria-checked',
|
|
|
|
'true',
|
|
|
|
);
|
|
|
|
const input = getByTestId('slippage-buttons__custom-slippage');
|
|
|
|
fireEvent.change(input, { target: { value: 5 } });
|
|
|
|
fireEvent.click(document);
|
|
|
|
expect(input).toHaveAttribute('value', '5');
|
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
|
|
|
});
|
|
|
|
});
|