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.
62 lines
2.0 KiB
62 lines
2.0 KiB
3 years ago
|
import React from 'react';
|
||
|
import configureMockStore from 'redux-mock-store';
|
||
|
import thunk from 'redux-thunk';
|
||
|
|
||
|
import { fireEvent } from '@testing-library/react';
|
||
|
import { initialState, SEND_STATUSES } from '../../../../../ducks/send';
|
||
|
import { renderWithProvider } from '../../../../../../test/jest';
|
||
|
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)({
|
||
|
send: initialState,
|
||
|
gas: { basicEstimateStatus: 'LOADING' },
|
||
|
}),
|
||
|
);
|
||
|
expect(getByText('Max')).toBeTruthy();
|
||
|
});
|
||
|
|
||
|
it('should dispatch action to set mode to MAX', () => {
|
||
|
const store = configureMockStore(middleware)({
|
||
|
send: { ...initialState, status: SEND_STATUSES.VALID },
|
||
|
gas: { basicEstimateStatus: 'READY' },
|
||
|
});
|
||
|
const { getByText } = renderWithProvider(<AmountMaxButton />, store);
|
||
|
|
||
|
const expectedActions = [
|
||
|
{ type: 'send/updateAmountMode', payload: '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)({
|
||
|
send: {
|
||
|
...initialState,
|
||
|
status: SEND_STATUSES.VALID,
|
||
|
amount: { ...initialState.amount, mode: 'MAX' },
|
||
|
},
|
||
|
gas: { basicEstimateStatus: 'READY' },
|
||
|
});
|
||
|
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);
|
||
|
});
|
||
|
});
|
||
|
});
|