grafana/public/app/plugins/datasource/elasticsearch/hooks/useNextId.test.tsx
Giordano Ricci cdb4785496
Elasticsearch: Allow omitting field when metric supports inline script (#32839)
* Elasticsearch: Allow omitting field when metric supports inline script

* Add tests for MetricEditor to show a None option

* Add tests for useFields hook

* Alerting: allow elasticsearch metrics without field
2021-04-14 15:18:06 +01:00

37 lines
1.1 KiB
TypeScript

import React, { FunctionComponent } from 'react';
import { renderHook } from '@testing-library/react-hooks';
import { ElasticsearchProvider } from '../components/QueryEditor/ElasticsearchQueryContext';
import { useNextId } from './useNextId';
import { ElasticsearchQuery } from '../types';
import { getDefaultTimeRange } from '@grafana/data';
describe('useNextId', () => {
it('Should return the next available id', () => {
const query: ElasticsearchQuery = {
refId: 'A',
query: '',
metrics: [{ id: '1', type: 'avg' }],
bucketAggs: [{ id: '2', type: 'date_histogram' }],
};
const wrapper: FunctionComponent = ({ children }) => {
return (
<ElasticsearchProvider
query={query}
datasource={{} as any}
onChange={() => {}}
onRunQuery={() => {}}
range={getDefaultTimeRange()}
>
{children}
</ElasticsearchProvider>
);
};
const { result } = renderHook(() => useNextId(), {
wrapper,
});
expect(result.current).toBe('3');
});
});