import { render, screen, waitFor } from '@testing-library/react'; import userEvent from '@testing-library/user-event'; import { DerivedFields } from './DerivedFields'; describe('DerivedFields', () => { let originalGetSelection: typeof window.getSelection; beforeAll(() => { originalGetSelection = window.getSelection; window.getSelection = () => null; }); afterAll(() => { window.getSelection = originalGetSelection; }); it('renders correctly when no fields', () => { render( {}} />); expect(screen.getByText('Add')).toBeInTheDocument(); expect(screen.queryByText(/example log message/)).not.toBeInTheDocument(); expect(screen.queryByTestId('derived-field')).not.toBeInTheDocument(); }); it('renders correctly when there are fields', async () => { render( {}} />); await waitFor(() => expect(screen.getAllByTestId('derived-field')).toHaveLength(2)); expect(screen.getByText('Add')).toBeInTheDocument(); expect(screen.getByText('Show example log message')).toBeInTheDocument(); }); it('adds a new field', async () => { const onChange = jest.fn(); render(); const addButton = await screen.findByText('Add'); await userEvent.click(addButton); await waitFor(() => expect(onChange).toHaveBeenCalledTimes(1)); }); it('removes a field', async () => { const onChange = jest.fn(); render(); await userEvent.click((await screen.findAllByTitle('Remove field'))[0]); await waitFor(() => expect(onChange).toHaveBeenCalledWith([testFields[1]])); }); it('validates duplicated field names', async () => { const repeatedFields = [ { matcherRegex: '', name: 'repeated', }, { matcherRegex: '', name: 'repeated', }, ]; render(); const inputs = await screen.findAllByPlaceholderText('Field name'); await userEvent.click(inputs[0]); expect(await screen.findAllByText('The name is already in use')).toHaveLength(2); }); it('does not validate empty names as repeated', async () => { const repeatedFields = [ { matcherRegex: '', name: '', }, { matcherRegex: '', name: '', }, ]; render(); const inputs = await screen.findAllByPlaceholderText('Field name'); await userEvent.click(inputs[0]); expect(screen.queryByText('The name is already in use')).not.toBeInTheDocument(); }); }); const testFields = [ { matcherRegex: 'regex1', name: 'test1', url: 'localhost1', }, { matcherRegex: 'regex2', name: 'test2', url: 'localhost2', }, ];