| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- import React from 'react';
- import { shallow } from 'enzyme';
- import { Props, TeamList } from './TeamList';
- import { NavModel, Team } from '../../types';
- import { getMockTeam, getMultipleMockTeams } from './__mocks__/teamMocks';
- const setup = (propOverrides?: object) => {
- const props: Props = {
- navModel: {
- main: {
- text: 'Configuration'
- },
- node: {
- text: 'Team List'
- }
- } as NavModel,
- teams: [] as Team[],
- loadTeams: jest.fn(),
- deleteTeam: jest.fn(),
- setSearchQuery: jest.fn(),
- searchQuery: '',
- teamsCount: 0,
- hasFetched: false,
- };
- Object.assign(props, propOverrides);
- const wrapper = shallow(<TeamList {...props} />);
- const instance = wrapper.instance() as TeamList;
- return {
- wrapper,
- instance,
- };
- };
- describe('Render', () => {
- it('should render component', () => {
- const { wrapper } = setup();
- expect(wrapper).toMatchSnapshot();
- });
- it('should render teams table', () => {
- const { wrapper } = setup({
- teams: getMultipleMockTeams(5),
- teamsCount: 5,
- hasFetched: true,
- });
- expect(wrapper).toMatchSnapshot();
- });
- });
- describe('Life cycle', () => {
- it('should call loadTeams', () => {
- const { instance } = setup();
- instance.componentDidMount();
- expect(instance.props.loadTeams).toHaveBeenCalled();
- });
- });
- describe('Functions', () => {
- describe('Delete team', () => {
- it('should call delete team', () => {
- const { instance } = setup();
- instance.deleteTeam(getMockTeam());
- expect(instance.props.deleteTeam).toHaveBeenCalledWith(1);
- });
- });
- describe('on search query change', () => {
- it('should call setSearchQuery', () => {
- const { instance } = setup();
- const mockEvent = { target: { value: 'test' } };
- instance.onSearchQueryChange(mockEvent);
- expect(instance.props.setSearchQuery).toHaveBeenCalledWith('test');
- });
- });
- });
|