import React, { useState } from 'react'; import { act } from 'react-dom/test-utils'; import { Col, Row } from '..'; import mountTest from '../../../tests/shared/mountTest'; import rtlTest from '../../../tests/shared/rtlTest'; import { fireEvent, render } from '../../../tests/utils'; import useBreakpoint from '../hooks/useBreakpoint'; // Mock for `responsiveObserve` to test `unsubscribe` call jest.mock('../../_util/responsiveObserver', () => { const modules = jest.requireActual('../../_util/responsiveObserver'); const originHook = modules.default; const useMockResponsiveObserver = (...args: any[]) => { const entity = originHook(...args); if (!entity.unsubscribe.mocked) { const originUnsubscribe = entity.unsubscribe; entity.unsubscribe = (...uArgs: any[]) => { const inst = global as any; inst.unsubscribeCnt = (inst.unsubscribeCnt || 0) + 1; originUnsubscribe.call(entity, ...uArgs); }; entity.unsubscribe.mocked = true; } return entity; }; return { ...modules, __esModule: true, default: useMockResponsiveObserver, }; }); describe('Grid', () => { mountTest(Row); mountTest(Col); rtlTest(Row); rtlTest(Col); beforeEach(() => { (global as any).unsubscribeCnt = 0; }); it('should render Col', () => { const { asFragment } = render(); expect(asFragment().firstChild).toMatchSnapshot(); }); it('should render Row', () => { const { asFragment } = render(); expect(asFragment().firstChild).toMatchSnapshot(); }); it('when typeof gutter is object', () => { const { container } = render(); expect(container.querySelector('div')!.style.marginLeft).toEqual('-4px'); expect(container.querySelector('div')!.style.marginRight).toEqual('-4px'); }); it('when typeof gutter is object array', () => { const { container } = render( , ); expect(container.querySelector('div')!.style.marginLeft).toEqual('-4px'); expect(container.querySelector('div')!.style.marginRight).toEqual('-4px'); }); it('when typeof gutter is object array in large screen', () => { jest.spyOn(window, 'matchMedia').mockImplementation( (query) => ({ addListener: (cb: (e: { matches: boolean }) => void) => { cb({ matches: query === '(min-width: 1200px)' }); }, removeListener: jest.fn(), matches: query === '(min-width: 1200px)', } as any), ); const { container, asFragment } = render( , ); expect(asFragment().firstChild).toMatchSnapshot(); expect(container.querySelector('div')!.style.marginLeft).toEqual('-20px'); expect(container.querySelector('div')!.style.marginRight).toEqual('-20px'); expect(container.querySelector('div')!.style.marginTop).toEqual('-200px'); expect(container.querySelector('div')!.style.marginBottom).toEqual('-200px'); }); it('renders wrapped Col correctly', () => { const MyCol = () => ; const { asFragment } = render(
, ); expect(asFragment().firstChild).toMatchSnapshot(); }); it('useResponsiveObserver.unsubscribe should be called when unmounted', () => { const { unmount } = render(); const called: number = (global as any).unsubscribeCnt; unmount(); expect((global as any).unsubscribeCnt).toEqual(called + 1); }); it('should work correct when gutter is object', () => { const { container } = render(); expect(container.querySelector('div')!.style.marginLeft).toEqual('-10px'); expect(container.querySelector('div')!.style.marginRight).toEqual('-10px'); }); it('should work current when gutter is array', () => { const { container } = render(); expect(container.querySelector('div')!.style.marginLeft).toEqual('-8px'); expect(container.querySelector('div')!.style.marginRight).toEqual('-8px'); expect(container.querySelector('div')!.style.marginTop).toEqual('-10px'); expect(container.querySelector('div')!.style.marginBottom).toEqual('-10px'); }); // By jsdom mock, actual jsdom not implemented matchMedia // https://jestjs.io/docs/en/manual-mocks#mocking-methods-which-are-not-implemented-in-jsdom it('should work with useBreakpoint', () => { const matchMediaSpy = jest.spyOn(window, 'matchMedia'); matchMediaSpy.mockImplementation( (query) => ({ addListener: (cb: (e: { matches: boolean }) => void) => { cb({ matches: query === '(max-width: 575px)' }); }, removeListener: jest.fn(), matches: query === '(max-width: 575px)', } as any), ); let screensVar; function Demo() { const screens = useBreakpoint(); screensVar = screens; return
; } render(); expect(screensVar).toEqual({ xs: true, sm: false, md: false, lg: false, xl: false, xxl: false, }); }); it('should align by responsive align prop', () => { const matchMediaSpy = jest.spyOn(window, 'matchMedia'); matchMediaSpy.mockImplementation( (query) => ({ addListener: (cb: (e: { matches: boolean }) => void) => { cb({ matches: query === '(max-width: 575px)' }); }, removeListener: jest.fn(), matches: query === '(max-width: 575px)', } as any), ); const { container } = render(); expect(container.innerHTML).toContain('ant-row-middle'); const { container: container2 } = render(); expect(container2.innerHTML).toContain('ant-row-middle'); const { container: container3 } = render(); expect(container3.innerHTML).not.toContain('ant-row-middle'); }); it('should justify by responsive justify prop', () => { const matchMediaSpy = jest.spyOn(window, 'matchMedia'); matchMediaSpy.mockImplementation( (query) => ({ addListener: (cb: (e: { matches: boolean }) => void) => { cb({ matches: query === '(max-width: 575px)' }); }, removeListener: jest.fn(), matches: query === '(max-width: 575px)', } as any), ); const { container } = render(); expect(container.innerHTML).toContain('ant-row-center'); const { container: container2 } = render(); expect(container2.innerHTML).toContain('ant-row-center'); const { container: container3 } = render(); expect(container3.innerHTML).not.toContain('ant-row-center'); }); // https://github.com/ant-design/ant-design/issues/39690 it('Justify and align properties should reactive for Row', () => { const ReactiveTest = () => { const [justify, setjustify] = useState('start'); return ( <>
button1
button
setjustify('end')} /> ); }; const { container } = render(); expect(container.innerHTML).toContain('ant-row-start'); act(() => { fireEvent.click(container.querySelector('span')!); }); expect(container.innerHTML).toContain('ant-row-end'); }); it('The column spacing should be evenly spaced', () => { const { container } = render( col-1 col-2 , ); const row = container.querySelector('.ant-row-space-evenly'); expect(row).toBeTruthy(); expect(row && getComputedStyle(row).justifyContent).toEqual('space-evenly'); }); });