mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* Add and configure eslint-plugin-import * Fix the lint:ts npm command * Autofix + prettier all the files * Manually fix remaining files * Move jquery code in jest-setup to external file to safely reorder imports * Resolve issue caused by circular dependencies within Prometheus * Update .betterer.results * Fix missing // @ts-ignore * ignore iconBundle.ts * Fix missing // @ts-ignore
362 lines
10 KiB
TypeScript
362 lines
10 KiB
TypeScript
import { of } from 'rxjs';
|
|
import { createFetchResponse } from 'test/helpers/createFetchResponse';
|
|
|
|
import { dataFrameToJSON, dateTime, MetricFindValue, MutableDataFrame } from '@grafana/data';
|
|
import { backendSrv } from 'app/core/services/backend_srv';
|
|
import { TemplateSrv } from 'app/features/templating/template_srv';
|
|
|
|
import { initialCustomVariableModelState } from '../../../../features/variables/custom/reducer';
|
|
import { MssqlDatasource } from '../datasource';
|
|
|
|
jest.mock('@grafana/runtime', () => ({
|
|
...(jest.requireActual('@grafana/runtime') as unknown as object),
|
|
getBackendSrv: () => backendSrv,
|
|
}));
|
|
|
|
describe('MSSQLDatasource', () => {
|
|
const templateSrv: TemplateSrv = new TemplateSrv();
|
|
const fetchMock = jest.spyOn(backendSrv, 'fetch');
|
|
|
|
const ctx: any = {};
|
|
|
|
beforeEach(() => {
|
|
jest.clearAllMocks();
|
|
|
|
ctx.instanceSettings = { name: 'mssql' };
|
|
ctx.ds = new MssqlDatasource(ctx.instanceSettings, templateSrv);
|
|
});
|
|
|
|
describe('When performing annotationQuery', () => {
|
|
let results: any;
|
|
|
|
const annotationName = 'MyAnno';
|
|
|
|
const options = {
|
|
annotation: {
|
|
name: annotationName,
|
|
rawQuery: 'select time, text, tags from table;',
|
|
},
|
|
range: {
|
|
from: dateTime(1432288354),
|
|
to: dateTime(1432288401),
|
|
},
|
|
};
|
|
|
|
const response = {
|
|
results: {
|
|
MyAnno: {
|
|
frames: [
|
|
dataFrameToJSON(
|
|
new MutableDataFrame({
|
|
fields: [
|
|
{ name: 'time', values: [1521545610656, 1521546251185, 1521546501378] },
|
|
{ name: 'text', values: ['some text', 'some text2', 'some text3'] },
|
|
{ name: 'tags', values: ['TagA,TagB', ' TagB , TagC', null] },
|
|
],
|
|
})
|
|
),
|
|
],
|
|
},
|
|
},
|
|
};
|
|
|
|
beforeEach(() => {
|
|
fetchMock.mockImplementation(() => of(createFetchResponse(response)));
|
|
|
|
return ctx.ds.annotationQuery(options).then((data: any) => {
|
|
results = data;
|
|
});
|
|
});
|
|
|
|
it('should return annotation list', () => {
|
|
expect(results.length).toBe(3);
|
|
|
|
expect(results[0].text).toBe('some text');
|
|
expect(results[0].tags[0]).toBe('TagA');
|
|
expect(results[0].tags[1]).toBe('TagB');
|
|
|
|
expect(results[1].tags[0]).toBe('TagB');
|
|
expect(results[1].tags[1]).toBe('TagC');
|
|
|
|
expect(results[2].tags.length).toBe(0);
|
|
});
|
|
});
|
|
|
|
describe('When performing metricFindQuery that returns multiple string fields', () => {
|
|
let results: MetricFindValue[];
|
|
const query = 'select * from atable';
|
|
const response = {
|
|
results: {
|
|
tempvar: {
|
|
frames: [
|
|
dataFrameToJSON(
|
|
new MutableDataFrame({
|
|
fields: [
|
|
{ name: 'title', values: ['aTitle', 'aTitle2', 'aTitle3'] },
|
|
{ name: 'text', values: ['some text', 'some text2', 'some text3'] },
|
|
],
|
|
})
|
|
),
|
|
],
|
|
},
|
|
},
|
|
};
|
|
|
|
beforeEach(() => {
|
|
fetchMock.mockImplementation(() => of(createFetchResponse(response)));
|
|
|
|
return ctx.ds.metricFindQuery(query).then((data: MetricFindValue[]) => {
|
|
results = data;
|
|
});
|
|
});
|
|
|
|
it('should return list of all column values', () => {
|
|
expect(results.length).toBe(6);
|
|
expect(results[0].text).toBe('aTitle');
|
|
expect(results[5].text).toBe('some text3');
|
|
});
|
|
});
|
|
|
|
describe('When performing metricFindQuery with key, value columns', () => {
|
|
let results: any;
|
|
const query = 'select * from atable';
|
|
const response = {
|
|
results: {
|
|
tempvar: {
|
|
frames: [
|
|
dataFrameToJSON(
|
|
new MutableDataFrame({
|
|
fields: [
|
|
{ name: '__value', values: ['value1', 'value2', 'value3'] },
|
|
{ name: '__text', values: ['aTitle', 'aTitle2', 'aTitle3'] },
|
|
],
|
|
})
|
|
),
|
|
],
|
|
},
|
|
},
|
|
};
|
|
|
|
beforeEach(() => {
|
|
fetchMock.mockImplementation(() => of(createFetchResponse(response)));
|
|
|
|
return ctx.ds.metricFindQuery(query).then((data: any) => {
|
|
results = data;
|
|
});
|
|
});
|
|
|
|
it('should return list of as text, value', () => {
|
|
expect(results.length).toBe(3);
|
|
expect(results[0].text).toBe('aTitle');
|
|
expect(results[0].value).toBe('value1');
|
|
expect(results[2].text).toBe('aTitle3');
|
|
expect(results[2].value).toBe('value3');
|
|
});
|
|
});
|
|
|
|
describe('When performing metricFindQuery without key, value columns', () => {
|
|
let results: any;
|
|
const query = 'select id, values from atable';
|
|
const response = {
|
|
results: {
|
|
tempvar: {
|
|
refId: 'tempvar',
|
|
frames: [
|
|
dataFrameToJSON(
|
|
new MutableDataFrame({
|
|
fields: [
|
|
{ name: 'id', values: [1, 2, 3] },
|
|
{ name: 'values', values: ['test1', 'test2', 'test3'] },
|
|
],
|
|
meta: {
|
|
executedQueryString: 'select id, values from atable',
|
|
},
|
|
})
|
|
),
|
|
],
|
|
},
|
|
},
|
|
};
|
|
|
|
beforeEach(() => {
|
|
fetchMock.mockImplementation(() => of(createFetchResponse(response)));
|
|
|
|
return ctx.ds.metricFindQuery(query).then((data: any) => {
|
|
results = data;
|
|
});
|
|
});
|
|
|
|
it('should return list of all field values as text', () => {
|
|
expect(results).toEqual([
|
|
{ text: 1 },
|
|
{ text: 2 },
|
|
{ text: 3 },
|
|
{ text: 'test1' },
|
|
{ text: 'test2' },
|
|
{ text: 'test3' },
|
|
]);
|
|
});
|
|
});
|
|
|
|
describe('When performing metricFindQuery with key, value columns and with duplicate keys', () => {
|
|
let results: any;
|
|
const query = 'select * from atable';
|
|
const response = {
|
|
results: {
|
|
tempvar: {
|
|
frames: [
|
|
dataFrameToJSON(
|
|
new MutableDataFrame({
|
|
fields: [
|
|
{ name: '__text', values: ['aTitle', 'aTitle', 'aTitle'] },
|
|
{ name: '__value', values: ['same', 'same', 'diff'] },
|
|
],
|
|
})
|
|
),
|
|
],
|
|
},
|
|
},
|
|
};
|
|
|
|
beforeEach(() => {
|
|
fetchMock.mockImplementation(() => of(createFetchResponse(response)));
|
|
return ctx.ds.metricFindQuery(query).then((data: any) => {
|
|
results = data;
|
|
});
|
|
});
|
|
|
|
it('should return list of unique keys', () => {
|
|
expect(results.length).toBe(1);
|
|
expect(results[0].text).toBe('aTitle');
|
|
expect(results[0].value).toBe('same');
|
|
});
|
|
});
|
|
|
|
describe('When performing metricFindQuery', () => {
|
|
const query = 'select * from atable';
|
|
const response = {
|
|
results: {
|
|
tempvar: {
|
|
frames: [
|
|
dataFrameToJSON(
|
|
new MutableDataFrame({
|
|
fields: [{ name: 'test', values: ['aTitle'] }],
|
|
})
|
|
),
|
|
],
|
|
},
|
|
},
|
|
};
|
|
const time = {
|
|
from: dateTime(1521545610656),
|
|
to: dateTime(1521546251185),
|
|
};
|
|
|
|
beforeEach(() => {
|
|
fetchMock.mockImplementation(() => of(createFetchResponse(response)));
|
|
|
|
return ctx.ds.metricFindQuery(query, { range: time });
|
|
});
|
|
|
|
it('should pass timerange to datasourceRequest', () => {
|
|
expect(fetchMock).toBeCalledTimes(1);
|
|
expect(fetchMock.mock.calls[0][0].data.from).toBe(time.from.valueOf().toString());
|
|
expect(fetchMock.mock.calls[0][0].data.to).toBe(time.to.valueOf().toString());
|
|
expect(fetchMock.mock.calls[0][0].data.queries.length).toBe(1);
|
|
expect(fetchMock.mock.calls[0][0].data.queries[0].rawSql).toBe(query);
|
|
});
|
|
});
|
|
|
|
describe('When interpolating variables', () => {
|
|
beforeEach(() => {
|
|
ctx.variable = { ...initialCustomVariableModelState };
|
|
});
|
|
|
|
describe('and value is a string', () => {
|
|
it('should return an unquoted value', () => {
|
|
expect(ctx.ds.interpolateVariable('abc', ctx.variable)).toEqual('abc');
|
|
});
|
|
});
|
|
|
|
describe('and value is a number', () => {
|
|
it('should return an unquoted value', () => {
|
|
expect(ctx.ds.interpolateVariable(1000, ctx.variable)).toEqual(1000);
|
|
});
|
|
});
|
|
|
|
describe('and value is an array of strings', () => {
|
|
it('should return comma separated quoted values', () => {
|
|
expect(ctx.ds.interpolateVariable(['a', 'b', 'c'], ctx.variable)).toEqual("'a','b','c'");
|
|
});
|
|
});
|
|
|
|
describe('and variable allows multi-value and value is a string', () => {
|
|
it('should return a quoted value', () => {
|
|
ctx.variable.multi = true;
|
|
expect(ctx.ds.interpolateVariable('abc', ctx.variable)).toEqual("'abc'");
|
|
});
|
|
});
|
|
|
|
describe('and variable contains single quote', () => {
|
|
it('should return a quoted value', () => {
|
|
ctx.variable.multi = true;
|
|
expect(ctx.ds.interpolateVariable("a'bc", ctx.variable)).toEqual("'a''bc'");
|
|
});
|
|
});
|
|
|
|
describe('and variable allows all and value is a string', () => {
|
|
it('should return a quoted value', () => {
|
|
ctx.variable.includeAll = true;
|
|
expect(ctx.ds.interpolateVariable('abc', ctx.variable)).toEqual("'abc'");
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('targetContainsTemplate', () => {
|
|
it('given query that contains template variable it should return true', () => {
|
|
const rawSql = `SELECT
|
|
$__timeGroup(createdAt,'$summarize') as time,
|
|
avg(value) as value,
|
|
hostname as metric
|
|
FROM
|
|
grafana_metric
|
|
WHERE
|
|
$__timeFilter(createdAt) AND
|
|
measurement = 'logins.count' AND
|
|
hostname IN($host)
|
|
GROUP BY $__timeGroup(createdAt,'$summarize'), hostname
|
|
ORDER BY 1`;
|
|
const query = {
|
|
rawSql,
|
|
};
|
|
templateSrv.init([
|
|
{ type: 'query', name: 'summarize', current: { value: '1m' } },
|
|
{ type: 'query', name: 'host', current: { value: 'a' } },
|
|
]);
|
|
expect(ctx.ds.targetContainsTemplate(query)).toBeTruthy();
|
|
});
|
|
|
|
it('given query that only contains global template variable it should return false', () => {
|
|
const rawSql = `SELECT
|
|
$__timeGroup(createdAt,'$__interval') as time,
|
|
avg(value) as value,
|
|
hostname as metric
|
|
FROM
|
|
grafana_metric
|
|
WHERE
|
|
$__timeFilter(createdAt) AND
|
|
measurement = 'logins.count'
|
|
GROUP BY $__timeGroup(createdAt,'$summarize'), hostname
|
|
ORDER BY 1`;
|
|
const query = {
|
|
rawSql,
|
|
};
|
|
templateSrv.init([
|
|
{ type: 'query', name: 'summarize', current: { value: '1m' } },
|
|
{ type: 'query', name: 'host', current: { value: 'a' } },
|
|
]);
|
|
expect(ctx.ds.targetContainsTemplate(query)).toBeFalsy();
|
|
});
|
|
});
|
|
});
|