mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 01:47:00 +01:00
8fa45c5454
* Fix speed up of 0 max priority fee transactions * Update ui/hooks/gasFeeInput/useTransactionFunction.test.js Co-authored-by: Brad Decker <bhdecker84@gmail.com> * Use bignumber for comparison to zero --------- Co-authored-by: Brad Decker <bhdecker84@gmail.com> Co-authored-by: Pedro Figueiredo <pedro.figueiredo@consensys.net>
166 lines
6.0 KiB
JavaScript
166 lines
6.0 KiB
JavaScript
import React from 'react';
|
|
import { Provider } from 'react-redux';
|
|
import { renderHook } from '@testing-library/react-hooks';
|
|
|
|
import {
|
|
CUSTOM_GAS_ESTIMATE,
|
|
EditGasModes,
|
|
GasRecommendations,
|
|
} from '../../../shared/constants/gas';
|
|
import mockState from '../../../test/data/mock-state.json';
|
|
import * as Actions from '../../store/actions';
|
|
import configureStore from '../../store/store';
|
|
import { useGasFeeEstimates } from '../useGasFeeEstimates';
|
|
import { FEE_MARKET_ESTIMATE_RETURN_VALUE } from './test-utils';
|
|
import { useTransactionFunctions } from './useTransactionFunctions';
|
|
|
|
jest.mock('../useGasFeeEstimates', () => ({
|
|
useGasFeeEstimates: jest.fn(),
|
|
}));
|
|
useGasFeeEstimates.mockImplementation(() => FEE_MARKET_ESTIMATE_RETURN_VALUE);
|
|
|
|
jest.mock('../../selectors', () => ({
|
|
checkNetworkAndAccountSupports1559: () => true,
|
|
}));
|
|
|
|
const wrapper = ({ children }) => (
|
|
<Provider store={configureStore(mockState)}>{children}</Provider>
|
|
);
|
|
|
|
const renderUseTransactionFunctions = (props) => {
|
|
return renderHook(
|
|
() =>
|
|
useTransactionFunctions({
|
|
defaultEstimateToUse: GasRecommendations.medium,
|
|
editGasMode: EditGasModes.modifyInPlace,
|
|
estimatedBaseFee: '0x59682f10',
|
|
gasFeeEstimates: FEE_MARKET_ESTIMATE_RETURN_VALUE.gasFeeEstimates,
|
|
gasLimit: '21000',
|
|
maxPriorityFeePerGas: '0x59682f10',
|
|
transaction: {
|
|
userFeeLevel: CUSTOM_GAS_ESTIMATE,
|
|
txParams: { maxFeePerGas: '0x5028', maxPriorityFeePerGas: '0x5028' },
|
|
},
|
|
...props,
|
|
}),
|
|
{ wrapper },
|
|
);
|
|
};
|
|
|
|
describe('useMaxPriorityFeePerGasInput', () => {
|
|
beforeEach(() => {
|
|
jest.clearAllMocks();
|
|
});
|
|
|
|
it('should invoke action createCancelTransaction when cancelTransaction callback is invoked', () => {
|
|
const mock = jest
|
|
.spyOn(Actions, 'createCancelTransaction')
|
|
.mockImplementation(() => ({ type: '' }));
|
|
const { result } = renderUseTransactionFunctions();
|
|
result.current.cancelTransaction();
|
|
expect(mock).toHaveBeenCalledTimes(1);
|
|
});
|
|
|
|
it('should invoke action createSpeedUpTransaction when speedUpTransaction callback is invoked', () => {
|
|
const mock = jest
|
|
.spyOn(Actions, 'createSpeedUpTransaction')
|
|
.mockImplementation(() => ({ type: '' }));
|
|
const { result } = renderUseTransactionFunctions();
|
|
result.current.speedUpTransaction();
|
|
expect(mock).toHaveBeenCalledTimes(1);
|
|
});
|
|
|
|
it('should invoke action updateTransaction with 10% increased fee when updateTransactionToTenPercentIncreasedGasFee callback is invoked', async () => {
|
|
const mockUpdateGasFees = jest
|
|
.spyOn(Actions, 'updateTransactionGasFees')
|
|
.mockImplementation(() => ({ type: '' }));
|
|
|
|
const { result } = renderUseTransactionFunctions();
|
|
await result.current.updateTransactionToTenPercentIncreasedGasFee();
|
|
expect(mockUpdateGasFees).toHaveBeenCalledTimes(1);
|
|
expect(mockUpdateGasFees).toHaveBeenCalledWith(undefined, {
|
|
estimateSuggested: 'tenPercentIncreased',
|
|
estimateUsed: 'tenPercentIncreased',
|
|
gas: '5208',
|
|
gasLimit: '5208',
|
|
maxFeePerGas: '0x582c',
|
|
maxPriorityFeePerGas: '0x582c',
|
|
userEditedGasLimit: undefined,
|
|
userFeeLevel: 'tenPercentIncreased',
|
|
});
|
|
});
|
|
|
|
it('invokes action updateTransaction with 10% increased max priority fee and medium fee + 10% when updateTransactionToTenPercentIncreasedGasFee callback is invoked while original priority fee is 0', async () => {
|
|
const mockUpdateGasFees = jest
|
|
.spyOn(Actions, 'updateTransactionGasFees')
|
|
.mockImplementation(() => ({ type: '' }));
|
|
|
|
const { result } = renderUseTransactionFunctions({
|
|
transaction: {
|
|
userFeeLevel: CUSTOM_GAS_ESTIMATE,
|
|
txParams: { maxFeePerGas: '0x5028', maxPriorityFeePerGas: '0x0' },
|
|
},
|
|
});
|
|
await result.current.updateTransactionToTenPercentIncreasedGasFee();
|
|
expect(mockUpdateGasFees).toHaveBeenCalledTimes(1);
|
|
expect(mockUpdateGasFees).toHaveBeenCalledWith(undefined, {
|
|
estimateSuggested: 'tenPercentIncreased',
|
|
estimateUsed: 'custom',
|
|
gas: '5208',
|
|
gasLimit: '5208',
|
|
maxFeePerGas: '0x582c',
|
|
maxPriorityFeePerGas: '0x1caf4ad00',
|
|
userEditedGasLimit: undefined,
|
|
userFeeLevel: 'custom',
|
|
});
|
|
});
|
|
|
|
it('should invoke action updateTransaction with estimate gas values fee when updateTransactionUsingEstimate callback is invoked', async () => {
|
|
const mockUpdateGasFees = jest
|
|
.spyOn(Actions, 'updateTransactionGasFees')
|
|
.mockImplementation(() => ({ type: '' }));
|
|
|
|
const { result } = renderUseTransactionFunctions();
|
|
await result.current.updateTransactionUsingEstimate(GasRecommendations.low);
|
|
expect(mockUpdateGasFees).toHaveBeenCalledTimes(1);
|
|
expect(mockUpdateGasFees).toHaveBeenCalledWith(undefined, {
|
|
estimateSuggested: 'medium',
|
|
estimateUsed: 'low',
|
|
gas: '5208',
|
|
gasLimit: '5208',
|
|
maxFeePerGas: 'c570bd200',
|
|
maxPriorityFeePerGas: 'b2d05e00',
|
|
userEditedGasLimit: undefined,
|
|
userFeeLevel: 'low',
|
|
});
|
|
});
|
|
|
|
it('should invoke action updateTransaction with dappSuggestedValues values fee when updateTransactionUsingDAPPSuggestedValues callback is invoked', async () => {
|
|
const mockUpdateGasFees = jest
|
|
.spyOn(Actions, 'updateTransactionGasFees')
|
|
.mockImplementation(() => ({ type: '' }));
|
|
|
|
const { result } = renderUseTransactionFunctions({
|
|
transaction: {
|
|
userFeeLevel: CUSTOM_GAS_ESTIMATE,
|
|
dappSuggestedGasFees: {
|
|
maxFeePerGas: '0x5028',
|
|
maxPriorityFeePerGas: '0x5028',
|
|
},
|
|
},
|
|
});
|
|
await result.current.updateTransactionUsingDAPPSuggestedValues();
|
|
expect(mockUpdateGasFees).toHaveBeenCalledTimes(1);
|
|
expect(mockUpdateGasFees).toHaveBeenCalledWith(undefined, {
|
|
estimateSuggested: 'medium',
|
|
estimateUsed: 'dappSuggested',
|
|
gas: '5208',
|
|
gasLimit: '5208',
|
|
maxFeePerGas: '0x5028',
|
|
maxPriorityFeePerGas: '0x5028',
|
|
userEditedGasLimit: undefined,
|
|
userFeeLevel: 'dappSuggested',
|
|
});
|
|
});
|
|
});
|