import { render, screen } from '@testing-library/react'; import userEvent from '@testing-library/user-event'; import { noop } from 'lodash'; import React from 'react'; import { SecondaryActions } from './SecondaryActions'; describe('SecondaryActions', () => { it('should render component with three buttons', () => { render( ); expect(screen.getByRole('button', { name: /Add row button/i })).toBeInTheDocument(); expect(screen.getByRole('button', { name: /Rich history button/i })).toBeInTheDocument(); expect(screen.getByRole('button', { name: /Query inspector button/i })).toBeInTheDocument(); }); it('should not render hidden elements', () => { render( ); expect(screen.queryByRole('button', { name: /Add row button/i })).not.toBeInTheDocument(); expect(screen.queryByRole('button', { name: /Rich history button/i })).not.toBeInTheDocument(); expect(screen.getByRole('button', { name: /Query inspector button/i })).toBeInTheDocument(); }); it('should disable add row button if addQueryRowButtonDisabled=true', () => { render( ); expect(screen.getByRole('button', { name: /Add row button/i })).toBeDisabled(); expect(screen.getByRole('button', { name: /Rich history button/i })).toBeInTheDocument(); expect(screen.getByRole('button', { name: /Query inspector button/i })).toBeInTheDocument(); }); it('should map click handlers correctly', async () => { const user = userEvent.setup(); const onClickAddRow = jest.fn(); const onClickHistory = jest.fn(); const onClickQueryInspector = jest.fn(); render( ); await user.click(screen.getByRole('button', { name: /Add row button/i })); expect(onClickAddRow).toBeCalledTimes(1); await user.click(screen.getByRole('button', { name: /Rich history button/i })); expect(onClickHistory).toBeCalledTimes(1); await user.click(screen.getByRole('button', { name: /Query inspector button/i })); expect(onClickQueryInspector).toBeCalledTimes(1); }); });