私のロガーが例外を適切に記録していることを確認できるように、例外処理の周りに単体テストを作成しようとしています。私は私のテストのために、以下に私が持っているモックフレームワークとMicrosoft.Extensions.Logging.ILogger
としてNSubstituteを使用しています:NS代替ILogger .NETコア
[Fact]
public void LogsExcpetionWhenErrorOccursInCreate()
{
var newUser = new UserDataModel
{
FirstName = "Rick",
MiddleName = "Jason",
LastName = "Grimes",
Email = "[email protected]",
Created = new DateTime(2007, 8, 15)
};
var exception = new Exception("Test Exception");
// configure InsertOne to throw a generic excpetion
_mongoContext.InsertOne(newUser).Returns(x => { throw exception; });
try
{
_collection.Create(newUser);
}
catch
{
// validate that the logger logs the exception as an error
_logger.Received().LogError(exception.Message);
}
}
次のような方法でログをテストするために:
public UserDataModel Create(UserDataModel user)
{
try
{
return MongoContext.InsertOne(user);
}
catch(Exception e)
{
_logger?.LogError(e.Message);
throw new DataAccessException("An error occurred while attempting to create a user.", e);
}
}
私のテストがで失敗します次のエラー:
Message: NSubstitute.Exceptions.ReceivedCallsException : Expected to receive a call matching:
Log<Object>(Error, 0, Test Exception, <null>, Func<Object, Exception, String>)
Actually received no matching calls.
Received 1 non-matching call (non-matching arguments indicated with '*' characters):
Log<Object>(Error, 0, *Test Exception*, <null>, Func<Object, Exception, String>)
これがなぜ失敗するのかわかりませんなぜなら、エラーメッセージであっても、呼び出しは同じであるからです。
ありがとうございます!
更新:
public UserCollectionTest()
{
_mongoContext = Substitute.For<IMongoContext<UserDataModel>>();
_logger = Substitute.For<ILogger>();
// create UserCollection with our mock client
_collection = new UserCollection(_mongoContext, _logger);
}
ILogger代替品を作成して注入する方法を明確にしてください。 –
私はテストのコンストラクタでポストを更新しました。これがサブを注入しています。 –