feat(cluster): create way to test single/gossip/cluster
* docker-compose files to easily setup cluster or single node eventstore * programmatic tests for single/gossip/cluster
This commit is contained in:
@ -11,38 +11,102 @@ protobufJS.util.Long = undefined;
|
||||
protobufJS.configure();
|
||||
|
||||
var settings = {
|
||||
log: new NoopLogger()
|
||||
log: new NoopLogger(),
|
||||
};
|
||||
if (process.env.TESTS_VERBOSE_LOGGING === '1') {
|
||||
settings.verboseLogging = true;
|
||||
settings.log = new FileLogger('test-verbose.log');
|
||||
}
|
||||
|
||||
var tcpEndPoint = {host: 'localhost', port: 1113};
|
||||
|
||||
function setUp(cb) {
|
||||
function setUpWithGossipSeeds(cb) {
|
||||
var gossipSeeds = [
|
||||
new client.GossipSeed({ host: process.env.EVENTSTORE_HOST_1 || '192.168.33.10', port: 2113 }),
|
||||
new client.GossipSeed({ host: process.env.EVENTSTORE_HOST_2 || '192.168.33.11', port: 2113 }),
|
||||
new client.GossipSeed({ host: process.env.EVENTSTORE_HOST_3 || '192.168.33.12', port: 2113 }),
|
||||
];
|
||||
this.log = settings.log;
|
||||
this.testStreamName = 'test-' + uuid.v4();
|
||||
var connected = false;
|
||||
this.conn = client.EventStoreConnection.create(settings, tcpEndPoint);
|
||||
this.conn.connect()
|
||||
.then(function () {
|
||||
//Doesn't mean anything, connection is just initiated
|
||||
settings.log.debug("Connection to %j initialized.", tcpEndPoint);
|
||||
})
|
||||
.catch(function (err) {
|
||||
settings.log.error(err, "Initializing connection to %j failed.", tcpEndPoint);
|
||||
cb(err);
|
||||
});
|
||||
this.conn = client.createConnection(settings, gossipSeeds);
|
||||
this.conn
|
||||
.connect()
|
||||
.then(function () {
|
||||
//Doesn't mean anything, connection is just initiated
|
||||
settings.log.debug('Connection to %j initialized.', gossipSeeds);
|
||||
})
|
||||
.catch(function (err) {
|
||||
settings.log.error(err, 'Initializing connection to %j failed.', gossipSeeds);
|
||||
cb(err);
|
||||
});
|
||||
this.conn.on('closed', function (reason) {
|
||||
if (connected) return;
|
||||
var error = new Error("Connection failed: " + reason);
|
||||
settings.log.error(error, "Connection to %j failed.", tcpEndPoint);
|
||||
var error = new Error('Connection failed: ' + reason);
|
||||
settings.log.error(error, 'Connection to %j failed.', gossipSeeds);
|
||||
cb(error);
|
||||
});
|
||||
this.conn.on('connected', function (tcpEndPoint) {
|
||||
if (connected) return;
|
||||
settings.log.debug("Connected to %j.", tcpEndPoint);
|
||||
settings.log.debug('Connected to %j.', tcpEndPoint);
|
||||
connected = true;
|
||||
cb();
|
||||
});
|
||||
}
|
||||
|
||||
function setUpWithDns(cb) {
|
||||
var clusterDns = 'discover://eventstore.local:2113';
|
||||
this.log = settings.log;
|
||||
this.testStreamName = 'test-' + uuid.v4();
|
||||
var connected = false;
|
||||
this.conn = client.createConnection(settings, clusterDns);
|
||||
this.conn
|
||||
.connect()
|
||||
.then(function () {
|
||||
//Doesn't mean anything, connection is just initiated
|
||||
settings.log.debug('Connection to %j initialized.', clusterDns);
|
||||
})
|
||||
.catch(function (err) {
|
||||
settings.log.error(err, 'Initializing connection to %j failed.', clusterDns);
|
||||
cb(err);
|
||||
});
|
||||
this.conn.on('closed', function (reason) {
|
||||
if (connected) return;
|
||||
var error = new Error('Connection failed: ' + reason);
|
||||
settings.log.error(error, 'Connection to %j failed.', clusterDns);
|
||||
cb(error);
|
||||
});
|
||||
this.conn.on('connected', function (tcpEndPoint) {
|
||||
if (connected) return;
|
||||
settings.log.debug('Connected to %j.', tcpEndPoint);
|
||||
connected = true;
|
||||
cb();
|
||||
});
|
||||
}
|
||||
|
||||
function setUpWithTcpEndpoint(cb) {
|
||||
var tcpEndPoint = { host: process.env.EVENTSTORE_HOST || 'localhost', port: 1113 };
|
||||
this.log = settings.log;
|
||||
this.testStreamName = 'test-' + uuid.v4();
|
||||
var connected = false;
|
||||
this.conn = client.EventStoreConnection.create(settings, tcpEndPoint);
|
||||
this.conn
|
||||
.connect()
|
||||
.then(function () {
|
||||
//Doesn't mean anything, connection is just initiated
|
||||
settings.log.debug('Connection to %j initialized.', tcpEndPoint);
|
||||
})
|
||||
.catch(function (err) {
|
||||
settings.log.error(err, 'Initializing connection to %j failed.', tcpEndPoint);
|
||||
cb(err);
|
||||
});
|
||||
this.conn.on('closed', function (reason) {
|
||||
if (connected) return;
|
||||
var error = new Error('Connection failed: ' + reason);
|
||||
settings.log.error(error, 'Connection to %j failed.', tcpEndPoint);
|
||||
cb(error);
|
||||
});
|
||||
this.conn.on('connected', function (tcpEndPoint) {
|
||||
if (connected) return;
|
||||
settings.log.debug('Connected to %j.', tcpEndPoint);
|
||||
connected = true;
|
||||
cb();
|
||||
});
|
||||
@ -50,7 +114,7 @@ function setUp(cb) {
|
||||
|
||||
function tearDown(cb) {
|
||||
this.conn.close();
|
||||
this.conn.on('closed', function() {
|
||||
this.conn.on('closed', function () {
|
||||
cb();
|
||||
});
|
||||
this.conn = null;
|
||||
@ -58,9 +122,8 @@ function tearDown(cb) {
|
||||
|
||||
function areEqual(name, actual, expected) {
|
||||
if (typeof expected !== 'object' || expected === null)
|
||||
this.strictEqual(actual, expected, util.format("Failed %s === %s, got %s.", name, expected, actual));
|
||||
else
|
||||
this.deepEqual(actual, expected, util.format("Failed %s deepEqual %j, got %j.", name, expected, actual));
|
||||
this.strictEqual(actual, expected, util.format('Failed %s === %s, got %s.', name, expected, actual));
|
||||
else this.deepEqual(actual, expected, util.format('Failed %s deepEqual %j, got %j.', name, expected, actual));
|
||||
}
|
||||
|
||||
function fail(reason) {
|
||||
@ -69,55 +132,75 @@ function fail(reason) {
|
||||
|
||||
function eventEqualEventData(name, resolvedEvent, eventData) {
|
||||
var ev = resolvedEvent.originalEvent;
|
||||
this.ok(ev !== null, util.format("Failed %s !== null.", name + ".originalEvent"));
|
||||
this.ok(ev !== null, util.format('Failed %s !== null.', name + '.originalEvent'));
|
||||
if (ev === null) return;
|
||||
this.areEqual(name + ".originalEvent.eventId", ev.eventId, eventData.eventId);
|
||||
this.areEqual(name + ".originalEvent.eventType", ev.eventType, eventData.type);
|
||||
this.ok(Buffer.compare(ev.data, eventData.data) === 0, name + ".originalEvent.data is not equal to original data.");
|
||||
this.ok(Buffer.compare(ev.metadata, eventData.metadata) === 0, name + ".originalEvent.metadata is not equal to original metadata.");
|
||||
this.areEqual(name + '.originalEvent.eventId', ev.eventId, eventData.eventId);
|
||||
this.areEqual(name + '.originalEvent.eventType', ev.eventType, eventData.type);
|
||||
this.ok(Buffer.compare(ev.data, eventData.data) === 0, name + '.originalEvent.data is not equal to original data.');
|
||||
this.ok(
|
||||
Buffer.compare(ev.metadata, eventData.metadata) === 0,
|
||||
name + '.originalEvent.metadata is not equal to original metadata.'
|
||||
);
|
||||
}
|
||||
|
||||
function testRecordedEvent(name, event) {
|
||||
this.ok(Long.isLong(event.eventNumber), name + ".eventNumber is not a Long");
|
||||
this.ok(event.created instanceof Date, name + ".created is not a Date");
|
||||
this.ok(typeof event.createdEpoch === 'number', name + ".createdEpoch is not a number");
|
||||
this.ok(Long.isLong(event.eventNumber), name + '.eventNumber is not a Long');
|
||||
this.ok(event.created instanceof Date, name + '.created is not a Date');
|
||||
this.ok(typeof event.createdEpoch === 'number', name + '.createdEpoch is not a number');
|
||||
}
|
||||
|
||||
function testLiveEvent(name, event, evNumber) {
|
||||
this.ok(event.event, name + ".event not defined (or null)");
|
||||
this.ok(event.originalEvent, name + ".originalEvent not defined (or null)");
|
||||
this.ok(event.isResolved === false, name + ".isResolved should be true");
|
||||
this.ok(event.originalPosition instanceof client.Position, name + ".originalPosition is not an instance of Position");
|
||||
this.ok(event.originalStreamId, name + ".originalStreamId not defined (or null)");
|
||||
this.ok(Long.isLong(event.originalEventNumber), name + ".originalEventNumber is not a Long");
|
||||
this.ok(event.event, name + '.event not defined (or null)');
|
||||
this.ok(event.originalEvent, name + '.originalEvent not defined (or null)');
|
||||
this.ok(event.isResolved === false, name + '.isResolved should be true');
|
||||
this.ok(event.originalPosition instanceof client.Position, name + '.originalPosition is not an instance of Position');
|
||||
this.ok(event.originalStreamId, name + '.originalStreamId not defined (or null)');
|
||||
this.ok(Long.isLong(event.originalEventNumber), name + '.originalEventNumber is not a Long');
|
||||
if (typeof evNumber === 'number') {
|
||||
this.ok(event.originalEventNumber.toNumber() === evNumber, name + '.originalEventNumber expected ' + evNumber + ' got ' + event.originalEventNumber);
|
||||
this.ok(
|
||||
event.originalEventNumber.toNumber() === evNumber,
|
||||
name + '.originalEventNumber expected ' + evNumber + ' got ' + event.originalEventNumber
|
||||
);
|
||||
}
|
||||
testRecordedEvent.call(this, name + '.event', event.event);
|
||||
}
|
||||
|
||||
function testReadEvent(name, event, evNumber) {
|
||||
this.ok(event.event, name + ".event not defined (or null)");
|
||||
this.ok(event.originalEvent, name + ".originalEvent not defined (or null)");
|
||||
this.ok(event.isResolved === false, name + ".isResolved should be true");
|
||||
this.ok(event.originalPosition === null, name + ".originalPosition is not null");
|
||||
this.ok(event.originalStreamId, name + ".originalStreamId not defined (or null)");
|
||||
this.ok(Long.isLong(event.originalEventNumber), name + ".originalEventNumber is not a Long");
|
||||
this.ok(event.event, name + '.event not defined (or null)');
|
||||
this.ok(event.originalEvent, name + '.originalEvent not defined (or null)');
|
||||
this.ok(event.isResolved === false, name + '.isResolved should be true');
|
||||
this.ok(event.originalPosition === null, name + '.originalPosition is not null');
|
||||
this.ok(event.originalStreamId, name + '.originalStreamId not defined (or null)');
|
||||
this.ok(Long.isLong(event.originalEventNumber), name + '.originalEventNumber is not a Long');
|
||||
if (typeof evNumber === 'number') {
|
||||
this.ok(event.originalEventNumber.toNumber() === evNumber, name + '.originalEventNumber expected ' + evNumber + ' got ' + event.originalEventNumber);
|
||||
this.ok(
|
||||
event.originalEventNumber.toNumber() === evNumber,
|
||||
name + '.originalEventNumber expected ' + evNumber + ' got ' + event.originalEventNumber
|
||||
);
|
||||
}
|
||||
testRecordedEvent.call(this, name + '.event', event.event);
|
||||
}
|
||||
|
||||
var _ = {
|
||||
'setUp': setUp,
|
||||
'tearDown': tearDown
|
||||
tearDown: tearDown,
|
||||
};
|
||||
|
||||
switch (process.env.EVENTSTORE_CONNECTION_TYPE) {
|
||||
case 'gossip':
|
||||
_.setUp = setUpWithGossipSeeds;
|
||||
break;
|
||||
case 'dns':
|
||||
_.setUp = setUpWithDns;
|
||||
break;
|
||||
case 'tcp':
|
||||
default:
|
||||
_.setUp = setUpWithTcpEndpoint;
|
||||
}
|
||||
|
||||
function wrap(name, testFunc) {
|
||||
var base = _[name];
|
||||
if (base === undefined) {
|
||||
return function(test) {
|
||||
return function (test) {
|
||||
settings.log.debug('--- %s ---', name);
|
||||
test.areEqual = areEqual.bind(test);
|
||||
test.fail = fail.bind(test);
|
||||
@ -125,36 +208,48 @@ function wrap(name, testFunc) {
|
||||
test.testLiveEvent = testLiveEvent.bind(test);
|
||||
test.testReadEvent = testReadEvent.bind(test);
|
||||
return testFunc.call(this, test);
|
||||
}
|
||||
};
|
||||
}
|
||||
return function(cb) {
|
||||
return function (cb) {
|
||||
var self = this;
|
||||
base.call(this, function(err) {
|
||||
base.call(this, function (err) {
|
||||
if (err) return cb(err);
|
||||
return testFunc.call(self, cb);
|
||||
});
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
module.exports.init = function(testSuite, addSetUpTearDownIfNotPresent) {
|
||||
module.exports.init = function (testSuite, addSetUpTearDownIfNotPresent) {
|
||||
var thisObj = {};
|
||||
if (addSetUpTearDownIfNotPresent === undefined) addSetUpTearDownIfNotPresent = true;
|
||||
for(var k in testSuite) {
|
||||
for (var k in testSuite) {
|
||||
if (testSuite.hasOwnProperty(k)) {
|
||||
testSuite[k] = wrap(k, testSuite[k]).bind(thisObj);
|
||||
}
|
||||
}
|
||||
if (!addSetUpTearDownIfNotPresent) return;
|
||||
if (!testSuite.hasOwnProperty('setUp')) testSuite['setUp'] = setUp.bind(thisObj);
|
||||
if (!testSuite.hasOwnProperty('setUp')) {
|
||||
switch (process.env.EVENTSTORE_CONNECTION_TYPE) {
|
||||
case 'gossip':
|
||||
testSuite['setUp'] = setUpWithGossipSeeds.bind(thisObj);
|
||||
break;
|
||||
case 'dns':
|
||||
testSuite['setUp'] = setUpWithDns.bind(thisObj);
|
||||
break;
|
||||
case 'tcp':
|
||||
default:
|
||||
testSuite['setUp'] = setUpWithTcpEndpoint.bind(thisObj);
|
||||
}
|
||||
}
|
||||
if (!testSuite.hasOwnProperty('tearDown')) testSuite['tearDown'] = tearDown.bind(thisObj);
|
||||
};
|
||||
module.exports.settings = function(settingsOverride) {
|
||||
module.exports.settings = function (settingsOverride) {
|
||||
var obj = {};
|
||||
for(var prop in settings) {
|
||||
for (var prop in settings) {
|
||||
obj[prop] = settings[prop];
|
||||
}
|
||||
if (!settingsOverride) return obj;
|
||||
for(var prop in settingsOverride) {
|
||||
for (var prop in settingsOverride) {
|
||||
obj[prop] = settingsOverride[prop];
|
||||
}
|
||||
return obj;
|
||||
|
@ -4,86 +4,161 @@ var GossipSeed = require('../src/gossipSeed');
|
||||
var testBase = require('./common/base_test');
|
||||
|
||||
var withSsl = !!process.env.NODE_ESC_WITH_SSL;
|
||||
const evenstStoreType = process.env.EVENTSTORE_CONNECTION_TYPE;
|
||||
|
||||
module.exports = {
|
||||
'Connect To Endpoint Happy Path': function (test) {
|
||||
test.expect(1);
|
||||
var tcpEndpoint = {host: 'localhost', port: 1113};
|
||||
var conn = client.EventStoreConnection.create(testBase.settings(), tcpEndpoint);
|
||||
conn.connect()
|
||||
.catch(function (err) {
|
||||
module.exports = {}
|
||||
|
||||
switch(evenstStoreType){
|
||||
case 'gossip':
|
||||
module.exports['Connect to Cluster using gossip seeds'] = function (test) {
|
||||
test.expect(1);
|
||||
var gossipSeeds = [
|
||||
new GossipSeed({host: process.env.EVENTSTORE_HOST_1 || '192.168.33.10', port: 2113}),
|
||||
new GossipSeed({host: process.env.EVENTSTORE_HOST_2 || '192.168.33.11', port: 2113}),
|
||||
new GossipSeed({host: process.env.EVENTSTORE_HOST_3 || '192.168.33.12', port: 2113})
|
||||
];
|
||||
var conn = client.EventStoreConnection.create(testBase.settings(), gossipSeeds);
|
||||
conn.connect()
|
||||
.catch(function(err) {
|
||||
test.done(err);
|
||||
});
|
||||
conn.on('connected', function(endPoint){
|
||||
test.ok(endPoint, 'no endpoint');
|
||||
done();
|
||||
});
|
||||
conn.on('error', done);
|
||||
|
||||
function done(err) {
|
||||
conn.close();
|
||||
if (err) return test.done(err);
|
||||
test.done();
|
||||
}
|
||||
};
|
||||
|
||||
module.exports['Connect To Cluster with bad gossip seeds'] = function (test) {
|
||||
test.expect(3);
|
||||
var gossipSeeds = [
|
||||
new GossipSeed({host: '1.2.3.4', port: 1113}),
|
||||
new GossipSeed({host: '2.3.4.5', port: 2113}),
|
||||
new GossipSeed({host: '3.4.5.6', port: 3113})
|
||||
];
|
||||
var conn = client.EventStoreConnection.create(testBase.settings({maxDiscoverAttempts: 1}), gossipSeeds);
|
||||
conn.connect()
|
||||
.catch(function (err) {
|
||||
test.ok(err.message.indexOf('Couldn\'t resolve target end point') === 0, 'Wrong expected reason.');
|
||||
});
|
||||
conn.on('connected', function () {
|
||||
test.ok(false, 'Should not be able to connect.');
|
||||
});
|
||||
conn.on('error', function (err) {
|
||||
test.ok(err.message.indexOf('Failed to discover candidate in 1 attempts') === 0, 'Wrong expected reason.');
|
||||
});
|
||||
conn.on('closed', function (reason) {
|
||||
test.ok(reason.indexOf('Failed to resolve TCP end point to which to connect') === 0, 'Wrong expected reason.');
|
||||
test.done();
|
||||
});
|
||||
};
|
||||
break;
|
||||
case 'dns':
|
||||
module.exports['Connect to Cluster using dns discover'] = function (test) {
|
||||
test.expect(1);
|
||||
var clusterDns = 'discover://eventstore.local:2113';
|
||||
var conn = client.EventStoreConnection.create(testBase.settings(), clusterDns);
|
||||
conn.connect()
|
||||
.catch(function(err) {
|
||||
test.done(err);
|
||||
});
|
||||
conn.on('connected', function(endPoint){
|
||||
test.ok(endPoint, 'no endpoint');
|
||||
done();
|
||||
});
|
||||
conn.on('error', done);
|
||||
|
||||
function done(err) {
|
||||
conn.close();
|
||||
if (err) return test.done(err);
|
||||
test.done();
|
||||
}
|
||||
};
|
||||
|
||||
module.exports['Connect To Cluster with bad dns discover'] = function (test) {
|
||||
test.expect(3);
|
||||
var clusterDns = 'discover://eventstore-bad.local:2113';
|
||||
var conn = client.EventStoreConnection.create(testBase.settings({maxDiscoverAttempts: 1}), clusterDns);
|
||||
conn.connect()
|
||||
.catch(function (err) {
|
||||
test.ok(err.message.indexOf('Couldn\'t resolve target end point') === 0, 'Wrong expected reason.');
|
||||
});
|
||||
conn.on('connected', function () {
|
||||
test.ok(false, 'Should not be able to connect.');
|
||||
});
|
||||
conn.on('error', function (err) {
|
||||
test.ok(err.message.indexOf('Failed to discover candidate in 1 attempts') === 0, 'Wrong expected reason.');
|
||||
});
|
||||
conn.on('closed', function (reason) {
|
||||
test.ok(reason.indexOf('Failed to resolve TCP end point to which to connect') === 0, 'Wrong expected reason.');
|
||||
test.done();
|
||||
});
|
||||
};
|
||||
break;
|
||||
case 'tcp':
|
||||
default:
|
||||
module.exports['Connect To Endpoint Happy Path'] = function (test) {
|
||||
test.expect(1);
|
||||
var tcpEndpoint = {host: process.env.EVENTSTORE_HOST || 'localhost', port: 1113};
|
||||
var conn = client.EventStoreConnection.create(testBase.settings(), tcpEndpoint);
|
||||
conn.connect()
|
||||
.catch(function (err) {
|
||||
test.done(err);
|
||||
});
|
||||
conn.on('connected', function (endPoint) {
|
||||
test.areEqual('connected endPoint', endPoint, tcpEndpoint);
|
||||
done();
|
||||
});
|
||||
conn.on('error', done);
|
||||
|
||||
function done(err) {
|
||||
conn.close();
|
||||
if (err) return test.done(err);
|
||||
test.done();
|
||||
}
|
||||
};
|
||||
|
||||
module.exports['Connect To Endpoint That Doesn\'t Exist'] = function (test) {
|
||||
test.expect(1);
|
||||
var tcpEndpoint = {host: process.env.EVENTSTORE_HOST || 'localhost', port: 11112};
|
||||
var conn = client.EventStoreConnection.create(testBase.settings({maxReconnections: 1}), tcpEndpoint);
|
||||
conn.connect()
|
||||
.catch(function (err) {
|
||||
test.done(err);
|
||||
});
|
||||
conn.on('connected', function () {
|
||||
test.ok(false, 'Should not be able to connect.');
|
||||
test.done();
|
||||
});
|
||||
conn.on('error', function (err) {
|
||||
test.done(err);
|
||||
});
|
||||
conn.on('connected', function (endPoint) {
|
||||
test.areEqual("connected endPoint", endPoint, tcpEndpoint);
|
||||
done();
|
||||
});
|
||||
conn.on('error', done);
|
||||
|
||||
function done(err) {
|
||||
conn.on('closed', function (reason) {
|
||||
test.ok(reason.indexOf('Reconnection limit reached') === 0, 'Wrong expected reason.');
|
||||
test.done();
|
||||
});
|
||||
};
|
||||
|
||||
module.exports['Create a connection with tcp://host:port string'] = function (test) {
|
||||
var conn = client.createConnection({}, `tcp://${process.env.EVENTSTORE_HOST || 'localhost'}:1113`);
|
||||
conn.close();
|
||||
if (err) return test.done(err);
|
||||
test.done();
|
||||
}
|
||||
},
|
||||
'Connect To Endpoint That Doesn\'t Exist': function (test) {
|
||||
test.expect(1);
|
||||
var tcpEndpoint = {host: 'localhost', port: 11112};
|
||||
var conn = client.EventStoreConnection.create(testBase.settings({maxReconnections: 1}), tcpEndpoint);
|
||||
conn.connect()
|
||||
.catch(function (err) {
|
||||
test.done(err);
|
||||
});
|
||||
conn.on('connected', function () {
|
||||
test.ok(false, "Should not be able to connect.");
|
||||
test.done();
|
||||
});
|
||||
conn.on('error', function (err) {
|
||||
test.done(err);
|
||||
});
|
||||
conn.on('closed', function (reason) {
|
||||
test.ok(reason.indexOf("Reconnection limit reached") === 0, "Wrong expected reason.");
|
||||
test.done();
|
||||
});
|
||||
},
|
||||
'Create a connection with tcp://host:port string': function (test) {
|
||||
var conn = client.createConnection({}, 'tcp://localhost:1113');
|
||||
conn.close();
|
||||
test.done();
|
||||
}/*,
|
||||
'Connect to Cluster using gossip seeds': function (test) {
|
||||
test.expect(1);
|
||||
var gossipSeeds = [
|
||||
new GossipSeed({host: 'localhost', port: 1113}),
|
||||
new GossipSeed({host: 'localhost', port: 2113}),
|
||||
new GossipSeed({host: 'localhost', port: 3113})
|
||||
];
|
||||
var conn = client.EventStoreConnection.create(testBase.settings(), gossipSeeds);
|
||||
conn.connect()
|
||||
.catch(function(err) {
|
||||
test.done(err);
|
||||
});
|
||||
conn.on('connected', function(endPoint){
|
||||
test.ok(endPoint, "no endpoint");
|
||||
done();
|
||||
});
|
||||
conn.on('error', done);
|
||||
|
||||
function done(err) {
|
||||
conn.close();
|
||||
if (err) return test.done(err);
|
||||
test.done();
|
||||
}
|
||||
}*/
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
if (withSsl) {
|
||||
module.exports['Connect to secure tcp endpoint'] = function(test) {
|
||||
var conn = client.createConnection({
|
||||
useSslConnection: true,
|
||||
targetHost: 'localhost',
|
||||
targetHost: process.env.EVENTSTORE_HOST || 'localhost',
|
||||
validateServer: false
|
||||
}, 'tcp://localhost:1115');
|
||||
}, `tcp://${process.env.EVENTSTORE_HOST || 'localhost'}:1115`);
|
||||
conn.on('error', function (err) {
|
||||
test.done(err);
|
||||
});
|
||||
|
@ -9,20 +9,6 @@ function createRandomEvent() {
|
||||
|
||||
var testStreamName = 'test-' + uuid.v4();
|
||||
|
||||
function delay(ms) {
|
||||
return new Promise(function (resolve, reject) {
|
||||
setTimeout(resolve, ms);
|
||||
})
|
||||
}
|
||||
|
||||
function delayOnlyFirst(count, action) {
|
||||
if (count === 0) return action();
|
||||
return delay(200)
|
||||
.then(function () {
|
||||
action();
|
||||
})
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
'Test Create Persistent Subscription': function(test) {
|
||||
var settings = client.PersistentSubscriptionSettings.create();
|
||||
@ -46,10 +32,8 @@ module.exports = {
|
||||
test.done();
|
||||
}
|
||||
function eventAppeared(s, e) {
|
||||
return delayOnlyFirst(receivedEvents.length, function () {
|
||||
receivedEvents.push(e);
|
||||
if (receivedEvents.length === 2) s.stop();
|
||||
});
|
||||
receivedEvents.push(e);
|
||||
if (receivedEvents.length === 2) s.stop();
|
||||
}
|
||||
function subscriptionDropped(connection, reason, error) {
|
||||
if (error) return done(error);
|
||||
|
@ -2,7 +2,7 @@ const client = require('../lib/dist');
|
||||
const userCredentials = new client.UserCredentials('admin', 'changeit');
|
||||
|
||||
const log = new client.NoopLogger();
|
||||
const httpEndpoint = 'http://127.0.0.1:2113';
|
||||
const httpEndpoint = `http://${process.env.EVENTSTORE_HOST || "localhost"}:2113`;
|
||||
const operationTimeout = 5000;
|
||||
|
||||
const simpleProjection = "\
|
||||
|
@ -7,20 +7,6 @@ function createRandomEvent() {
|
||||
return client.createJsonEventData(uuid.v4(), {a: uuid.v4(), b: Math.random()}, {createdAt: Date.now()}, 'testEvent');
|
||||
}
|
||||
|
||||
function delay(ms) {
|
||||
return new Promise(function (resolve, reject) {
|
||||
setTimeout(resolve, ms);
|
||||
})
|
||||
}
|
||||
|
||||
function delayOnlyFirst(count, action) {
|
||||
if (count === 0) return action();
|
||||
return delay(200)
|
||||
.then(function () {
|
||||
action();
|
||||
})
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
'Test Subscribe to All From (Start)': function(test) {
|
||||
test.expect(6);
|
||||
@ -48,14 +34,12 @@ module.exports = {
|
||||
}
|
||||
function eventAppeared(s, e) {
|
||||
var isLive = liveProcessing;
|
||||
delayOnlyFirst(isLive ? liveEvents.length : catchUpEvents.length, function() {
|
||||
if (isLive) {
|
||||
liveEvents.push(e);
|
||||
} else {
|
||||
catchUpEvents.push(e);
|
||||
}
|
||||
if (isLive && liveEvents.length === 2) s.stop();
|
||||
});
|
||||
if (isLive) {
|
||||
liveEvents.push(e);
|
||||
} else {
|
||||
catchUpEvents.push(e);
|
||||
}
|
||||
if (isLive && liveEvents.length === 2) s.stop();
|
||||
}
|
||||
function liveProcessingStarted() {
|
||||
liveProcessing = true;
|
||||
@ -99,14 +83,12 @@ module.exports = {
|
||||
}
|
||||
function eventAppeared(s, e) {
|
||||
var isLive = liveProcessing;
|
||||
delayOnlyFirst(isLive ? liveEvents.length : catchUpEvents.length, function() {
|
||||
if (isLive) {
|
||||
liveEvents.push(e);
|
||||
} else {
|
||||
catchUpEvents.push(e);
|
||||
}
|
||||
if (isLive && liveEvents.length === 2) s.stop();
|
||||
});
|
||||
if (isLive) {
|
||||
liveEvents.push(e);
|
||||
} else {
|
||||
catchUpEvents.push(e);
|
||||
}
|
||||
if (isLive && liveEvents.length === 2) s.stop();
|
||||
}
|
||||
function liveProcessingStarted() {
|
||||
liveProcessing = true;
|
||||
@ -149,14 +131,12 @@ module.exports = {
|
||||
}
|
||||
function eventAppeared(s, e) {
|
||||
var isLive = liveProcessing;
|
||||
delayOnlyFirst(isLive ? liveEvents.length : catchUpEvents.length, function() {
|
||||
if (isLive) {
|
||||
liveEvents.push(e);
|
||||
} else {
|
||||
catchUpEvents.push(e);
|
||||
}
|
||||
if (isLive && liveEvents.length === 2) s.stop();
|
||||
});
|
||||
if (isLive) {
|
||||
liveEvents.push(e);
|
||||
} else {
|
||||
catchUpEvents.push(e);
|
||||
}
|
||||
if (isLive && liveEvents.length === 2) s.stop();
|
||||
}
|
||||
function liveProcessingStarted() {
|
||||
liveProcessing = true;
|
||||
|
@ -2,20 +2,6 @@ const uuid = require('uuid');
|
||||
const client = require('../lib/dist');
|
||||
const allCredentials = new client.UserCredentials("admin", "changeit");
|
||||
|
||||
function delay(ms) {
|
||||
return new Promise(function (resolve, reject) {
|
||||
setTimeout(resolve, ms);
|
||||
})
|
||||
}
|
||||
|
||||
function delayOnlyFirst(count, action) {
|
||||
if (count === 0) return action();
|
||||
return delay(200)
|
||||
.then(function () {
|
||||
action();
|
||||
})
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
'Test Subscribe To All Happy Path': function(test) {
|
||||
const resolveLinkTos = false;
|
||||
@ -44,10 +30,15 @@ module.exports = {
|
||||
|
||||
var receivedEvents = [];
|
||||
function eventAppeared(subscription, event) {
|
||||
delayOnlyFirst(receivedEvents.length, function() {
|
||||
// Filter non-compliant events (only the one we've published)
|
||||
let eventData;
|
||||
try {
|
||||
eventData = JSON.parse(event.event.data.toString());
|
||||
} catch(e){}
|
||||
if (eventData && eventData.a && eventData.b){
|
||||
receivedEvents.push(event);
|
||||
if (receivedEvents.length === numberOfPublishedEvents) subscription.close();
|
||||
});
|
||||
}
|
||||
if (receivedEvents.length === numberOfPublishedEvents) subscription.close();
|
||||
}
|
||||
function subscriptionDropped(subscription, reason, error) {
|
||||
if (error) return done(error);
|
||||
|
@ -6,20 +6,6 @@ function createRandomEvent() {
|
||||
return client.createJsonEventData(uuid.v4(), {a: uuid.v4(), b: Math.random()}, {createdAt: Date.now()}, 'testEvent');
|
||||
}
|
||||
|
||||
function delay(ms) {
|
||||
return new Promise(function (resolve, reject) {
|
||||
setTimeout(resolve, ms);
|
||||
})
|
||||
}
|
||||
|
||||
function delayOnlyFirst(count, action) {
|
||||
if (count === 0) return action();
|
||||
return delay(200)
|
||||
.then(function () {
|
||||
action();
|
||||
})
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
'Test Subscribe to Stream From Beginning (null)': function(test) {
|
||||
test.expect(48);
|
||||
@ -37,14 +23,12 @@ module.exports = {
|
||||
|
||||
function eventAppeared(s, e) {
|
||||
var isLive = liveProcessing;
|
||||
delayOnlyFirst(isLive ? liveEvents.length : catchUpEvents.length, function() {
|
||||
if (isLive) {
|
||||
liveEvents.push(e);
|
||||
} else {
|
||||
catchUpEvents.push(e);
|
||||
}
|
||||
if (isLive && liveEvents.length === 2) s.stop();
|
||||
});
|
||||
if (isLive) {
|
||||
liveEvents.push(e);
|
||||
} else {
|
||||
catchUpEvents.push(e);
|
||||
}
|
||||
if (isLive && liveEvents.length === 2) s.stop();
|
||||
}
|
||||
function liveProcessingStarted() {
|
||||
liveProcessing = true;
|
||||
@ -93,14 +77,12 @@ module.exports = {
|
||||
|
||||
function eventAppeared(s, e) {
|
||||
var isLive = liveProcessing;
|
||||
delayOnlyFirst(isLive ? liveEvents.length : catchUpEvents.length, function() {
|
||||
if (isLive) {
|
||||
liveEvents.push(e);
|
||||
} else {
|
||||
catchUpEvents.push(e);
|
||||
}
|
||||
if (isLive && liveEvents.length === 2) s.stop();
|
||||
});
|
||||
if (isLive) {
|
||||
liveEvents.push(e);
|
||||
} else {
|
||||
catchUpEvents.push(e);
|
||||
}
|
||||
if (isLive && liveEvents.length === 2) s.stop();
|
||||
}
|
||||
function liveProcessingStarted() {
|
||||
liveProcessing = true;
|
||||
|
@ -2,20 +2,6 @@ const uuid = require('uuid');
|
||||
const client = require('../lib/dist');
|
||||
const Long = require('long');
|
||||
|
||||
function delay(ms) {
|
||||
return new Promise(function (resolve, reject) {
|
||||
setTimeout(resolve, ms);
|
||||
})
|
||||
}
|
||||
|
||||
function delayOnlyFirst(count, action) {
|
||||
if (count === 0) return action();
|
||||
return delay(200)
|
||||
.then(function () {
|
||||
action();
|
||||
})
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
'Test Subscribe To Stream Happy Path': function(test) {
|
||||
const resolveLinkTos = false;
|
||||
@ -43,10 +29,15 @@ module.exports = {
|
||||
|
||||
var receivedEvents = [];
|
||||
function eventAppeared(subscription, event) {
|
||||
delayOnlyFirst(receivedEvents.length, function () {
|
||||
// Filter non-compliant events (only the one we've published)
|
||||
let eventData;
|
||||
try {
|
||||
eventData = JSON.parse(event.event.data.toString());
|
||||
} catch(e){}
|
||||
if (eventData && eventData.a && eventData.b){
|
||||
receivedEvents.push(event);
|
||||
if (receivedEvents.length === numberOfPublishedEvents) subscription.close();
|
||||
});
|
||||
}
|
||||
if (receivedEvents.length === numberOfPublishedEvents) subscription.close();
|
||||
}
|
||||
function subscriptionDropped(subscription, reason, error) {
|
||||
if (error) return done(error);
|
||||
|
Reference in New Issue
Block a user