mirror of
https://github.com/grafana/grafana.git
synced 2025-09-26 12:24:09 +08:00

* influxdb: influxql: query editor a11y fixes * configure datasource page a11y fixes * fixed unit test * better a11y * better a11y for the query editor * simplify code * updated tests * removed explicit aria-label
82 lines
1.7 KiB
TypeScript
82 lines
1.7 KiB
TypeScript
import React from 'react';
|
|
import { shallow } from 'enzyme';
|
|
import ConfigEditor, { Props } from './ConfigEditor';
|
|
|
|
jest.mock('lodash', () => {
|
|
const uniqueId = (prefix: string) => `${prefix}42`;
|
|
|
|
const orig = jest.requireActual('lodash');
|
|
|
|
return {
|
|
...orig,
|
|
uniqueId,
|
|
};
|
|
});
|
|
|
|
const setup = (propOverrides?: object) => {
|
|
const props: Props = {
|
|
options: {
|
|
id: 21,
|
|
uid: 'z',
|
|
orgId: 1,
|
|
name: 'InfluxDB-3',
|
|
type: 'influxdb',
|
|
typeName: 'Influx',
|
|
typeLogoUrl: '',
|
|
access: 'proxy',
|
|
url: '',
|
|
password: '',
|
|
user: '',
|
|
database: '',
|
|
basicAuth: false,
|
|
basicAuthUser: '',
|
|
basicAuthPassword: '',
|
|
withCredentials: false,
|
|
isDefault: false,
|
|
jsonData: {
|
|
httpMode: 'POST',
|
|
timeInterval: '4',
|
|
},
|
|
secureJsonFields: {},
|
|
version: 1,
|
|
readOnly: false,
|
|
},
|
|
onOptionsChange: jest.fn(),
|
|
};
|
|
|
|
Object.assign(props, propOverrides);
|
|
|
|
return shallow(<ConfigEditor {...props} />);
|
|
};
|
|
|
|
describe('Render', () => {
|
|
it('should render component', () => {
|
|
const wrapper = setup();
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
});
|
|
|
|
it('should disable basic auth password input', () => {
|
|
const wrapper = setup({
|
|
secureJsonFields: {
|
|
basicAuthPassword: true,
|
|
},
|
|
});
|
|
expect(wrapper).toMatchSnapshot();
|
|
});
|
|
|
|
it('should hide white listed cookies input when browser access chosen', () => {
|
|
const wrapper = setup({
|
|
access: 'direct',
|
|
});
|
|
expect(wrapper).toMatchSnapshot();
|
|
});
|
|
|
|
it('should hide basic auth fields when switch off', () => {
|
|
const wrapper = setup({
|
|
basicAuth: false,
|
|
});
|
|
expect(wrapper).toMatchSnapshot();
|
|
});
|
|
});
|