We have a method being unit tested. Here's the method:
protected override void DoWork()
{
bool success = false;
string logMessage = String.Empty;
try
{
LoggingComponent.LogTaskStarting( TaskLogCode, "Purging PasswordResetRequest..." );
UserStoreComponent.PurgePasswordResetRequest();
success = true;
}
catch( Exception ex )
{
Exception exceptionToLog = ex;
while( exceptionToLog != null )
{
logMessage += exceptionToLog.Message + "<br>";
exceptionToLog = exceptionToLog.InnerException;
}
throw;
}
finally
{
logMessage += String.Format( "Purge PasswordResetRequest {0}.", success ? "Completed" : "Failed" );
LoggingComponent.LogTaskComplete( TaskLogCode, logMessage, success );
}
}
And here's the unit test:
public void DoWork_Success()
{
UserStoreComponent userStoreComponent = A.Fake<UserStoreComponent>();
ILoggingComponent loggingComponent = A.Fake<ILoggingComponent>();
PrivateObject po = new PrivateObject(
new PurgePasswordResetRequestTask( userStoreComponent, loggingComponent ) );
po.Invoke( "DoWork" );
A.CallTo( () => loggingComponent.LogTaskStarting( "PURGERESETREQUEST", "Purging PasswordResetRequest..." ) )
.MustHaveHappened();
A.CallTo( () => loggingComponent.LogTaskComplete( "PURGERESETREQUEST", "Purge PasswordResetRequest Completed.", true ) )
.MustHaveHappened();
A.CallTo( () => userStoreComponent.PurgePasswordResetRequest() )
.MustHaveHappened();
}
Sometimes, on the first call to MustHaveHappened(), we get a NullReferenceException from inside of FakeItEasy. Here's the stack trace.
FakeItEasy.Expressions.ExpressionCallMatcher.Matches(IFakeObjectCall call)
FakeItEasy.Expressions.ExpressionCallRule.OnIsApplicableTo(IFakeObjectCall fakeObjectCall)
FakeItEasy.Configuration.BuildableCallRule.IsApplicableTo(IFakeObjectCall fakeObjectCall)
FakeItEasy.Configuration.RuleBuilder.RuleMatcher.Matches(IFakeObjectCall call)
System.Linq.Enumerable.Count[TSource](IEnumerable`1 source, Func`2 predicate)
FakeItEasy.Core.FakeAsserter.AssertWasCalled(Func`2 callPredicate, String callDescription, Func`2 repeatPredicate, String repeatDescription)
FakeItEasy.Configuration.RuleBuilder.MustHaveHappened(Repeated repeatConstraint)
FakeItEasy.FakeExtensions.MustHaveHappened(IAssertConfiguration configuration)
DoWork_Success() in PurgePasswordResetRequestTaskTests.cs: line 25
We haven't been able to find a pattern at all. Sometimes it works locally, sometimes it fails. Sometimes it works in our build environment, sometimes it fails.
I'm not really expecting an answer of "Oh, there's your problem", but any ideas of where else to look would be appreciated.