forked from elastic/kibana
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Serverless][DataUsage] Data usage UX/API updates (elastic#203465)
- Loading branch information
1 parent
7803168
commit b433119
Showing
24 changed files
with
878 additions
and
232 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
124 changes: 124 additions & 0 deletions
124
.../platform/plugins/private/data_usage/public/app/components/filters/charts_filter.test.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,124 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License | ||
* 2.0; you may not use this file except in compliance with the Elastic License | ||
* 2.0. | ||
*/ | ||
import React from 'react'; | ||
import { TestProvider } from '../../../../common/test_utils'; | ||
import { render, type RenderResult } from '@testing-library/react'; | ||
import userEvent, { type UserEvent } from '@testing-library/user-event'; | ||
import { ChartsFilter, type ChartsFilterProps } from './charts_filter'; | ||
import { FilterName } from '../../hooks'; | ||
import { mockUseKibana, generateDataStreams } from '../../mocks'; | ||
|
||
const mockUseLocation = jest.fn(() => ({ pathname: '/' })); | ||
jest.mock('react-router-dom', () => ({ | ||
...jest.requireActual('react-router-dom'), | ||
useLocation: () => mockUseLocation(), | ||
useHistory: jest.fn().mockReturnValue({ | ||
push: jest.fn(), | ||
listen: jest.fn(), | ||
location: { | ||
search: '', | ||
}, | ||
}), | ||
})); | ||
|
||
jest.mock('@kbn/kibana-react-plugin/public', () => { | ||
const original = jest.requireActual('@kbn/kibana-react-plugin/public'); | ||
return { | ||
...original, | ||
useKibana: () => mockUseKibana, | ||
}; | ||
}); | ||
|
||
describe('Charts Filters', () => { | ||
let user: UserEvent; | ||
const testId = 'test'; | ||
const testIdFilter = `${testId}-filter`; | ||
|
||
const defaultProps = { | ||
filterOptions: { | ||
filterName: 'dataStreams' as FilterName, | ||
isFilterLoading: false, | ||
appendOptions: {}, | ||
selectedOptions: [], | ||
options: generateDataStreams(8).map((ds) => ds.name), | ||
onChangeFilterOptions: jest.fn(), | ||
}, | ||
}; | ||
|
||
let renderComponent: (props: ChartsFilterProps) => RenderResult; | ||
|
||
beforeAll(() => { | ||
jest.useFakeTimers(); | ||
}); | ||
|
||
afterAll(() => { | ||
jest.useRealTimers(); | ||
}); | ||
|
||
beforeEach(() => { | ||
jest.clearAllMocks(); | ||
renderComponent = (props: ChartsFilterProps) => | ||
render( | ||
<TestProvider> | ||
<ChartsFilter data-test-subj={testIdFilter} {...props} /> | ||
</TestProvider> | ||
); | ||
user = userEvent.setup({ advanceTimers: jest.advanceTimersByTime, pointerEventsCheck: 0 }); | ||
}); | ||
|
||
it('renders data streams filter with all options selected', async () => { | ||
const { getByTestId, getAllByTestId } = renderComponent(defaultProps); | ||
expect(getByTestId(`${testIdFilter}-dataStreams-popoverButton`)).toBeTruthy(); | ||
|
||
const filterButton = getByTestId(`${testIdFilter}-dataStreams-popoverButton`); | ||
expect(filterButton).toBeTruthy(); | ||
await user.click(filterButton); | ||
const allFilterOptions = getAllByTestId('dataStreams-filter-option'); | ||
|
||
// checked options | ||
const checkedOptions = allFilterOptions.filter( | ||
(option) => option.getAttribute('aria-checked') === 'true' | ||
); | ||
expect(checkedOptions).toHaveLength(8); | ||
}); | ||
|
||
it('renders data streams filter with 50 options selected when more than 50 items in the filter', async () => { | ||
const { getByTestId } = renderComponent({ | ||
...defaultProps, | ||
filterOptions: { | ||
...defaultProps.filterOptions, | ||
options: generateDataStreams(55).map((ds) => ds.name), | ||
}, | ||
}); | ||
expect(getByTestId(`${testIdFilter}-dataStreams-popoverButton`)).toBeTruthy(); | ||
|
||
const toggleFilterButton = getByTestId(`${testIdFilter}-dataStreams-popoverButton`); | ||
expect(toggleFilterButton).toBeTruthy(); | ||
expect(toggleFilterButton).toHaveTextContent('Data streams50'); | ||
expect( | ||
toggleFilterButton.querySelector('.euiNotificationBadge')?.getAttribute('aria-label') | ||
).toBe('50 active filters'); | ||
}); | ||
|
||
it('renders data streams filter with no options selected and select all is disabled', async () => { | ||
const { getByTestId, queryByTestId } = renderComponent({ | ||
...defaultProps, | ||
filterOptions: { | ||
...defaultProps.filterOptions, | ||
options: [], | ||
}, | ||
}); | ||
expect(getByTestId(`${testIdFilter}-dataStreams-popoverButton`)).toBeTruthy(); | ||
|
||
const filterButton = getByTestId(`${testIdFilter}-dataStreams-popoverButton`); | ||
expect(filterButton).toBeTruthy(); | ||
await user.click(filterButton); | ||
expect(queryByTestId('dataStreams-filter-option')).toBeFalsy(); | ||
expect(getByTestId('dataStreams-group-label')).toBeTruthy(); | ||
expect(getByTestId(`${testIdFilter}-dataStreams-selectAllButton`)).toBeDisabled(); | ||
}); | ||
}); |
Oops, something went wrong.