You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
84 lines
2.6 KiB
84 lines
2.6 KiB
import React from 'react';
|
|
import configureMockStore from 'redux-mock-store';
|
|
import thunk from 'redux-thunk';
|
|
|
|
import { fireEvent } from '@testing-library/react';
|
|
import { AMOUNT_MODES, SEND_STATUSES } from '../../../../../ducks/send';
|
|
import { renderWithProvider } from '../../../../../../test/jest';
|
|
import { GAS_ESTIMATE_TYPES } from '../../../../../../shared/constants/gas';
|
|
import {
|
|
getInitialSendStateWithExistingTxState,
|
|
INITIAL_SEND_STATE_FOR_EXISTING_DRAFT,
|
|
} from '../../../../../../test/jest/mocks';
|
|
import AmountMaxButton from './amount-max-button';
|
|
|
|
const middleware = [thunk];
|
|
|
|
describe('AmountMaxButton Component', () => {
|
|
describe('render', () => {
|
|
it('should render a "Max" button', () => {
|
|
const { getByText } = renderWithProvider(
|
|
<AmountMaxButton />,
|
|
configureMockStore(middleware)({
|
|
metamask: {
|
|
gasEstimateType: GAS_ESTIMATE_TYPES.NONE,
|
|
networkDetails: {
|
|
EIPS: {},
|
|
},
|
|
},
|
|
send: INITIAL_SEND_STATE_FOR_EXISTING_DRAFT,
|
|
}),
|
|
);
|
|
expect(getByText('Max')).toBeTruthy();
|
|
});
|
|
|
|
it('should dispatch action to set mode to MAX', () => {
|
|
const store = configureMockStore(middleware)({
|
|
metamask: {
|
|
gasEstimateType: GAS_ESTIMATE_TYPES.ETH_GASPRICE,
|
|
networkDetails: {
|
|
EIPS: {},
|
|
},
|
|
},
|
|
send: getInitialSendStateWithExistingTxState({
|
|
status: SEND_STATUSES.VALID,
|
|
}),
|
|
});
|
|
const { getByText } = renderWithProvider(<AmountMaxButton />, store);
|
|
|
|
const expectedActions = [
|
|
{ type: 'send/updateAmountMode', payload: AMOUNT_MODES.MAX },
|
|
];
|
|
|
|
fireEvent.click(getByText('Max'), { bubbles: true });
|
|
const actions = store.getActions();
|
|
expect(actions).toStrictEqual(expectedActions);
|
|
});
|
|
|
|
it('should dispatch action to set amount mode to INPUT', () => {
|
|
const store = configureMockStore(middleware)({
|
|
metamask: {
|
|
gasEstimateType: GAS_ESTIMATE_TYPES.ETH_GASPRICE,
|
|
networkDetails: {
|
|
EIPS: {},
|
|
},
|
|
},
|
|
send: {
|
|
...getInitialSendStateWithExistingTxState({
|
|
status: SEND_STATUSES.VALID,
|
|
}),
|
|
amountMode: AMOUNT_MODES.MAX,
|
|
},
|
|
});
|
|
const { getByText } = renderWithProvider(<AmountMaxButton />, store);
|
|
|
|
const expectedActions = [
|
|
{ type: 'send/updateAmountMode', payload: 'INPUT' },
|
|
];
|
|
|
|
fireEvent.click(getByText('Max'), { bubbles: true });
|
|
const actions = store.getActions();
|
|
expect(actions).toStrictEqual(expectedActions);
|
|
});
|
|
});
|
|
});
|
|
|