132 lines
4.4 KiB
JavaScript
132 lines
4.4 KiB
JavaScript
var util = require('util');
|
|
var uuid = require('uuid');
|
|
var client = require('../src/client');
|
|
const allCredentials = new client.UserCredentials("admin", "changeit");
|
|
|
|
function createRandomEvent() {
|
|
return client.createJsonEventData(uuid.v4(), {a: uuid.v4(), b: Math.random()}, {createdAt: Date.now()}, 'testEvent');
|
|
}
|
|
|
|
module.exports = {
|
|
'Test Subscribe to All From (Start)': function(test) {
|
|
test.expect(4);
|
|
var self = this;
|
|
var liveProcessing = false;
|
|
var catchUpEvents = [];
|
|
var liveEvents = [];
|
|
var _doneCount = 0;
|
|
function done(err) {
|
|
test.ok(!err, err ? err.stack : '');
|
|
_doneCount++;
|
|
if (_doneCount < 2) return;
|
|
test.done();
|
|
}
|
|
function eventAppeared(s, e) {
|
|
if (liveProcessing) {
|
|
liveEvents.push(e);
|
|
s.stop();
|
|
} else {
|
|
catchUpEvents.push(e);
|
|
}
|
|
}
|
|
function liveProcessingStarted() {
|
|
liveProcessing = true;
|
|
var events = [createRandomEvent()];
|
|
self.conn.appendToStream(self.testStreamName, client.expectedVersion.any, events)
|
|
.then(function () {
|
|
done();
|
|
})
|
|
.catch(done);
|
|
}
|
|
function subscriptionDropped(connection, reason, error) {
|
|
test.ok(liveEvents.length === 1, "Expecting 1 live event, got " + liveEvents.length);
|
|
test.ok(catchUpEvents.length > 1, "Expecting at least 1 catchUp event, got " + catchUpEvents.length);
|
|
done(error);
|
|
}
|
|
var subscription = this.conn.subscribeToAllFrom(null, false, eventAppeared, liveProcessingStarted, subscriptionDropped, allCredentials);
|
|
},
|
|
'Test Subscribe to All From (Position)': function(test) {
|
|
test.expect(5);
|
|
var self = this;
|
|
var liveProcessing = false;
|
|
var catchUpEvents = [];
|
|
var liveEvents = [];
|
|
var _doneCount = 0;
|
|
function done(err) {
|
|
test.ok(!err, err ? err.stack : '');
|
|
_doneCount++;
|
|
if (_doneCount < 2) return;
|
|
test.done();
|
|
}
|
|
function eventAppeared(s, e) {
|
|
if (liveProcessing) {
|
|
liveEvents.push(e);
|
|
s.stop();
|
|
} else {
|
|
catchUpEvents.push(e);
|
|
}
|
|
}
|
|
function liveProcessingStarted() {
|
|
liveProcessing = true;
|
|
var events = [createRandomEvent()];
|
|
self.conn.appendToStream(self.testStreamName, client.expectedVersion.any, events)
|
|
.then(function () {
|
|
done();
|
|
})
|
|
.catch(done);
|
|
}
|
|
function subscriptionDropped(connection, reason, error) {
|
|
test.ok(liveEvents.length === 1, "Expecting 1 live event, got " + liveEvents.length);
|
|
test.ok(catchUpEvents.length > 1, "Expecting at least 1 catchUp event, got " + catchUpEvents.length);
|
|
done(error);
|
|
}
|
|
this.conn.readAllEventsForward(client.positions.start, 512, true, allCredentials)
|
|
.then(function (slice) {
|
|
var subscription = self.conn.subscribeToAllFrom(slice.nextPosition, false, eventAppeared, liveProcessingStarted, subscriptionDropped, allCredentials);
|
|
test.ok(subscription, "Subscription is null/undefined.");
|
|
});
|
|
},
|
|
'Test Subscribe to All From (End)': function(test) {
|
|
test.expect(5);
|
|
var self = this;
|
|
var liveProcessing = false;
|
|
var catchUpEvents = [];
|
|
var liveEvents = [];
|
|
var _doneCount = 0;
|
|
function done(err) {
|
|
test.ok(!err, err ? err.stack : '');
|
|
_doneCount++;
|
|
if (_doneCount < 2) return;
|
|
test.done();
|
|
}
|
|
function eventAppeared(s, e) {
|
|
if (liveProcessing) {
|
|
liveEvents.push(e);
|
|
s.stop();
|
|
} else {
|
|
catchUpEvents.push(e);
|
|
}
|
|
}
|
|
function liveProcessingStarted() {
|
|
liveProcessing = true;
|
|
var events = [createRandomEvent()];
|
|
self.conn.appendToStream(self.testStreamName, client.expectedVersion.any, events)
|
|
.then(function () {
|
|
done();
|
|
})
|
|
.catch(done);
|
|
}
|
|
function subscriptionDropped(connection, reason, error) {
|
|
test.ok(liveEvents.length === 1, "Expecting 1 live event, got " + liveEvents.length);
|
|
test.ok(catchUpEvents.length === 0, "Expecting 0 catchUp event, got " + catchUpEvents.length);
|
|
done(error);
|
|
}
|
|
this.conn.readAllEventsForward(client.positions.end, 512, true, allCredentials)
|
|
.then(function (slice) {
|
|
var subscription = self.conn.subscribeToAllFrom(slice.nextPosition, false, eventAppeared, liveProcessingStarted, subscriptionDropped, allCredentials);
|
|
test.ok(subscription, "Subscription is null/undefined.");
|
|
});
|
|
}
|
|
};
|
|
|
|
require('./common/base_test').init(module.exports); |