public void When()
 {
     _publishWithCorrelationId      = Guid.NewGuid();
     _distibutionPointCorrelationId = Guid.NewGuid();
     _edp = new StreamReaderEventDistributionPoint(_bus, _distibutionPointCorrelationId, "stream", 10, false);
     _edp.Resume();
     _firstEventId  = Guid.NewGuid();
     _secondEventId = Guid.NewGuid();
     _edp.Handle(
         new ClientMessage.ReadStreamEventsForwardCompleted(
             _distibutionPointCorrelationId, "stream",
             new[]
     {
         new EventLinkPair(
             new EventRecord(
                 10, 50, Guid.NewGuid(), _firstEventId, 50, 0, "stream", ExpectedVersion.Any, DateTime.UtcNow,
                 PrepareFlags.SingleWrite | PrepareFlags.TransactionBegin | PrepareFlags.TransactionEnd,
                 "event_type1", new byte[] { 1 }, new byte[] { 2 }), null),
         new EventLinkPair(
             new EventRecord(
                 11, 100, Guid.NewGuid(), _secondEventId, 100, 0, "stream", ExpectedVersion.Any,
                 DateTime.UtcNow,
                 PrepareFlags.SingleWrite | PrepareFlags.TransactionBegin | PrepareFlags.TransactionEnd,
                 "event_type2", new byte[] { 3 }, new byte[] { 4 }), null)
     }, RangeReadResult.Success, 12, 11, true, 200));
     _edp.Handle(
         new ClientMessage.ReadStreamEventsForwardCompleted(
             _distibutionPointCorrelationId, "stream",
             new EventLinkPair[] { }, RangeReadResult.Success, 12, 11, true, 400));
 }
Beispiel #2
0
 public void When()
 {
     _publishWithCorrelationId      = Guid.NewGuid();
     _distibutionPointCorrelationId = Guid.NewGuid();
     _edp = new StreamReaderEventDistributionPoint(_bus, _distibutionPointCorrelationId, "stream", 0, false);
     _edp.Resume();
     _firstEventId  = Guid.NewGuid();
     _secondEventId = Guid.NewGuid();
     _edp.Handle(
         new ClientMessage.ReadStreamEventsForwardCompleted(
             _distibutionPointCorrelationId, "stream",
             new EventLinkPair[0], RangeReadResult.NoStream, -1, ExpectedVersion.NoStream, false, 200));
 }
Beispiel #3
0
 public void When()
 {
     _distibutionPointCorrelationId = Guid.NewGuid();
     _edp = new StreamReaderEventDistributionPoint(_bus, _distibutionPointCorrelationId, "stream", 10, false);
     _edp.Resume();
 }
Beispiel #4
0
 public void negative_event_sequence_number_throws_argument_exception()
 {
     var edp = new StreamReaderEventDistributionPoint(_bus, Guid.NewGuid(), "", -1, false);
 }
Beispiel #5
0
 public void empty_stream_name_throws_argument_exception()
 {
     var edp = new StreamReaderEventDistributionPoint(_bus, Guid.NewGuid(), "", 0, false);
 }
Beispiel #6
0
 public void empty_distribution_point_id_throws_argument_exception()
 {
     var edp = new StreamReaderEventDistributionPoint(_bus, Guid.Empty, "stream", 0, false);
 }
Beispiel #7
0
 public void null_publisher_throws_argument_null_exception()
 {
     var edp = new StreamReaderEventDistributionPoint(null, Guid.NewGuid(), "stream", 0, false);
 }
Beispiel #8
0
 public void it_can_be_created()
 {
     var edp = new StreamReaderEventDistributionPoint(_bus, Guid.NewGuid(), "stream", 0, false);
 }