-
Notifications
You must be signed in to change notification settings - Fork 163
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FIX #103 - Implementing discovered servers api.
Added test Extended nats_server_control to allow easy creation of a cluster Bumped versions
- Loading branch information
Alberto Ricart
committed
May 5, 2017
1 parent
6eba3ea
commit 6fd8397
Showing
4 changed files
with
256 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,143 @@ | ||
/* jslint node: true */ | ||
/* global describe: false, before: false, after: false, it: false, afterEach: false, beforeEach: false */ | ||
/* jshint -W030 */ | ||
'use strict'; | ||
|
||
var NATS = require ('../'), | ||
nsc = require('./support/nats_server_control'), | ||
should = require('should'); | ||
|
||
describe('Dynamic Cluster - Connect URLs', function() { | ||
this.timeout(10000); | ||
|
||
// this to enable per test cleanup | ||
var servers; | ||
// Shutdown our servers | ||
afterEach(function() { | ||
nsc.stop_cluster(servers); | ||
servers = []; | ||
}); | ||
|
||
it('adding cluster performs update', function(done) { | ||
var route_port = 54220; | ||
var port = 54221; | ||
|
||
// start a new cluster with single server | ||
servers = nsc.start_cluster([port], route_port, function() { | ||
should(servers.length).be.equal(1); | ||
|
||
// connect the client | ||
var nc = NATS.connect({'port': port, 'reconnectTimeWait': 100}); | ||
nc.on('connect', function () { | ||
// start adding servers | ||
process.nextTick(function () { | ||
var others = nsc.add_member_with_delay([port + 1, port + 2], route_port, 250, function () { | ||
// verify that 2 servers were added | ||
should(others.length).be.equal(2); | ||
others.forEach(function (o) { | ||
// add them so they can be reaped | ||
servers.push(o); | ||
}); | ||
// give some time for the server to send infos | ||
setTimeout(function () { | ||
// we should know of 3 servers - the one we connected and the 2 we added | ||
should(nc.servers.length).be.equal(3); | ||
done(); | ||
}, 1000); | ||
}); | ||
}); | ||
}); | ||
}); | ||
}); | ||
|
||
it('added servers are shuffled at the end of the list', function(done) { | ||
var route_port = 54320; | ||
var port = 54321; | ||
// start a cluster of one server | ||
var ports = []; | ||
for (var i = 0; i < 10; i++) { | ||
ports.push(port + i); | ||
} | ||
var map = {}; | ||
servers = nsc.start_cluster(ports, route_port, function () { | ||
should(servers.length).be.equal(10); | ||
|
||
var connectCount = 0; | ||
function connectAndRecordPorts(check) { | ||
var nc = NATS.connect({'port': port, 'reconnectTimeWait': 100}); | ||
nc.on('connect', function () { | ||
var have = []; | ||
nc.servers.forEach(function (s) { | ||
have.push(s.url.port); | ||
}); | ||
|
||
connectCount++; | ||
should.ok(have[0] == port); | ||
var key = have.join("_"); | ||
map[key] = map[key] ? map[key] + 1 : 1; | ||
nc.close(); | ||
if (connectCount === 10) { | ||
check(); | ||
} | ||
}); | ||
} | ||
|
||
// we should have more than one property if there was randomization | ||
function check() { | ||
var keys = Object.getOwnPropertyNames(map); | ||
should.ok(keys.length > 1); | ||
done(); | ||
} | ||
// connect several times... | ||
for (var i = 0; i < 10; i++) { | ||
connectAndRecordPorts(check); | ||
} | ||
}); | ||
}); | ||
|
||
it('added servers not shuffled when noRandomize is set', function(done) { | ||
var route_port = 54320; | ||
var port = 54321; | ||
// start a cluster of one server | ||
var ports = []; | ||
for (var i = 0; i < 10; i++) { | ||
ports.push(port + i); | ||
} | ||
var map = {}; | ||
servers = nsc.start_cluster(ports, route_port, function () { | ||
should(servers.length).be.equal(10); | ||
|
||
var connectCount = 0; | ||
function connectAndRecordPorts(check) { | ||
var nc = NATS.connect({'port': port, 'reconnectTimeWait': 100, 'noRandomize': true}); | ||
nc.on('connect', function () { | ||
var have = []; | ||
nc.servers.forEach(function (s) { | ||
have.push(s.url.port); | ||
}); | ||
|
||
connectCount++; | ||
should.ok(have[0] == port); | ||
var key = have.join("_"); | ||
map[key] = map[key] ? map[key] + 1 : 1; | ||
nc.close(); | ||
if (connectCount === 10) { | ||
check(); | ||
} | ||
}); | ||
} | ||
|
||
// we should have more than one property if there was randomization | ||
function check() { | ||
var keys = Object.getOwnPropertyNames(map); | ||
should.ok(keys.length === 1); | ||
should.ok(map[keys[0]] === 10); | ||
done(); | ||
} | ||
// connect several times... | ||
for (var i = 0; i < 10; i++) { | ||
connectAndRecordPorts(check); | ||
} | ||
}); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters