-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSagaTests.cs
87 lines (81 loc) · 3.09 KB
/
SagaTests.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
using System;
using FluentAssertions;
using Messages;
using NServiceBus.Testing;
using NUnit.Framework;
namespace Server.Tests
{
[TestFixture]
public class SagaTests
{
[Test]
public void OrderSubmitted()
{
var userName = "sales@joshkodroff.com";
var timeoutId1 = Guid.Empty;
Test
.Saga<AbandonedCartSaga>()
.ExpectTimeoutToBeSetIn<AbandonedCartTimeout>((msg, span) => {
timeoutId1 = msg.Id;
span.Should().Be(TimeSpan.FromSeconds(5));
})
.When(saga => saga.Handle(new ItemAddedToCart {
UserName = userName
}))
.ExpectTimeoutToBeSetIn<AbandonedCartTimeout>((msg, span) => {
msg.Id.Should().NotBe(timeoutId1); // just to make sure we're generating new ids
span.Should().Be(TimeSpan.FromSeconds(5));
})
.When(saga => saga.Handle(new ItemAddedToCart {
UserName = userName
}))
.ExpectNotSend<SendAbandonedCartEmail>(x => x != null) // just a dummy check. no message should be sent
.When(saga => {
// the first timeout comes back (which should be ignored):
saga.Timeout(new AbandonedCartTimeout {
Id = timeoutId1
});
saga.Handle(new OrderSubmitted {
UserName = userName
});
})
.AssertSagaCompletionIs(true);
}
[Test]
public void OrderNotSubmitted()
{
var userName = "sales@joshkodroff.com";
var timeoutId1 = Guid.Empty;
var timeoutId2 = Guid.Empty;
Test
.Saga<AbandonedCartSaga>()
.ExpectTimeoutToBeSetIn<AbandonedCartTimeout>((msg, span) => {
timeoutId1 = msg.Id;
span.Should().Be(TimeSpan.FromSeconds(5));
})
.When(saga => saga.Handle(new ItemAddedToCart {
UserName = userName
}))
.ExpectTimeoutToBeSetIn<AbandonedCartTimeout>((msg, span) => {
timeoutId2 = msg.Id;
span.Should().Be(TimeSpan.FromSeconds(5));
})
.When(saga => {
saga.Handle(new ItemAddedToCart {
UserName = userName
});
// the first timeout comes back (which should be ignored):
saga.Timeout(new AbandonedCartTimeout {
Id = timeoutId1
});
})
.ExpectSendLocal<SendAbandonedCartEmail>(msg => {
msg.UserName.Should().Be(userName);
})
.When(saga => saga.Timeout(new AbandonedCartTimeout {
Id = timeoutId2
}))
.AssertSagaCompletionIs(true);
}
}
}