public void StepThroughIfAggregateHashUnchanged() { var pipelineHook = new AggregateStateValidator(); var aggregate = new FakeAggregate(); aggregate.UpdateHash(); pipelineHook.PreSave(aggregate, null); }
public void ThrowMemberAccessExceptionIfHashInvalid() { var pipelineHook = new AggregateStateValidator(); var aggregate = new FakeAggregate(); aggregate.UpdateHash(); aggregate.State = Guid.NewGuid(); Assert.Throws<MemberAccessException>(() => pipelineHook.PostGet(aggregate)); }
public void ThrowMemberAccessExceptionIfHashInvalid() { var pipelineHook = new AggregateStateValidator(); var aggregate = new FakeAggregate(); aggregate.UpdateHash(); aggregate.State = Guid.NewGuid(); Assert.Throws <MemberAccessException>(() => pipelineHook.PreSave(aggregate, null)); }
public void StepThroughOnErrorIfAggregateHashUnchanged() { var pipelineHook = new AggregateStateValidator(); var aggregate = new FakeAggregate(); aggregate.UpdateHash(); pipelineHook.PostSave(aggregate, null, new InvalidOperationException()); aggregate.VerifyHash(); }
public void UpdateHashOnSuccessfulSave() { var commit = (Commit)FormatterServices.GetUninitializedObject(typeof(Commit)); var pipelineHook = new AggregateStateValidator(); var aggregate = new FakeAggregate(); aggregate.UpdateHash(); aggregate.State = Guid.NewGuid(); pipelineHook.PostSave(aggregate, commit, null); aggregate.VerifyHash(); }
public void ThrowMemberAccessExceptionOnErrorIfHashInvalid() { var pipelineHook = new AggregateStateValidator(); var aggregate = new FakeAggregate(); aggregate.UpdateHash(); aggregate.State = Guid.NewGuid(); Assert.Throws<MemberAccessException>(() => pipelineHook.PostSave(aggregate, null, new InvalidOperationException())); }