public void UpdateAsync_ShouldNotCatchException_WhenInnerThrowsException_AndTypeIsWrong(bool handlerReturnValue) { // Arrange var entity = new FakeEntity <int> { Id = 5 }; InvalidOperationException actualException = null; _mockInner .Setup(i => i.UpdateAsync(entity)) .ThrowsAsync(new Exception()); var subject = new AsyncCommandServiceExceptionHandler <FakeEntity <int>, int, InvalidOperationException>(_mockInner.Object, ex => { actualException = ex; return(handlerReturnValue); }); // Act Func <Task> action = async() => await subject.UpdateAsync(entity).ConfigureAwait(false); // Assert action.Should().Throw <Exception>(); actualException.Should().BeNull(); _mockInner.VerifyAll(); }
public async Task UpdateAsync_ShouldInvokeHandler_WhenInnerThrowsException_AndHandlerReturnsTrue() { // Arrange var entity = new FakeEntity <int> { Id = 5 }; var expectedException = new InvalidOperationException(); InvalidOperationException actualException = null; _mockInner .Setup(i => i.UpdateAsync(entity)) .ThrowsAsync(expectedException); var subject = new AsyncCommandServiceExceptionHandler <FakeEntity <int>, int, InvalidOperationException>(_mockInner.Object, ex => { actualException = ex; return(true); }); // Act await subject.UpdateAsync(entity).ConfigureAwait(false); // Assert actualException.Should().BeSameAs(expectedException); _mockInner.VerifyAll(); }
public async Task UpdateAsync_ShouldCallInner(bool handlerReturnValue) { // Arrange var entity = new FakeEntity <int> { Id = 5 }; InvalidOperationException actualException = null; _mockInner .Setup(i => i.UpdateAsync(entity)) .Returns(TaskHelpers.CompletedTask); var subject = new AsyncCommandServiceExceptionHandler <FakeEntity <int>, int, InvalidOperationException>(_mockInner.Object, ex => { actualException = ex; return(handlerReturnValue); }); // Act await subject.UpdateAsync(entity).ConfigureAwait(false); // Assert actualException.Should().BeNull(); _mockInner.VerifyAll(); }