/* MIT License Copyright (c) 2022 Looker Data Sciences, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ import React from 'react' import { renderWithTheme } from '@looker/components-test-utils' import type { IAPIMethods } from '@looker/sdk-rtl' import { fireEvent, screen } from '@testing-library/react' import { DashboardFilter } from './DashboardFilter' jest.mock('@looker/sdk', () => ({ ...jest.requireActual('@looker/sdk'), model_fieldname_suggestions: jest.fn((sdk: { get: () => any }) => sdk.get()), })) // eslint-disable-next-line import/first import { model_fieldname_suggestions } from '@looker/sdk' describe('DashboardFilter', () => { it('renders label', () => { const onChangeMock = jest.fn() renderWithTheme( ) expect(screen.getByText('Status')).toBeVisible() }) it('renders validation message', () => { const onChangeMock = jest.fn() renderWithTheme( ) expect(screen.getByText('Value required')).toBeVisible() }) it('calls onChange', () => { const onChangeMock = jest.fn() renderWithTheme( ) const cancelled = screen.getByText('cancelled') fireEvent.click(cancelled) expect(onChangeMock.mock.calls).toMatchInlineSnapshot(` Array [ Array [ "cancelled", ], ] `) }) it('handles undefined field (LookML filter)', () => { const onChangeMock = jest.fn() renderWithTheme( ) expect(screen.getByText('is in the last')).toBeVisible() expect(screen.getByText('30')).toBeVisible() expect(screen.getByText('days')).toBeVisible() }) describe('value', () => { it('uses default_value', () => { const onChangeMock = jest.fn() renderWithTheme( ) expect(screen.getByRole('option')).toHaveTextContent('complete') }) it('uses expression if available', () => { const onChangeMock = jest.fn() renderWithTheme( ) const values = screen.getAllByRole('option') expect(values[0]).toHaveTextContent('complete') expect(values[1]).toHaveTextContent('pending') }) }) describe('options', () => { it('uses field suggestions if available', () => { const onChangeMock = jest.fn() renderWithTheme( ) const values = screen.getAllByRole('button') expect(values[0]).toHaveTextContent('complete') expect(values[0]).toHaveAttribute('aria-pressed', 'true') expect(values[1]).toHaveTextContent('pending') expect(values[1]).toHaveAttribute('aria-pressed', 'true') expect(values[2]).toHaveTextContent('cancelled') expect(values[2]).toHaveAttribute('aria-pressed', 'false') }) it('uses field enumerations if available', () => { const onChangeMock = jest.fn() renderWithTheme( ) const values = screen.getAllByRole('button') expect(values[0]).toHaveTextContent('complete') expect(values[0]).toHaveAttribute('aria-pressed', 'true') expect(values[1]).toHaveTextContent('pending') expect(values[1]).toHaveAttribute('aria-pressed', 'true') expect(values[2]).toHaveTextContent('cancelled') expect(values[2]).toHaveAttribute('aria-pressed', 'false') }) it('fetches suggestions', async () => { const onChangeMock = jest.fn() const sdkOkMock = jest.fn((value) => Promise.resolve(value)) const sdkGetMock = jest.fn(() => ({ suggestions: ['complete', 'pending', 'cancelled'], })) const sdkMock = { ok: sdkOkMock, get: sdkGetMock, } as unknown as IAPIMethods renderWithTheme( ) const values = await screen.findAllByRole('button') expect(values[0]).toHaveTextContent('complete') expect(values[0]).toHaveAttribute('aria-pressed', 'true') expect(values[1]).toHaveTextContent('pending') expect(values[1]).toHaveAttribute('aria-pressed', 'true') expect(values[2]).toHaveTextContent('cancelled') expect(values[2]).toHaveAttribute('aria-pressed', 'false') expect(model_fieldname_suggestions).toHaveBeenCalledWith( { ok: sdkOkMock, get: sdkGetMock }, { field_name: 'orders.status', model_name: 'foo', term: '', view_name: 'orders', } ) }) it('shows fetch error message', async () => { const onChangeMock = jest.fn() const sdkMock = { ok: jest.fn((value) => value), get: jest.fn(() => { throw new Error() }), } as unknown as IAPIMethods renderWithTheme( ) expect(await screen.findByTestId('error-icon')).toBeVisible() }) }) })