| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386 |
- import InfluxQueryModel from '../influx_query_model';
- describe('InfluxQuery', () => {
- const templateSrv: any = { replace: (val: any) => val };
- describe('render series with mesurement only', () => {
- it('should generate correct query', () => {
- const query = new InfluxQueryModel(
- {
- refId: 'A',
- measurement: 'cpu',
- },
- templateSrv,
- {}
- );
- const queryText = query.render();
- expect(queryText).toBe('SELECT mean("value") FROM "cpu" WHERE $timeFilter GROUP BY time($__interval) fill(null)');
- });
- });
- describe('render series with policy only', () => {
- it('should generate correct query', () => {
- const query = new InfluxQueryModel(
- {
- refId: 'A',
- measurement: 'cpu',
- policy: '5m_avg',
- },
- templateSrv,
- {}
- );
- const queryText = query.render();
- expect(queryText).toBe(
- 'SELECT mean("value") FROM "5m_avg"."cpu" WHERE $timeFilter GROUP BY time($__interval) fill(null)'
- );
- });
- });
- describe('render series with math and alias', () => {
- it('should generate correct query', () => {
- const query = new InfluxQueryModel(
- {
- refId: 'A',
- measurement: 'cpu',
- select: [
- [
- { type: 'field', params: ['value'] },
- { type: 'mean', params: [] },
- { type: 'math', params: ['/100'] },
- { type: 'alias', params: ['text'] },
- ],
- ],
- },
- templateSrv,
- {}
- );
- const queryText = query.render();
- expect(queryText).toBe(
- 'SELECT mean("value") /100 AS "text" FROM "cpu" WHERE $timeFilter GROUP BY time($__interval) fill(null)'
- );
- });
- });
- describe('series with single tag only', () => {
- it('should generate correct query', () => {
- const query = new InfluxQueryModel(
- {
- refId: 'A',
- measurement: 'cpu',
- groupBy: [{ type: 'time', params: ['auto'] }],
- tags: [{ key: 'hostname', value: 'server\\1' }],
- },
- templateSrv,
- {}
- );
- const queryText = query.render();
- expect(queryText).toBe(
- 'SELECT mean("value") FROM "cpu" WHERE ("hostname" = \'server\\\\1\') AND $timeFilter' +
- ' GROUP BY time($__interval)'
- );
- });
- it('should switch regex operator with tag value is regex', () => {
- const query = new InfluxQueryModel(
- {
- refId: 'A',
- measurement: 'cpu',
- groupBy: [{ type: 'time', params: ['auto'] }],
- tags: [{ key: 'app', value: '/e.*/' }],
- },
- templateSrv,
- {}
- );
- const queryText = query.render();
- expect(queryText).toBe(
- 'SELECT mean("value") FROM "cpu" WHERE ("app" =~ /e.*/) AND $timeFilter GROUP BY time($__interval)'
- );
- });
- });
- describe('series with multiple tags only', () => {
- it('should generate correct query', () => {
- const query = new InfluxQueryModel(
- {
- refId: 'A',
- measurement: 'cpu',
- groupBy: [{ type: 'time', params: ['auto'] }],
- tags: [{ key: 'hostname', value: 'server1' }, { key: 'app', value: 'email', condition: 'AND' }],
- },
- templateSrv,
- {}
- );
- const queryText = query.render();
- expect(queryText).toBe(
- 'SELECT mean("value") FROM "cpu" WHERE ("hostname" = \'server1\' AND "app" = \'email\') AND ' +
- '$timeFilter GROUP BY time($__interval)'
- );
- });
- });
- describe('series with tags OR condition', () => {
- it('should generate correct query', () => {
- const query = new InfluxQueryModel(
- {
- refId: 'A',
- measurement: 'cpu',
- groupBy: [{ type: 'time', params: ['auto'] }],
- tags: [{ key: 'hostname', value: 'server1' }, { key: 'hostname', value: 'server2', condition: 'OR' }],
- },
- templateSrv,
- {}
- );
- const queryText = query.render();
- expect(queryText).toBe(
- 'SELECT mean("value") FROM "cpu" WHERE ("hostname" = \'server1\' OR "hostname" = \'server2\') AND ' +
- '$timeFilter GROUP BY time($__interval)'
- );
- });
- });
- describe('field name with single quote should be escaped and', () => {
- it('should generate correct query', () => {
- const query = new InfluxQueryModel(
- {
- refId: 'A',
- measurement: 'cpu',
- groupBy: [{ type: 'time', params: ['auto'] }],
- tags: [{ key: 'name', value: "Let's encrypt." }, { key: 'hostname', value: 'server2', condition: 'OR' }],
- },
- templateSrv,
- {}
- );
- const queryText = query.render();
- expect(queryText).toBe(
- 'SELECT mean("value") FROM "cpu" WHERE ("name" = \'Let\\\'s encrypt.\' OR "hostname" = \'server2\') AND ' +
- '$timeFilter GROUP BY time($__interval)'
- );
- });
- });
- describe('query with value condition', () => {
- it('should not quote value', () => {
- const query = new InfluxQueryModel(
- {
- refId: 'A',
- measurement: 'cpu',
- groupBy: [],
- tags: [{ key: 'value', value: '5', operator: '>' }],
- },
- templateSrv,
- {}
- );
- const queryText = query.render();
- expect(queryText).toBe('SELECT mean("value") FROM "cpu" WHERE ("value" > 5) AND $timeFilter');
- });
- });
- describe('series with groupByTag', () => {
- it('should generate correct query', () => {
- const query = new InfluxQueryModel(
- {
- refId: 'A',
- measurement: 'cpu',
- tags: [],
- groupBy: [{ type: 'time', interval: 'auto' }, { type: 'tag', params: ['host'] }],
- },
- templateSrv,
- {}
- );
- const queryText = query.render();
- expect(queryText).toBe('SELECT mean("value") FROM "cpu" WHERE $timeFilter GROUP BY time($__interval), "host"');
- });
- });
- describe('render series without group by', () => {
- it('should generate correct query', () => {
- const query = new InfluxQueryModel(
- {
- refId: 'A',
- measurement: 'cpu',
- select: [[{ type: 'field', params: ['value'] }]],
- groupBy: [],
- },
- templateSrv,
- {}
- );
- const queryText = query.render();
- expect(queryText).toBe('SELECT "value" FROM "cpu" WHERE $timeFilter');
- });
- });
- describe('render series without group by and fill', () => {
- it('should generate correct query', () => {
- const query = new InfluxQueryModel(
- {
- refId: 'A',
- measurement: 'cpu',
- select: [[{ type: 'field', params: ['value'] }]],
- groupBy: [{ type: 'time' }, { type: 'fill', params: ['0'] }],
- },
- templateSrv,
- {}
- );
- const queryText = query.render();
- expect(queryText).toBe('SELECT "value" FROM "cpu" WHERE $timeFilter GROUP BY time($__interval) fill(0)');
- });
- });
- describe('when adding group by part', () => {
- it('should add tag before fill', () => {
- const query = new InfluxQueryModel(
- {
- refId: 'A',
- measurement: 'cpu',
- groupBy: [{ type: 'time' }, { type: 'fill' }],
- },
- templateSrv,
- {}
- );
- query.addGroupBy('tag(host)');
- expect(query.target.groupBy.length).toBe(3);
- expect(query.target.groupBy[1].type).toBe('tag');
- expect(query.target.groupBy[1].params[0]).toBe('host');
- expect(query.target.groupBy[2].type).toBe('fill');
- });
- it('should add tag last if no fill', () => {
- const query = new InfluxQueryModel(
- {
- refId: 'A',
- measurement: 'cpu',
- groupBy: [],
- },
- templateSrv,
- {}
- );
- query.addGroupBy('tag(host)');
- expect(query.target.groupBy.length).toBe(1);
- expect(query.target.groupBy[0].type).toBe('tag');
- });
- });
- describe('when adding select part', () => {
- it('should add mean after after field', () => {
- const query = new InfluxQueryModel(
- {
- refId: 'A',
- measurement: 'cpu',
- select: [[{ type: 'field', params: ['value'] }]],
- },
- templateSrv,
- {}
- );
- query.addSelectPart(query.selectModels[0], 'mean');
- expect(query.target.select[0].length).toBe(2);
- expect(query.target.select[0][1].type).toBe('mean');
- });
- it('should replace sum by mean', () => {
- const query = new InfluxQueryModel(
- {
- refId: 'A',
- measurement: 'cpu',
- select: [[{ type: 'field', params: ['value'] }, { type: 'mean' }]],
- },
- templateSrv,
- {}
- );
- query.addSelectPart(query.selectModels[0], 'sum');
- expect(query.target.select[0].length).toBe(2);
- expect(query.target.select[0][1].type).toBe('sum');
- });
- it('should add math before alias', () => {
- const query = new InfluxQueryModel(
- {
- refId: 'A',
- measurement: 'cpu',
- select: [[{ type: 'field', params: ['value'] }, { type: 'mean' }, { type: 'alias' }]],
- },
- templateSrv,
- {}
- );
- query.addSelectPart(query.selectModels[0], 'math');
- expect(query.target.select[0].length).toBe(4);
- expect(query.target.select[0][2].type).toBe('math');
- });
- it('should add math last', () => {
- const query = new InfluxQueryModel(
- {
- refId: 'A',
- measurement: 'cpu',
- select: [[{ type: 'field', params: ['value'] }, { type: 'mean' }]],
- },
- templateSrv,
- {}
- );
- query.addSelectPart(query.selectModels[0], 'math');
- expect(query.target.select[0].length).toBe(3);
- expect(query.target.select[0][2].type).toBe('math');
- });
- it('should replace math', () => {
- const query = new InfluxQueryModel(
- {
- refId: 'A',
- measurement: 'cpu',
- select: [[{ type: 'field', params: ['value'] }, { type: 'mean' }, { type: 'math' }]],
- },
- templateSrv,
- {}
- );
- query.addSelectPart(query.selectModels[0], 'math');
- expect(query.target.select[0].length).toBe(3);
- expect(query.target.select[0][2].type).toBe('math');
- });
- it('should add math when one only query part', () => {
- const query = new InfluxQueryModel(
- {
- refId: 'A',
- measurement: 'cpu',
- select: [[{ type: 'field', params: ['value'] }]],
- },
- templateSrv,
- {}
- );
- query.addSelectPart(query.selectModels[0], 'math');
- expect(query.target.select[0].length).toBe(2);
- expect(query.target.select[0][1].type).toBe('math');
- });
- describe('when render adhoc filters', () => {
- it('should generate correct query segment', () => {
- const query = new InfluxQueryModel({ refId: 'A', measurement: 'cpu' }, templateSrv, {});
- const queryText = query.renderAdhocFilters([
- { key: 'key1', operator: '=', value: 'value1' },
- { key: 'key2', operator: '!=', value: 'value2' },
- ]);
- expect(queryText).toBe('"key1" = \'value1\' AND "key2" != \'value2\'');
- });
- });
- });
- });
|