mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-23 23:57:55 -05:00
94 lines
3.5 KiB
React
94 lines
3.5 KiB
React
|
import React from 'react';
|
||
|
import {shallowWithIntl} from '../../helpers/intl-helpers.jsx';
|
||
|
import {mountWithIntl} from '../../helpers/intl-helpers.jsx';
|
||
|
import MuteModal from '../../../src/components/modal/mute/modal';
|
||
|
import Modal from '../../../src/components/modal/base/modal';
|
||
|
|
||
|
|
||
|
describe('MuteModalTest', () => {
|
||
|
|
||
|
test('Mute Modal rendering', () => {
|
||
|
const component = shallowWithIntl(
|
||
|
<MuteModal />
|
||
|
);
|
||
|
expect(component.find('div.mute-modal-header').exists()).toEqual(true);
|
||
|
|
||
|
});
|
||
|
|
||
|
test('Mute Modal only shows next button on initial step', () => {
|
||
|
const component = mountWithIntl(
|
||
|
<MuteModal />
|
||
|
);
|
||
|
expect(component.find('div.mute-nav').exists()).toEqual(true);
|
||
|
expect(component.find('button.next-button').exists()).toEqual(true);
|
||
|
expect(component.find('button.next-button').getElements()[0].props.onClick)
|
||
|
.toEqual(component.instance().handleNext);
|
||
|
expect(component.find('button.close-button').exists()).toEqual(false);
|
||
|
expect(component.find('button.back-button').exists()).toEqual(false);
|
||
|
});
|
||
|
|
||
|
test('Mute Modal shows back & close button on last step', () => {
|
||
|
const component = mountWithIntl(
|
||
|
<MuteModal />
|
||
|
);
|
||
|
// Step 1 is the last step.
|
||
|
component.instance().setState({step: 1});
|
||
|
component.update();
|
||
|
|
||
|
expect(component.find('div.mute-nav').exists()).toEqual(true);
|
||
|
expect(component.find('button.next-button').exists()).toEqual(false);
|
||
|
expect(component.find('button.back-button').exists()).toEqual(true);
|
||
|
expect(component.find('button.back-button').getElements()[0].props.onClick)
|
||
|
.toEqual(component.instance().handlePrevious);
|
||
|
expect(component.find('button.close-button').exists()).toEqual(true);
|
||
|
expect(component.find('button.close-button').getElements()[0].props.onClick)
|
||
|
.toEqual(component.instance().props.onRequestClose);
|
||
|
});
|
||
|
|
||
|
test('Mute modal sends correct props to Modal', () => {
|
||
|
const closeFn = jest.fn();
|
||
|
const component = shallowWithIntl(
|
||
|
<MuteModal
|
||
|
onRequestClose={closeFn}
|
||
|
/>
|
||
|
);
|
||
|
const modal = component.find(Modal);
|
||
|
expect(modal).toHaveLength(1);
|
||
|
expect(modal.props().showCloseButton).toBe(false);
|
||
|
expect(modal.props().isOpen).toBe(true);
|
||
|
expect(modal.props().className).toBe('modal-mute');
|
||
|
expect(modal.props().onRequestClose).toBe(closeFn);
|
||
|
});
|
||
|
|
||
|
test('Mute modal handle next step', () => {
|
||
|
const closeFn = jest.fn();
|
||
|
const component = shallowWithIntl(
|
||
|
<MuteModal
|
||
|
onRequestClose={closeFn}
|
||
|
/>
|
||
|
);
|
||
|
expect(component.instance().state.step).toBe(0);
|
||
|
component.instance().handleNext();
|
||
|
expect(component.instance().state.step).toBe(1);
|
||
|
});
|
||
|
|
||
|
test('Mute modal handle previous step', () => {
|
||
|
const component = shallowWithIntl(
|
||
|
<MuteModal />
|
||
|
);
|
||
|
component.instance().setState({step: 1});
|
||
|
|
||
|
component.instance().handlePrevious();
|
||
|
expect(component.instance().state.step).toBe(0);
|
||
|
});
|
||
|
|
||
|
test('Mute modal handle previous step stops at 0', () => {
|
||
|
const component = shallowWithIntl(
|
||
|
<MuteModal />
|
||
|
);
|
||
|
component.instance().setState({step: 0});
|
||
|
component.instance().handlePrevious();
|
||
|
expect(component.instance().state.step).toBe(0);
|
||
|
});
|
||
|
});
|