D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
usr
/
share
/
grafana
/
public
/
app
/
features
/
alerting
/
unified
/
state
/
Filename :
AlertmanagerContext.test.tsx
back
Copy
import { renderHook } from '@testing-library/react'; import { createMemoryHistory } from 'history'; import React from 'react'; import { MemoryRouter, Router } from 'react-router-dom'; import store from 'app/core/store'; import * as useAlertManagerSources from '../hooks/useAlertManagerSources'; import { ALERTMANAGER_NAME_LOCAL_STORAGE_KEY } from '../utils/constants'; import { AlertManagerDataSource, GRAFANA_RULES_SOURCE_NAME } from '../utils/datasource'; import { AlertmanagerProvider, useAlertmanager } from './AlertmanagerContext'; const grafanaAm: AlertManagerDataSource = { name: GRAFANA_RULES_SOURCE_NAME, imgUrl: '', }; const externalAmProm: AlertManagerDataSource = { name: 'PrometheusAm', imgUrl: '', }; const externalAmMimir: AlertManagerDataSource = { name: 'MimirAm', imgUrl: '', }; describe('useAlertmanager', () => { it('Should return undefined alert manager name when there are no available alert managers', () => { jest.spyOn(useAlertManagerSources, 'useAlertManagersByPermission').mockReturnValueOnce([]); const wrapper = ({ children }: React.PropsWithChildren) => ( <MemoryRouter> <AlertmanagerProvider accessType="instance">{children}</AlertmanagerProvider> </MemoryRouter> ); const { result } = renderHook(() => useAlertmanager(), { wrapper }); expect(result.current.selectedAlertmanager).toBe(undefined); }); it('Should return Grafana AM when it is available and no alert manager query param exists', () => { jest.spyOn(useAlertManagerSources, 'useAlertManagersByPermission').mockReturnValueOnce([grafanaAm]); const wrapper = ({ children }: React.PropsWithChildren) => ( <MemoryRouter> <AlertmanagerProvider accessType="instance">{children}</AlertmanagerProvider> </MemoryRouter> ); const { result } = renderHook(() => useAlertmanager(), { wrapper }); expect(result.current.selectedAlertmanager).toBe(grafanaAm.name); }); it('Should return alert manager included in the query param when available', () => { jest.spyOn(useAlertManagerSources, 'useAlertManagersByPermission').mockReturnValueOnce([externalAmProm]); const history = createMemoryHistory(); history.push({ search: `alertmanager=${externalAmProm.name}` }); const wrapper = ({ children }: React.PropsWithChildren) => ( <Router history={history}> <AlertmanagerProvider accessType="instance">{children}</AlertmanagerProvider> </Router> ); const { result } = renderHook(() => useAlertmanager(), { wrapper }); expect(result.current.selectedAlertmanager).toBe(externalAmProm.name); }); it('Should return undefined if alert manager included in the query is not available', () => { jest.spyOn(useAlertManagerSources, 'useAlertManagersByPermission').mockReturnValueOnce([]); const history = createMemoryHistory(); history.push({ search: `alertmanager=Not available external AM` }); const wrapper = ({ children }: React.PropsWithChildren) => ( <Router history={history}> <AlertmanagerProvider accessType="instance">{children}</AlertmanagerProvider> </Router> ); const { result } = renderHook(() => useAlertmanager(), { wrapper }); expect(result.current.selectedAlertmanager).toBe(undefined); }); it('Should return alert manager from store if available and query is empty', () => { jest.spyOn(useAlertManagerSources, 'useAlertManagersByPermission').mockReturnValueOnce([externalAmProm]); const wrapper = ({ children }: React.PropsWithChildren) => ( <MemoryRouter> <AlertmanagerProvider accessType="instance">{children}</AlertmanagerProvider> </MemoryRouter> ); store.set(ALERTMANAGER_NAME_LOCAL_STORAGE_KEY, externalAmProm.name); const { result } = renderHook(() => useAlertmanager(), { wrapper }); expect(result.current.selectedAlertmanager).toBe(externalAmProm.name); }); it('Should prioritize the alert manager from query over store', () => { jest .spyOn(useAlertManagerSources, 'useAlertManagersByPermission') .mockReturnValueOnce([externalAmProm, externalAmMimir]); const history = createMemoryHistory(); history.push({ search: `alertmanager=${externalAmProm.name}` }); const wrapper = ({ children }: React.PropsWithChildren) => ( <Router history={history}> <AlertmanagerProvider accessType="instance">{children}</AlertmanagerProvider> </Router> ); store.set(ALERTMANAGER_NAME_LOCAL_STORAGE_KEY, externalAmMimir.name); const { result } = renderHook(() => useAlertmanager(), { wrapper }); expect(result.current.selectedAlertmanager).toBe(externalAmProm.name); }); });