| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- define([
- 'helpers',
- 'features/graphite/datasource'
- ], function(helpers) {
- 'use strict';
- describe('graphiteDatasource', function() {
- var ctx = new helpers.ServiceTestContext();
- beforeEach(module('grafana.services'));
- beforeEach(ctx.providePhase());
- beforeEach(ctx.createService('GraphiteDatasource'));
- beforeEach(function() {
- ctx.ds = new ctx.service({ url: [''] });
- });
- describe('When querying influxdb with one target using query editor target spec', function() {
- var query = {
- range: { from: 'now-1h', to: 'now' },
- targets: [{ target: 'prod1.count' }, {target: 'prod2.count'}],
- maxDataPoints: 500,
- };
- var response = [{ target: 'prod1.count', datapoints: [[10, 1], [12,1]], }];
- var results;
- var request;
- beforeEach(function() {
- ctx.$httpBackend.expectPOST('/render', function(body) { request = body; return true; })
- .respond(response);
- ctx.ds.query(query).then(function(data) { results = data; });
- ctx.$httpBackend.flush();
- });
- it('should generate the correct query', function() {
- ctx.$httpBackend.verifyNoOutstandingExpectation();
- });
- it('should query correctly', function() {
- var params = request.split('&');
- expect(params).to.contain('target=prod1.count');
- expect(params).to.contain('target=prod2.count');
- expect(params).to.contain('from=-1h');
- expect(params).to.contain('until=now');
- });
- it('should exclude undefined params', function() {
- var params = request.split('&');
- expect(params).to.not.contain('cacheTimeout=undefined');
- });
- it('should return series list', function() {
- expect(results.data.length).to.be(1);
- expect(results.data[0].target).to.be('prod1.count');
- });
- });
- describe('building graphite params', function() {
- it('should uri escape targets', function() {
- var results = ctx.ds.buildGraphiteParams({
- targets: [{target: 'prod1.{test,test2}'}, {target: 'prod2.count'}]
- });
- expect(results).to.contain('target=prod1.%7Btest%2Ctest2%7D');
- });
- it('should replace target placeholder', function() {
- var results = ctx.ds.buildGraphiteParams({
- targets: [{target: 'series1'}, {target: 'series2'}, {target: 'asPercent(#A,#B)'}]
- });
- expect(results[2]).to.be('target=asPercent(series1%2Cseries2)');
- });
- it('should fix wrong minute interval parameters', function() {
- var results = ctx.ds.buildGraphiteParams({
- targets: [{target: "summarize(prod.25m.count, '25m', 'sum')" }]
- });
- expect(results[0]).to.be('target=' + encodeURIComponent("summarize(prod.25m.count, '25min', 'sum')"));
- });
- it('should fix wrong month interval parameters', function() {
- var results = ctx.ds.buildGraphiteParams({
- targets: [{target: "summarize(prod.5M.count, '5M', 'sum')" }]
- });
- expect(results[0]).to.be('target=' + encodeURIComponent("summarize(prod.5M.count, '5mon', 'sum')"));
- });
- it('should ignore empty targets', function() {
- var results = ctx.ds.buildGraphiteParams({
- targets: [{target: 'series1'}, {target: ''}]
- });
- expect(results.length).to.be(2);
- });
- });
- });
- });
|