123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234 |
- import {OrganizationFixture} from 'sentry-fixture/organization';
- import {render, screen, userEvent} from 'sentry-test/reactTestingLibrary';
- import {useLocalStorageState} from 'sentry/utils/useLocalStorageState';
- import {useLocation} from 'sentry/utils/useLocation';
- import {useNavigate} from 'sentry/utils/useNavigate';
- import {useSpanMetrics} from 'sentry/views/insights/common/queries/useDiscover';
- import {DatabaseSystemSelector} from 'sentry/views/insights/database/components/databaseSystemSelector';
- import {SpanMetricsField} from 'sentry/views/insights/types';
- jest.mock('sentry/views/insights/common/queries/useDiscover', () => ({
- useSpanMetrics: jest.fn(),
- }));
- jest.mock('sentry/utils/useLocalStorageState', () => ({
- useLocalStorageState: jest.fn(),
- }));
- jest.mock('sentry/utils/useLocation', () => ({
- useLocation: jest.fn(),
- }));
- jest.mock('sentry/utils/useNavigate', () => ({
- useNavigate: jest.fn(),
- }));
- const mockUseLocalStorageState = jest.mocked(useLocalStorageState);
- const mockUseSpanMetrics = jest.mocked(useSpanMetrics);
- const mockUseLocation = jest.mocked(useLocation);
- const mockUseNavigate = jest.mocked(useNavigate);
- describe('DatabaseSystemSelector', function () {
- const organization = OrganizationFixture();
- afterAll(() => {
- jest.clearAllMocks();
- });
- beforeEach(() => {
- mockUseLocation.mockReturnValue({
- query: {project: ['1']},
- pathname: '',
- search: '',
- hash: '',
- state: undefined,
- action: 'POP',
- key: '',
- });
- });
- it('is disabled and does not select a system if there are none available', async function () {
- const mockSetState = jest.fn();
- mockUseLocalStorageState.mockReturnValue(['', mockSetState]);
- mockUseSpanMetrics.mockReturnValue({
- data: [],
- isLoading: false,
- isError: false,
- } as any);
- render(<DatabaseSystemSelector />, {organization});
- expect(mockSetState).not.toHaveBeenCalled();
- const dropdownButton = await screen.findByRole('button');
- expect(dropdownButton).toBeInTheDocument();
- expect(dropdownButton).toHaveTextContent('DB SystemNone');
- });
- it('is disabled when only one database system is present and shows that system as selected', async function () {
- const mockSetState = jest.fn();
- mockUseLocalStorageState.mockReturnValue(['', mockSetState]);
- mockUseSpanMetrics.mockReturnValue({
- data: [
- {
- 'span.system': 'postgresql',
- 'count()': 1000,
- },
- ],
- isLoading: false,
- isError: false,
- } as any);
- render(<DatabaseSystemSelector />, {organization});
- const dropdownSelector = await screen.findByRole('button');
- expect(dropdownSelector).toBeDisabled();
- expect(mockSetState).toHaveBeenCalledWith('postgresql');
- });
- it('renders all database system options correctly', async function () {
- mockUseSpanMetrics.mockReturnValue({
- data: [
- {
- 'span.system': 'postgresql',
- 'count()': 1000,
- },
- {
- 'span.system': 'mongodb',
- 'count()': 500,
- },
- {
- 'span.system': 'chungusdb',
- 'count()': 200,
- },
- ],
- isLoading: false,
- isError: false,
- } as any);
- render(<DatabaseSystemSelector />, {organization});
- const dropdownSelector = await screen.findByRole('button');
- expect(dropdownSelector).toBeEnabled();
- expect(mockUseSpanMetrics).toHaveBeenCalled();
- const dropdownButton = await screen.findByRole('button');
- expect(dropdownButton).toBeInTheDocument();
- await userEvent.click(dropdownButton);
- const dropdownOptionLabels = await screen.findAllByTestId('menu-list-item-label');
- expect(dropdownOptionLabels[0]).toHaveTextContent('PostgreSQL');
- expect(dropdownOptionLabels[1]).toHaveTextContent('MongoDB');
- // chungusdb does not exist, so we do not expect this option to have casing
- expect(dropdownOptionLabels[2]).toHaveTextContent('chungusdb');
- });
- it('chooses the currently selected system from localStorage', async function () {
- mockUseLocalStorageState.mockReturnValue(['mongodb', () => {}]);
- mockUseSpanMetrics.mockReturnValue({
- data: [
- {
- 'span.system': 'postgresql',
- 'count()': 1000,
- },
- {
- 'span.system': 'mongodb',
- 'count()': 500,
- },
- {
- 'span.system': 'chungusdb',
- 'count()': 200,
- },
- ],
- isLoading: false,
- isError: false,
- } as any);
- render(<DatabaseSystemSelector />, {organization});
- expect(await screen.findByText('MongoDB')).toBeInTheDocument();
- });
- it('does not set the value from localStorage if the value is invalid', async function () {
- const mockSetState = jest.fn();
- mockUseLocalStorageState.mockReturnValue(['chungusdb', mockSetState]);
- mockUseSpanMetrics.mockReturnValue({
- data: [
- {
- 'span.system': 'postgresql',
- 'count()': 1000,
- },
- ],
- isLoading: false,
- isError: false,
- } as any);
- render(<DatabaseSystemSelector />, {organization});
- const dropdownSelector = await screen.findByRole('button');
- expect(dropdownSelector).toBeInTheDocument();
- expect(mockSetState).not.toHaveBeenCalledWith('chungusdb');
- });
- it('prioritizes the system set in query parameters but does not replace localStorage value until an option is clicked', async function () {
- const {SPAN_SYSTEM} = SpanMetricsField;
- const mockNavigate = jest.fn();
- mockUseNavigate.mockReturnValue(mockNavigate);
- mockUseLocation.mockReturnValue({
- query: {project: ['1'], [SPAN_SYSTEM]: 'mongodb'},
- pathname: '',
- search: '',
- hash: '',
- state: undefined,
- action: 'POP',
- key: '',
- });
- mockUseSpanMetrics.mockReturnValue({
- data: [
- {
- 'span.system': 'postgresql',
- 'count()': 1000,
- },
- {
- 'span.system': 'mongodb',
- 'count()': 500,
- },
- ],
- isLoading: false,
- isError: false,
- } as any);
- const mockSetState = jest.fn();
- mockUseLocalStorageState.mockReturnValue(['postgresql', mockSetState]);
- render(<DatabaseSystemSelector />, {organization});
- const dropdownSelector = await screen.findByRole('button');
- expect(dropdownSelector).toHaveTextContent('DB SystemMongoDB');
- expect(mockSetState).not.toHaveBeenCalledWith('mongodb');
- // Now that it has been confirmed that following a URL does not reset localStorage state, confirm that
- // clicking a different option will update both the state and the URL
- await userEvent.click(dropdownSelector);
- const dropdownOptionLabels = await screen.findAllByTestId('menu-list-item-label');
- expect(dropdownOptionLabels[0]).toHaveTextContent('PostgreSQL');
- expect(dropdownOptionLabels[1]).toHaveTextContent('MongoDB');
- await userEvent.click(dropdownOptionLabels[0]);
- expect(dropdownSelector).toHaveTextContent('DB SystemPostgreSQL');
- expect(mockSetState).toHaveBeenCalledWith('postgresql');
- expect(mockNavigate).toHaveBeenCalledWith({
- action: 'POP',
- hash: '',
- key: '',
- pathname: '',
- query: {project: ['1'], 'span.system': 'postgresql'},
- search: '',
- state: undefined,
- });
- });
- });
|