|
| 1 | +using System; |
| 2 | +using System.Threading.Tasks; |
| 3 | +using DaemonTests.TestingSupport; |
| 4 | +using JasperFx.Core; |
| 5 | +using Marten.Events.Projections; |
| 6 | +using Marten.Metadata; |
| 7 | +using Marten.Testing.Harness; |
| 8 | +using Shouldly; |
| 9 | +using Xunit; |
| 10 | +using Xunit.Abstractions; |
| 11 | + |
| 12 | +namespace DaemonTests; |
| 13 | + |
| 14 | +public class converting_projection_from_inline_to_async : OneOffConfigurationsContext |
| 15 | +{ |
| 16 | + [Fact] |
| 17 | + public async Task start_as_inline_move_to_async_and_just_continue() |
| 18 | + { |
| 19 | + StoreOptions(opts => |
| 20 | + { |
| 21 | + opts.Projections.Snapshot<SimpleAggregate>(SnapshotLifecycle.Inline); |
| 22 | + }); |
| 23 | + |
| 24 | + var id1 = theSession.Events.StartStream<SimpleAggregate>(new AEvent(), new BEvent()).Id; |
| 25 | + var id2 = theSession.Events.StartStream<SimpleAggregate>(new BEvent(), new CEvent()).Id; |
| 26 | + var id3 = theSession.Events.StartStream<SimpleAggregate>(new CEvent(), new DEvent()).Id; |
| 27 | + await theSession.SaveChangesAsync(); |
| 28 | + |
| 29 | + var store2 = SeparateStore(opts => |
| 30 | + { |
| 31 | + #region sample_using_subscribe_as_inline_to_async |
| 32 | + |
| 33 | + opts |
| 34 | + .Projections |
| 35 | + .Snapshot<SimpleAggregate>(SnapshotLifecycle.Async, o => |
| 36 | + { |
| 37 | + // This option tells Marten to start the async projection at the highest |
| 38 | + // event sequence assigned as the processing floor if there is no previous |
| 39 | + // async daemon progress for this projection |
| 40 | + o.SubscribeAsInlineToAsync(); |
| 41 | + }); |
| 42 | + |
| 43 | + #endregion |
| 44 | + }); |
| 45 | + |
| 46 | + using var daemon = await store2.BuildProjectionDaemonAsync(); |
| 47 | + await daemon.StartAllAsync(); |
| 48 | + |
| 49 | + using var session = store2.LightweightSession(); |
| 50 | + session.Events.Append(id1, new EEvent(), new EEvent()); |
| 51 | + session.Events.Append(id2, new EEvent(), new EEvent()); |
| 52 | + session.Events.Append(id3, new EEvent(), new EEvent()); |
| 53 | + await session.SaveChangesAsync(); |
| 54 | + |
| 55 | + await daemon.WaitForNonStaleData(10.Seconds()); |
| 56 | + |
| 57 | + var aggregate1 = await session.LoadAsync<SimpleAggregate>(id1); |
| 58 | + var aggregate2 = await session.LoadAsync<SimpleAggregate>(id2); |
| 59 | + var aggregate3 = await session.LoadAsync<SimpleAggregate>(id3); |
| 60 | + |
| 61 | + aggregate1.ShouldBe(new SimpleAggregate |
| 62 | + { |
| 63 | + Id = id1, |
| 64 | + Version = 4, |
| 65 | + ACount = 1, |
| 66 | + BCount = 1, |
| 67 | + ECount = 2 |
| 68 | + }); |
| 69 | + |
| 70 | + aggregate2.ShouldBe(new SimpleAggregate |
| 71 | + { |
| 72 | + Id = id2, |
| 73 | + Version = 4, |
| 74 | + BCount = 1, |
| 75 | + CCount = 1, |
| 76 | + ECount = 2 |
| 77 | + }); |
| 78 | + |
| 79 | + } |
| 80 | +} |
| 81 | + |
| 82 | +public class SimpleAggregate : IRevisioned |
| 83 | +{ |
| 84 | + // This will be the aggregate version |
| 85 | + public int Version { get; set; } |
| 86 | + |
| 87 | + public Guid Id { get; set; } |
| 88 | + |
| 89 | + public int ACount { get; set; } |
| 90 | + public int BCount { get; set; } |
| 91 | + public int CCount { get; set; } |
| 92 | + public int DCount { get; set; } |
| 93 | + public int ECount { get; set; } |
| 94 | + |
| 95 | + public void Apply(AEvent _) |
| 96 | + { |
| 97 | + ACount++; |
| 98 | + } |
| 99 | + |
| 100 | + public void Apply(BEvent _) |
| 101 | + { |
| 102 | + BCount++; |
| 103 | + } |
| 104 | + |
| 105 | + public void Apply(CEvent _) |
| 106 | + { |
| 107 | + CCount++; |
| 108 | + } |
| 109 | + |
| 110 | + public void Apply(DEvent _) |
| 111 | + { |
| 112 | + DCount++; |
| 113 | + } |
| 114 | + |
| 115 | + public void Apply(EEvent _) |
| 116 | + { |
| 117 | + ECount++; |
| 118 | + } |
| 119 | + |
| 120 | + public override string ToString() |
| 121 | + { |
| 122 | + return |
| 123 | + $"{nameof(Version)}: {Version}, {nameof(Id)}: {Id}, {nameof(ACount)}: {ACount}, {nameof(BCount)}: {BCount}, {nameof(CCount)}: {CCount}, {nameof(DCount)}: {DCount}, {nameof(ECount)}: {ECount}"; |
| 124 | + } |
| 125 | + |
| 126 | + protected bool Equals(SimpleAggregate other) |
| 127 | + { |
| 128 | + return Id.Equals(other.Id) && ACount == other.ACount && BCount == other.BCount && CCount == other.CCount && DCount == other.DCount && ECount == other.ECount; |
| 129 | + } |
| 130 | + |
| 131 | + public override bool Equals(object obj) |
| 132 | + { |
| 133 | + if (obj is null) |
| 134 | + { |
| 135 | + return false; |
| 136 | + } |
| 137 | + |
| 138 | + if (ReferenceEquals(this, obj)) |
| 139 | + { |
| 140 | + return true; |
| 141 | + } |
| 142 | + |
| 143 | + if (obj.GetType() != GetType()) |
| 144 | + { |
| 145 | + return false; |
| 146 | + } |
| 147 | + |
| 148 | + return Equals((SimpleAggregate)obj); |
| 149 | + } |
| 150 | + |
| 151 | + public override int GetHashCode() |
| 152 | + { |
| 153 | + return HashCode.Combine(Id, ACount, BCount, CCount, DCount, ECount); |
| 154 | + } |
| 155 | +} |
0 commit comments