-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQueryTypeSwitcher.test.tsx
46 lines (44 loc) · 1.98 KB
/
QueryTypeSwitcher.test.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import React from 'react';
import { render } from '@testing-library/react';
import { QueryTypeSwitcher } from './QueryTypeSwitcher';
import { selectors } from '../selectors';
import { QueryType, QuestDBQuery, QuestDBSQLQuery, Format } from '../types';
const { options } = selectors.components.QueryEditor.Types;
describe('QueryTypeSwitcher', () => {
it('renders default query', () => {
const result = render(<QueryTypeSwitcher query={{ refId: 'A' } as QuestDBQuery} onChange={() => {}} />);
expect(result.container.firstChild).not.toBeNull();
expect(result.getByLabelText(options.SQLEditor)).not.toBeChecked();
expect(result.getByLabelText(options.QueryBuilder)).toBeChecked();
});
it('renders legacy query (query without query type)', () => {
const result = render(
<QueryTypeSwitcher query={{ refId: 'A', rawSql: 'hello' } as QuestDBSQLQuery} onChange={() => {}} />
);
expect(result.container.firstChild).not.toBeNull();
expect(result.getByLabelText(options.SQLEditor)).toBeChecked();
expect(result.getByLabelText(options.QueryBuilder)).not.toBeChecked();
});
it('renders correctly SQL editor', () => {
const result = render(
<QueryTypeSwitcher
query={{ refId: 'A', queryType: QueryType.SQL, rawSql: '', format: Format.TABLE, selectedFormat: Format.AUTO }}
onChange={() => {}}
/>
);
expect(result.container.firstChild).not.toBeNull();
expect(result.getByLabelText(options.SQLEditor)).toBeChecked();
expect(result.getByLabelText(options.QueryBuilder)).not.toBeChecked();
});
it('renders correctly SQL Builder editor', () => {
const result = render(
<QueryTypeSwitcher
query={{ refId: 'A', queryType: QueryType.Builder, rawSql: '' } as QuestDBQuery}
onChange={() => {}}
/>
);
expect(result.container.firstChild).not.toBeNull();
expect(result.getByLabelText(options.SQLEditor)).not.toBeChecked();
expect(result.getByLabelText(options.QueryBuilder)).toBeChecked();
});
});