Skip to content
This repository has been archived by the owner on Dec 8, 2023. It is now read-only.

Add a test for maxBatchSize #94

Merged
merged 1 commit into from
Jun 5, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 44 additions & 0 deletions test/librato_tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ const serverPort = 36001;
const librato = require('../lib/librato.js');
const nock = require('nock');
const sinon = require('sinon');
const http = require('http');

const config = {
debug: false,
Expand Down Expand Up @@ -94,10 +95,12 @@ module.exports.tags = {
.defaultReplyHeaders({'Content-Type': 'application/json'});

librato.init(null, config, this.emitter);
this.httpSpy = sinon.spy(http, 'request');
callback();
},

tearDown: function(callback) {
http.request.restore();
callback();
},

Expand Down Expand Up @@ -262,6 +265,47 @@ module.exports.tags = {
this.emitter.emit('flush', 123, metrics);
},

testBatchProperRequestCount: function(test) {
test.expect(3);
var gauges = {};
for (var i = 0; i < 500; i++) {
var key = 'gauge' + i;
gauges[key] = 1;
}
var metrics = {gauges: gauges};
this.apiServer.post('/v1/measurements')
.reply(200, (uri, requestBody) => {
test.ok(requestBody.measurements);
});

this.emitter.emit('flush', 123, metrics);

// Let some time pass...
setTimeout(() => {
// There should have ever been one submission because we hit our maxBatchSize
test.ok(this.httpSpy.calledOnce);

// Try with a bigger batch...
for (var i = 0; i < 1500; i++) {
var key = 'gauge' + i;
gauges[key] = 1;
}
metrics = {gauges: gauges};
// Reset the spy
this.httpSpy.reset();

// Flush
this.emitter.emit('flush', 123, metrics);

// Let some time pass...
setTimeout(() => {
// One request, per batch of 500 metrics....
test.ok(this.httpSpy.calledThrice);
test.done();
});
}, 500);
},

testValidMeasurementTopLevelTag: function(test) {
config.librato.host = '127.0.0.1';
config.librato.tags = {test: true};
Expand Down