mirror of
https://github.com/grafana/grafana.git
synced 2025-02-15 10:03:33 -06:00
* Elasticsearch: Remove support for versions after their EOL * Update docs * Remove old versions from config * Update pkg/tsdb/elasticsearch/elasticsearch.go Co-authored-by: Gábor Farkas <gabor.farkas@gmail.com> * Fix tests * Fix typecheck errors Co-authored-by: Gábor Farkas <gabor.farkas@gmail.com>
82 lines
3.1 KiB
TypeScript
82 lines
3.1 KiB
TypeScript
import { render, screen } from '@testing-library/react';
|
|
import React from 'react';
|
|
import selectEvent from 'react-select-event';
|
|
|
|
import { ElasticDetails } from './ElasticDetails';
|
|
import { createDefaultConfigOptions } from './mocks';
|
|
|
|
describe('ElasticDetails', () => {
|
|
describe('Max concurrent Shard Requests', () => {
|
|
it('should render "Max concurrent Shard Requests" if version >= 5.6.0', () => {
|
|
render(<ElasticDetails onChange={() => {}} value={createDefaultConfigOptions({ esVersion: '5.6.0' })} />);
|
|
expect(screen.getByLabelText('Max concurrent Shard Requests')).toBeInTheDocument();
|
|
});
|
|
|
|
it('should not render "Max concurrent Shard Requests" if version < 5.6.0', () => {
|
|
render(<ElasticDetails onChange={() => {}} value={createDefaultConfigOptions({ esVersion: '5.0.0' })} />);
|
|
expect(screen.queryByLabelText('Max concurrent Shard Requests')).not.toBeInTheDocument();
|
|
});
|
|
});
|
|
|
|
it('should change database on interval change when not set explicitly', async () => {
|
|
const onChangeMock = jest.fn();
|
|
render(<ElasticDetails onChange={onChangeMock} value={createDefaultConfigOptions()} />);
|
|
const selectEl = screen.getByLabelText('Pattern');
|
|
|
|
await selectEvent.select(selectEl, 'Daily', { container: document.body });
|
|
|
|
expect(onChangeMock).toHaveBeenLastCalledWith(
|
|
expect.objectContaining({
|
|
database: '[logstash-]YYYY.MM.DD',
|
|
jsonData: expect.objectContaining({ interval: 'Daily' }),
|
|
})
|
|
);
|
|
});
|
|
|
|
it('should change database on interval change if pattern is from example', async () => {
|
|
const onChangeMock = jest.fn();
|
|
const options = createDefaultConfigOptions();
|
|
options.database = '[logstash-]YYYY.MM.DD.HH';
|
|
render(<ElasticDetails onChange={onChangeMock} value={options} />);
|
|
const selectEl = screen.getByLabelText('Pattern');
|
|
|
|
await selectEvent.select(selectEl, 'Monthly', { container: document.body });
|
|
|
|
expect(onChangeMock).toHaveBeenLastCalledWith(
|
|
expect.objectContaining({
|
|
database: '[logstash-]YYYY.MM',
|
|
jsonData: expect.objectContaining({ interval: 'Monthly' }),
|
|
})
|
|
);
|
|
});
|
|
|
|
describe('version change', () => {
|
|
const testCases = [{ version: '7.10+', maxConcurrentShardRequests: 6, expectedMaxConcurrentShardRequests: 6 }];
|
|
|
|
testCases.forEach((tc) => {
|
|
const onChangeMock = jest.fn();
|
|
it(`sets maxConcurrentShardRequests=${tc.expectedMaxConcurrentShardRequests} if version=${tc.version},`, async () => {
|
|
render(
|
|
<ElasticDetails
|
|
onChange={onChangeMock}
|
|
value={createDefaultConfigOptions({
|
|
maxConcurrentShardRequests: tc.maxConcurrentShardRequests,
|
|
esVersion: '7.0.0',
|
|
})}
|
|
/>
|
|
);
|
|
|
|
const selectEl = screen.getByLabelText('ElasticSearch version');
|
|
|
|
await selectEvent.select(selectEl, tc.version, { container: document.body });
|
|
|
|
expect(onChangeMock).toHaveBeenCalledWith(
|
|
expect.objectContaining({
|
|
jsonData: expect.objectContaining({ maxConcurrentShardRequests: tc.expectedMaxConcurrentShardRequests }),
|
|
})
|
|
);
|
|
});
|
|
});
|
|
});
|
|
});
|