Fix #41
This commit is contained in:
@ -7,8 +7,8 @@ function createRandomEvent() {
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
'Test Subscribe to Stream From Happy Path': function(test) {
|
||||
test.expect(20);
|
||||
'Test Subscribe to Stream From Beginning (null)': function(test) {
|
||||
test.expect(22);
|
||||
var self = this;
|
||||
var liveProcessing = false;
|
||||
var catchUpEvents = [];
|
||||
@ -41,8 +41,10 @@ module.exports = {
|
||||
function subscriptionDropped(connection, reason, error) {
|
||||
test.ok(liveEvents.length === 1, "Expecting 1 live event, got " + liveEvents.length);
|
||||
test.testLiveEvent('liveEvents[0]', liveEvents[0]);
|
||||
test.ok(liveEvents[0].originalEventNumber, 1);
|
||||
test.ok(catchUpEvents.length === 1, "Expecting 1 catchUp event, got " + catchUpEvents.length);
|
||||
test.testReadEvent('catchUpEvents[0]', catchUpEvents[0]);
|
||||
test.ok(liveEvents[0].originalEventNumber, 0);
|
||||
done(error);
|
||||
}
|
||||
|
||||
@ -57,6 +59,59 @@ module.exports = {
|
||||
test.areEqual("subscription.maxPushQueueSize", subscription.maxPushQueueSize, 10000);
|
||||
})
|
||||
.catch(test.done);
|
||||
},
|
||||
'Test Subscribe to Stream From 0': function(test) {
|
||||
test.expect(22);
|
||||
var self = this;
|
||||
var liveProcessing = false;
|
||||
var catchUpEvents = [];
|
||||
var liveEvents = [];
|
||||
var _doneCount = 0;
|
||||
|
||||
function done(err) {
|
||||
test.ok(!err, err ? err.stack : '');
|
||||
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.testLiveEvent('liveEvents[0]', liveEvents[0]);
|
||||
test.ok(liveEvents[0].originalEventNumber, 2);
|
||||
test.ok(catchUpEvents.length === 1, "Expecting 1 catchUp event, got " + catchUpEvents.length);
|
||||
test.testReadEvent('catchUpEvents[0]', catchUpEvents[0]);
|
||||
test.ok(liveEvents[0].originalEventNumber, 1);
|
||||
done(error);
|
||||
}
|
||||
|
||||
var events = [createRandomEvent(), createRandomEvent()];
|
||||
this.conn.appendToStream(self.testStreamName, client.expectedVersion.noStream, events)
|
||||
.then(function() {
|
||||
var subscription = self.conn.subscribeToStreamFrom(self.testStreamName, 0, false, eventAppeared, liveProcessingStarted, subscriptionDropped);
|
||||
|
||||
test.areEqual("subscription.streamId", subscription.streamId, self.testStreamName);
|
||||
test.areEqual("subscription.isSubscribedToAll", subscription.isSubscribedToAll, false);
|
||||
test.areEqual("subscription.readBatchSize", subscription.readBatchSize, 500);
|
||||
test.areEqual("subscription.maxPushQueueSize", subscription.maxPushQueueSize, 10000);
|
||||
})
|
||||
.catch(test.done);
|
||||
}
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user