forked from yreynhout/AggregateSource
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUsingObjectInheritance.cs
More file actions
393 lines (331 loc) · 12.5 KB
/
Copy pathUsingObjectInheritance.cs
File metadata and controls
393 lines (331 loc) · 12.5 KB
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
using System;
using System.Linq;
using AggregateSource;
using NUnit.Framework;
namespace SampleSource
{
namespace UsingObjectInheritance
{
using Messaging;
[TestFixture]
public class SampleUsage
{
[Test]
public void Renting_a_video_tape_emits_a_recent_enough_video_title()
{
var videoTitleId = new VideoTitleId(Guid.NewGuid());
var title = VideoTitle.Register(videoTitleId, "Shaving Ryan's Privates");
var videoTapeId = new VideoTapeId(Guid.NewGuid());
var tape = title.ScanNewTape(videoTapeId, new BarCode("A432"));
tape.ClearChanges();
title.CorrectTitle("Saving Private Ryan");
var videoStoreMemberId = new VideoStoreMemberId(Guid.NewGuid());
tape.Rent(videoStoreMemberId, new RentalPeriod(DateTime.Today, DateTime.Today.AddDays(3)));
Assert.That(tape.GetChanges(),
Is.EquivalentTo(new object[]
{
new RentedVideoTape(
videoTapeId,
videoTitleId,
"Saving Private Ryan",
videoStoreMemberId,
DateTime.Today,
DateTime.Today.AddDays(3))
}));
}
}
public class VideoTitle : AggregateRootEntity, IVideoTitleProfile
{
public static VideoTitle Register(VideoTitleId videoTitleId, string title)
{
return new VideoTitle(new VideoTitleRegistered(videoTitleId, title));
}
VideoTitle(VideoTitleRegistered @event) : this()
{
Apply(@event);
}
VideoTitle()
{
Register<VideoTitleRegistered>(When);
Register<CorrectedVideoTitle>(When);
}
public VideoTape ScanNewTape(VideoTapeId tapeId, BarCode barCode)
{
return new VideoTape(
this,
new ScannedNewVideoTape(Id, tapeId, barCode));
}
void When(VideoTitleRegistered @event)
{
Id = new VideoTitleId(@event.Id);
Title = @event.Title;
}
void When(CorrectedVideoTitle @event)
{
Title = @event.Title;
}
public VideoTitleId Id { get; private set; }
public string Title { get; private set; }
public void CorrectTitle(string correction)
{
Apply(new CorrectedVideoTitle(Id, correction));
}
}
public interface IVideoTitleProfile
{
VideoTitleId Id { get; }
string Title { get; }
}
public class VideoTape : AggregateRootEntity
{
readonly IVideoTitleProfile _title;
VideoTape(IVideoTitleProfile title)
{
if (title == null) throw new ArgumentNullException("title");
_title = title;
Register<ScannedNewVideoTape>(When);
}
internal VideoTape(IVideoTitleProfile title, ScannedNewVideoTape @event)
: this(title)
{
Apply(@event);
}
public void Rent(VideoStoreMemberId memberId, RentalPeriod period)
{
Apply(
new RentedVideoTape(
Id, _title.Id, _title.Title,
memberId, period.FromDate, period.ToDate));
}
void When(ScannedNewVideoTape @event)
{
Id = new VideoTapeId(@event.VideoTapeId);
}
public VideoTapeId Id { get; private set; }
}
public class RentalPeriod
{
readonly DateTime _fromDate;
readonly DateTime _toDate;
public RentalPeriod(DateTime from, DateTime to)
{
if (from.Date < DateTime.Today)
throw new ArgumentOutOfRangeException("from");
if (from.Date > to.Date)
throw new ArgumentException("The from date should be less than or equal to the to date.");
_fromDate = from.Date;
_toDate = to.Date;
}
public DateTime FromDate
{
get { return _fromDate; }
}
public DateTime ToDate
{
get { return _toDate; }
}
}
public class BarCode
{
readonly string _value;
public BarCode(string value)
{
if (value == null)
throw new ArgumentNullException("value");
if (value.Length != 4)
throw new ArgumentOutOfRangeException("value", "The value of a barcode should be 4 characters long.");
if (value.Any(@char => !@char.IsHexSymbol()))
throw new ArgumentOutOfRangeException("value",
"The value of a barcode should consist of hexadecimal characters only.");
_value = value;
}
protected bool Equals(BarCode other)
{
return string.Equals(_value, other._value);
}
public override bool Equals(object obj)
{
if (ReferenceEquals(null, obj)) return false;
if (ReferenceEquals(this, obj)) return true;
if (obj.GetType() != GetType()) return false;
return Equals((BarCode) obj);
}
public override int GetHashCode()
{
return _value.GetHashCode();
}
public static implicit operator string(BarCode code)
{
return code._value;
}
}
public static class CharExtensions
{
static readonly char[] HexChars = new[]
{
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F', 'a', 'b', 'c', 'd', 'e',
'f'
};
public static bool IsHexSymbol(this char @char)
{
return HexChars.Contains(@char);
}
}
public struct VideoTapeId : IEquatable<VideoTapeId>
{
readonly Guid _value;
public VideoTapeId(Guid value)
{
_value = value;
}
public bool Equals(VideoTapeId other)
{
return _value.Equals(other._value);
}
public override bool Equals(object obj)
{
if (ReferenceEquals(null, obj)) return false;
return obj is VideoTapeId && Equals((VideoTapeId) obj);
}
public override int GetHashCode()
{
return _value.GetHashCode();
}
public static implicit operator Guid(VideoTapeId id)
{
return id._value;
}
}
public struct VideoTitleId : IEquatable<VideoTitleId>
{
readonly Guid _value;
public VideoTitleId(Guid value)
{
_value = value;
}
public bool Equals(VideoTitleId other)
{
return _value.Equals(other._value);
}
public override bool Equals(object obj)
{
if (ReferenceEquals(null, obj)) return false;
return obj is VideoTitleId && Equals((VideoTitleId) obj);
}
public override int GetHashCode()
{
return _value.GetHashCode();
}
public static implicit operator Guid(VideoTitleId id)
{
return id._value;
}
}
public struct VideoStoreMemberId : IEquatable<VideoStoreMemberId>
{
readonly Guid _value;
public VideoStoreMemberId(Guid value)
{
_value = value;
}
public bool Equals(VideoStoreMemberId other)
{
return _value.Equals(other._value);
}
public override bool Equals(object obj)
{
if (ReferenceEquals(null, obj)) return false;
return obj is VideoStoreMemberId && Equals((VideoStoreMemberId) obj);
}
public override int GetHashCode()
{
return _value.GetHashCode();
}
public static implicit operator Guid(VideoStoreMemberId id)
{
return id._value;
}
}
namespace Messaging
{
public class VideoTitleRegistered
{
public readonly Guid Id;
public readonly string Title;
public VideoTitleRegistered(Guid id, string title)
{
Id = id;
Title = title;
}
}
public class ScannedNewVideoTape
{
public readonly Guid VideoTitleId;
public readonly Guid VideoTapeId;
public readonly string BarCode;
public ScannedNewVideoTape(Guid videoTitleId, Guid videoTapeId, string barCode)
{
VideoTitleId = videoTitleId;
VideoTapeId = videoTapeId;
BarCode = barCode;
}
}
public class RentedVideoTape
{
public readonly Guid VideoTapeId;
public readonly Guid VideoTitleId;
public readonly string Title;
public readonly Guid VideoStoreMemberId;
public readonly DateTime FromDate;
public readonly DateTime ToDate;
public RentedVideoTape(Guid videoTapeId, Guid videoTitleId, string title, Guid videoStoreMemberId,
DateTime fromDate, DateTime toDate)
{
VideoTapeId = videoTapeId;
VideoTitleId = videoTitleId;
Title = title;
VideoStoreMemberId = videoStoreMemberId;
FromDate = fromDate;
ToDate = toDate;
}
protected bool Equals(RentedVideoTape other)
{
return VideoTapeId.Equals(other.VideoTapeId) && string.Equals(Title, other.Title) &&
VideoTitleId.Equals(other.VideoTitleId) &&
VideoStoreMemberId.Equals(other.VideoStoreMemberId) && FromDate.Equals(other.FromDate) &&
ToDate.Equals(other.ToDate);
}
public override bool Equals(object obj)
{
if (ReferenceEquals(null, obj)) return false;
if (ReferenceEquals(this, obj)) return true;
if (obj.GetType() != GetType()) return false;
return Equals((RentedVideoTape) obj);
}
public override int GetHashCode()
{
unchecked
{
var hashCode = VideoTapeId.GetHashCode();
hashCode = (hashCode*397) ^ (Title != null ? Title.GetHashCode() : 0);
hashCode = (hashCode*397) ^ VideoTitleId.GetHashCode();
hashCode = (hashCode*397) ^ VideoStoreMemberId.GetHashCode();
hashCode = (hashCode*397) ^ FromDate.GetHashCode();
hashCode = (hashCode*397) ^ ToDate.GetHashCode();
return hashCode;
}
}
}
public class CorrectedVideoTitle
{
public readonly Guid Id;
public readonly string Title;
public CorrectedVideoTitle(Guid id, string title)
{
Id = id;
Title = title;
}
}
}
}
}