mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 01:47:00 +01:00
94 lines
2.7 KiB
JavaScript
94 lines
2.7 KiB
JavaScript
import { act, renderHook } from '@testing-library/react-hooks';
|
|
|
|
import {
|
|
GasRecommendations,
|
|
CUSTOM_GAS_ESTIMATE,
|
|
} from '../../../shared/constants/gas';
|
|
|
|
import {
|
|
FEE_MARKET_ESTIMATE_RETURN_VALUE,
|
|
LEGACY_GAS_ESTIMATE_RETURN_VALUE,
|
|
configureEIP1559,
|
|
configureLegacy,
|
|
} from './test-utils';
|
|
import { useMaxFeePerGasInput } from './useMaxFeePerGasInput';
|
|
|
|
jest.mock('../useGasFeeEstimates', () => ({
|
|
useGasFeeEstimates: jest.fn(),
|
|
}));
|
|
|
|
jest.mock('react-redux', () => {
|
|
const actual = jest.requireActual('react-redux');
|
|
|
|
return {
|
|
...actual,
|
|
useSelector: jest.fn(),
|
|
};
|
|
});
|
|
|
|
const renderUseMaxFeePerGasInputHook = (props) =>
|
|
renderHook(() =>
|
|
useMaxFeePerGasInput({
|
|
gasLimit: '21000',
|
|
estimateToUse: GasRecommendations.medium,
|
|
transaction: {
|
|
userFeeLevel: CUSTOM_GAS_ESTIMATE,
|
|
txParams: { maxFeePerGas: '0x5028' },
|
|
},
|
|
...FEE_MARKET_ESTIMATE_RETURN_VALUE,
|
|
...props,
|
|
}),
|
|
);
|
|
|
|
describe('useMaxFeePerGasInput', () => {
|
|
beforeEach(() => {
|
|
jest.clearAllMocks();
|
|
configureEIP1559();
|
|
});
|
|
|
|
it('returns maxFeePerGas values from transaction if transaction.userFeeLevel is custom', () => {
|
|
const { result } = renderUseMaxFeePerGasInputHook();
|
|
expect(result.current.maxFeePerGas).toBe(0.00002052);
|
|
});
|
|
|
|
it('returns gasPrice values from transaction if transaction.userFeeLevel is custom and maxFeePerGas is not provided', () => {
|
|
const { result } = renderUseMaxFeePerGasInputHook({
|
|
transaction: {
|
|
userFeeLevel: CUSTOM_GAS_ESTIMATE,
|
|
txParams: { gasPrice: '0x5028' },
|
|
},
|
|
});
|
|
expect(result.current.maxFeePerGas).toBe(0.00002052);
|
|
});
|
|
|
|
it('does not returns maxFeePerGas values from transaction if transaction.userFeeLevel is not custom', () => {
|
|
const { result } = renderUseMaxFeePerGasInputHook({
|
|
estimateToUse: GasRecommendations.high,
|
|
transaction: {
|
|
userFeeLevel: GasRecommendations.high,
|
|
txParams: { maxFeePerGas: '0x5028' },
|
|
},
|
|
});
|
|
expect(result.current.maxFeePerGas).toBe(
|
|
FEE_MARKET_ESTIMATE_RETURN_VALUE.gasFeeEstimates.high
|
|
.suggestedMaxFeePerGas,
|
|
);
|
|
});
|
|
|
|
it('returns 0 if EIP1559 is not supported and legacy gas estimates have been provided', () => {
|
|
configureLegacy();
|
|
const { result } = renderUseMaxFeePerGasInputHook({
|
|
...LEGACY_GAS_ESTIMATE_RETURN_VALUE,
|
|
});
|
|
expect(result.current.maxFeePerGas).toBe('0');
|
|
});
|
|
|
|
it('returns maxFeePerGas set by user if setMaxFeePerGas is called', () => {
|
|
const { result } = renderUseMaxFeePerGasInputHook();
|
|
act(() => {
|
|
result.current.setMaxFeePerGas(100);
|
|
});
|
|
expect(result.current.maxFeePerGas).toBe(100);
|
|
});
|
|
});
|