-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Add unit test for alerts table * [CI] Auto-commit changed files from 'node scripts/precommit_hook.js --ref HEAD~1..HEAD --fix' * Fix tests * [CI] Auto-commit changed files from 'node scripts/precommit_hook.js --ref HEAD~1..HEAD --fix' Co-authored-by: kibanamachine <[email protected]> (cherry picked from commit 4de9d55) Co-authored-by: Katerina Patticha <[email protected]>
- Loading branch information
1 parent
d9c9ee0
commit 8e79a2e
Showing
1 changed file
with
166 additions
and
0 deletions.
There are no files selected for viewing
166 changes: 166 additions & 0 deletions
166
x-pack/plugins/apm/public/components/app/alerts_overview/alerts_overview_table.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,166 @@ | ||
/* | ||
* 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 { render, waitFor, act } from '@testing-library/react'; | ||
import { MemoryRouter } from 'react-router-dom'; | ||
import React, { ReactNode } from 'react'; | ||
import { MockApmPluginContextWrapper } from '../../../context/apm_plugin/mock_apm_plugin_context'; | ||
import * as useApmParamsHooks from '../../../hooks/use_apm_params'; | ||
import { createKibanaReactContext } from '@kbn/kibana-react-plugin/public'; | ||
import { CoreStart } from '@kbn/core/public'; | ||
import { AlertsOverview } from '.'; | ||
|
||
const getAlertsStateTableMock = jest.fn(); | ||
|
||
function Wrapper({ children }: { children?: ReactNode }) { | ||
const KibanaReactContext = createKibanaReactContext({ | ||
triggersActionsUi: { | ||
getAlertsStateTable: getAlertsStateTableMock.mockReturnValue( | ||
<div data-test-subj="alerts-table" /> | ||
), | ||
alertsTableConfigurationRegistry: '', | ||
}, | ||
} as Partial<CoreStart>); | ||
|
||
return ( | ||
<MemoryRouter> | ||
<KibanaReactContext.Provider> | ||
<MockApmPluginContextWrapper>{children}</MockApmPluginContextWrapper> | ||
</KibanaReactContext.Provider> | ||
</MemoryRouter> | ||
); | ||
} | ||
|
||
const renderOptions = { wrapper: Wrapper }; | ||
|
||
describe('AlertsTable', () => { | ||
beforeEach(() => { | ||
jest.spyOn(useApmParamsHooks as any, 'useApmParams').mockReturnValue({ | ||
path: { | ||
serviceName: 'opbeans', | ||
}, | ||
query: { | ||
rangeFrom: 'now-24h', | ||
rangeTo: 'now', | ||
environment: 'testing', | ||
}, | ||
}); | ||
jest.clearAllMocks(); | ||
}); | ||
|
||
it('renders alerts table', async () => { | ||
const { getByTestId } = render(<AlertsOverview />, renderOptions); | ||
|
||
await waitFor(async () => { | ||
expect(getByTestId('alerts-table')).toBeTruthy(); | ||
}); | ||
}); | ||
it('should call alerts table with correct propts', async () => { | ||
act(() => { | ||
render(<AlertsOverview />, renderOptions); | ||
}); | ||
|
||
await waitFor(async () => { | ||
expect(getAlertsStateTableMock).toHaveBeenCalledWith( | ||
{ | ||
alertsTableConfigurationRegistry: '', | ||
id: 'service-overview-alerts', | ||
configurationId: 'observability', | ||
featureIds: ['apm'], | ||
query: { | ||
bool: { | ||
filter: [ | ||
{ | ||
term: { 'service.name': 'opbeans' }, | ||
}, | ||
{ | ||
term: { 'service.environment': 'testing' }, | ||
}, | ||
], | ||
}, | ||
}, | ||
showExpandToDetails: false, | ||
}, | ||
{} | ||
); | ||
}); | ||
}); | ||
|
||
it('should call alerts table with active filter', async () => { | ||
const { getByTestId } = render(<AlertsOverview />, renderOptions); | ||
|
||
await act(async () => { | ||
const inputEl = getByTestId('active'); | ||
inputEl.click(); | ||
}); | ||
|
||
await waitFor(async () => { | ||
expect(getAlertsStateTableMock).toHaveBeenLastCalledWith( | ||
{ | ||
alertsTableConfigurationRegistry: '', | ||
id: 'service-overview-alerts', | ||
configurationId: 'observability', | ||
featureIds: ['apm'], | ||
query: { | ||
bool: { | ||
filter: [ | ||
{ | ||
term: { 'service.name': 'opbeans' }, | ||
}, | ||
{ | ||
term: { 'kibana.alert.status': 'active' }, | ||
}, | ||
{ | ||
term: { 'service.environment': 'testing' }, | ||
}, | ||
], | ||
}, | ||
}, | ||
showExpandToDetails: false, | ||
}, | ||
{} | ||
); | ||
}); | ||
}); | ||
|
||
it('should call alerts table with recovered filter', async () => { | ||
const { getByTestId } = render(<AlertsOverview />, renderOptions); | ||
|
||
await act(async () => { | ||
const inputEl = getByTestId('recovered'); | ||
inputEl.click(); | ||
}); | ||
|
||
await waitFor(async () => { | ||
expect(getAlertsStateTableMock).toHaveBeenLastCalledWith( | ||
{ | ||
alertsTableConfigurationRegistry: '', | ||
id: 'service-overview-alerts', | ||
configurationId: 'observability', | ||
featureIds: ['apm'], | ||
query: { | ||
bool: { | ||
filter: [ | ||
{ | ||
term: { 'service.name': 'opbeans' }, | ||
}, | ||
{ | ||
term: { 'kibana.alert.status': 'recovered' }, | ||
}, | ||
{ | ||
term: { 'service.environment': 'testing' }, | ||
}, | ||
], | ||
}, | ||
}, | ||
showExpandToDetails: false, | ||
}, | ||
{} | ||
); | ||
}); | ||
}); | ||
}); |