import { h } from 'preact'; import * as Api from '../../api'; import * as CameraImage from '../../components/CameraImage'; import * as Mqtt from '../../api/mqtt'; import Cameras from '../Cameras'; import { fireEvent, render, screen } from '@testing-library/preact'; describe('Cameras Route', () => { let useConfigMock; beforeEach(() => { useConfigMock = jest.spyOn(Api, 'useConfig').mockImplementation(() => ({ data: { cameras: { front: { name: 'front', objects: { track: ['taco', 'cat', 'dog'] } }, side: { name: 'side', objects: { track: ['taco', 'cat', 'dog'] } }, }, }, status: 'loaded', })); jest.spyOn(Api, 'useApiHost').mockImplementation(() => 'http://base-url.local:5000'); jest.spyOn(CameraImage, 'default').mockImplementation(() =>
); jest.spyOn(Mqtt, 'useMqtt').mockImplementation(() => ({ value: { payload: 'OFF' }, send: jest.fn() })); }); test('shows an ActivityIndicator if not yet loaded', async () => { useConfigMock.mockReturnValueOnce(() => ({ status: 'loading' })); render(); expect(screen.queryByLabelText('Loading…')).toBeInTheDocument(); }); test('shows cameras', async () => { render(); expect(screen.queryByLabelText('Loading…')).not.toBeInTheDocument(); expect(screen.queryByText('front')).toBeInTheDocument(); expect(screen.queryByText('front').closest('a')).toHaveAttribute('href', '/cameras/front'); expect(screen.queryByText('side')).toBeInTheDocument(); expect(screen.queryByText('side').closest('a')).toHaveAttribute('href', '/cameras/side'); }); test('buttons toggle detect, clips, and snapshots', async () => { const sendDetect = jest.fn(); const sendClips = jest.fn(); const sendSnapshots = jest.fn(); jest.spyOn(Mqtt, 'useDetectState').mockImplementation(() => { return { payload: 'ON', send: sendDetect }; }); jest.spyOn(Mqtt, 'useClipsState').mockImplementation(() => { return { payload: 'OFF', send: sendClips }; }); jest.spyOn(Mqtt, 'useSnapshotsState').mockImplementation(() => { return { payload: 'ON', send: sendSnapshots }; }); render(); fireEvent.click(screen.getAllByLabelText('Toggle detect off')[0]); expect(sendDetect).toHaveBeenCalledWith('OFF'); expect(sendDetect).toHaveBeenCalledTimes(1); fireEvent.click(screen.getAllByLabelText('Toggle snapshots off')[0]); expect(sendSnapshots).toHaveBeenCalledWith('OFF'); fireEvent.click(screen.getAllByLabelText('Toggle clips on')[0]); expect(sendClips).toHaveBeenCalledWith('ON'); expect(sendDetect).toHaveBeenCalledTimes(1); expect(sendSnapshots).toHaveBeenCalledTimes(1); expect(sendClips).toHaveBeenCalledTimes(1); }); });