grafana/public/app/plugins/datasource/influxdb/components/ConfigEditor.test.tsx
2022-08-30 09:30:10 +01:00

79 lines
1.8 KiB
TypeScript

import { render, screen } from '@testing-library/react';
import React from 'react';
import ConfigEditor, { Props } from './ConfigEditor';
jest.mock('lodash', () => {
const uniqueId = (prefix: string) => `${prefix}42`;
const orig = jest.requireActual('lodash');
return {
...orig,
uniqueId,
};
});
const setup = (optionOverrides?: object) => {
const props: Props = {
options: {
id: 21,
uid: 'z',
orgId: 1,
name: 'InfluxDB-3',
type: 'influxdb',
typeName: 'Influx',
typeLogoUrl: '',
access: 'proxy',
url: '',
user: '',
database: '',
basicAuth: false,
basicAuthUser: '',
withCredentials: false,
isDefault: false,
jsonData: {
httpMode: 'POST',
timeInterval: '4',
},
secureJsonFields: {},
version: 1,
readOnly: false,
...optionOverrides,
},
onOptionsChange: jest.fn(),
};
return render(<ConfigEditor {...props} />);
};
describe('ConfigEditor', () => {
it('should render without throwing an error', () => {
expect(() => setup()).not.toThrow();
});
it('should disable basic auth password input', () => {
setup({
basicAuth: true,
secureJsonFields: {
basicAuthPassword: true,
},
});
expect(screen.getByDisplayValue('configured')).toBeInTheDocument();
});
it('should hide white listed cookies input when browser access chosen', () => {
setup({
access: 'direct',
});
expect(screen.queryByLabelText('Allowed cookies')).not.toBeInTheDocument();
});
it('should hide basic auth fields when switch off', () => {
setup({
basicAuth: false,
});
expect(screen.queryByRole('heading', { name: 'Basic Auth Details' })).not.toBeInTheDocument();
});
});