import React from 'react';
import configureMockStore from 'redux-mock-store';
import { within } from '@testing-library/react';
import { renderWithProvider } from '../../../../test/jest/rendering';
import TransactionBreakdown from '.';
function getActualDataFrom(transactionBreakdownRows) {
return transactionBreakdownRows.map((transactionBreakdownRow) => {
const title = within(transactionBreakdownRow).getByTestId(
'transaction-breakdown-row-title',
);
const value = within(transactionBreakdownRow).getByTestId(
'transaction-breakdown-row-value',
);
return [title.textContent, value.textContent];
});
}
describe('TransactionBreakdown', () => {
const store = configureMockStore()({
metamask: {
nativeCurrency: null,
preferences: {},
provider: {
chainId: null,
},
},
});
describe('with a typical non-EIP-1559 transaction', () => {
it('renders properly', () => {
const { getAllByTestId } = renderWithProvider(
,
store,
);
expect(
getActualDataFrom(getAllByTestId('transaction-breakdown-row')),
).toStrictEqual([
['Nonce', '29'],
['Amount', '-0.01 ETH'],
['Gas Limit (units)', '46890'],
['Gas price', '2.467043803'],
['Total', '0.01011568ETH'],
]);
});
});
describe('with a typical EIP-1559 transaction', () => {
it('renders properly', () => {
const { getAllByTestId } = renderWithProvider(
,
store,
);
expect(
getActualDataFrom(getAllByTestId('transaction-breakdown-row')),
).toStrictEqual([
['Nonce', '29'],
['Amount', '-0.01 ETH'],
['Gas Limit (units)', '46890'],
['Gas Used (units)', '31260'],
['Base Fee (GWEI)', '0.000000007'],
['Priority Fee (GWEI)', '2.467043796'],
['Total Gas Fee', '0.000077ETH'],
['Max Fee Per Gas', '0.000000003ETH'],
['Total', '0.01007712ETH'],
]);
});
});
});