2021-02-04 19:15:23 +01:00
|
|
|
import React from 'react';
|
|
|
|
import { shallow } from 'enzyme';
|
|
|
|
import sinon from 'sinon';
|
2021-03-16 22:00:08 +01:00
|
|
|
import CurrencyDisplay from '../../ui/currency-display';
|
|
|
|
import * as currencyHook from '../../../hooks/useCurrencyDisplay';
|
|
|
|
import * as currencyPrefHook from '../../../hooks/useUserPreferencedCurrency';
|
|
|
|
import UserPreferencedCurrencyDisplay from './user-preferenced-currency-display.component';
|
2020-05-12 21:07:35 +02:00
|
|
|
|
2021-04-15 20:01:46 +02:00
|
|
|
describe('UserPreferencedCurrencyDisplay Component', () => {
|
|
|
|
describe('rendering', () => {
|
|
|
|
beforeEach(() => {
|
2021-02-04 19:15:23 +01:00
|
|
|
sinon.stub(currencyHook, 'useCurrencyDisplay').returns(['1', {}]);
|
2020-11-03 00:41:28 +01:00
|
|
|
sinon
|
|
|
|
.stub(currencyPrefHook, 'useUserPreferencedCurrency')
|
2021-02-04 19:15:23 +01:00
|
|
|
.returns({ currency: 'ETH', decimals: 6 });
|
|
|
|
});
|
2021-04-15 20:01:46 +02:00
|
|
|
|
|
|
|
afterEach(() => {
|
|
|
|
sinon.restore();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should render properly', () => {
|
2021-02-04 19:15:23 +01:00
|
|
|
const wrapper = shallow(<UserPreferencedCurrencyDisplay />);
|
2018-10-17 01:03:29 +02:00
|
|
|
|
2021-04-15 20:01:46 +02:00
|
|
|
expect(wrapper).toHaveLength(1);
|
|
|
|
expect(wrapper.find(CurrencyDisplay)).toHaveLength(1);
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
2018-10-17 01:03:29 +02:00
|
|
|
|
2021-04-15 20:01:46 +02:00
|
|
|
it('should pass all props to the CurrencyDisplay child component', () => {
|
2018-10-17 01:03:29 +02:00
|
|
|
const wrapper = shallow(
|
2020-11-03 00:41:28 +01:00
|
|
|
<UserPreferencedCurrencyDisplay prop1 prop2="test" prop3={1} />,
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2018-10-17 01:03:29 +02:00
|
|
|
|
2021-04-15 20:01:46 +02:00
|
|
|
expect(wrapper).toHaveLength(1);
|
|
|
|
expect(wrapper.find(CurrencyDisplay)).toHaveLength(1);
|
|
|
|
expect(wrapper.find(CurrencyDisplay).props().prop1).toStrictEqual(true);
|
|
|
|
expect(wrapper.find(CurrencyDisplay).props().prop2).toStrictEqual('test');
|
|
|
|
expect(wrapper.find(CurrencyDisplay).props().prop3).toStrictEqual(1);
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|