When writing unit tests using Moq anytime I call the Elmah.ErrorSignal.FromCurrentContext
it fails with a null reference exception. I am able to mock the ControllerContext
and I would like to just use an error log command like this..
Elmah.ErrorSignal.FromContext(ControllerContext.HttpContext).Raise(e);
but unfortunately the ControllerContext.HttpContext
is of type HttpContextBase
and won't work with this error logging method.
Is there a better way to call the Elmah error logging directly? Unfortunately the Application.HttpContext
object cannot be mocked (below example) or that would also serve the purpose.
Mock Application
and Application.HttpContext
:
ctrlCtx.SetupGet(x => x.HttpContext.ApplicationInstance)
.Returns(new Mock<HttpApplication>().Object);
ctrlCtx.SetupGet(x => x.HttpContext.ApplicationInstance.Context)
.Returns(new Mock<HttpContext>().Object);
Error Produced:
Invalid setup on a non-virtual (overridable in VB) member
Though you can't mock HttpContext, you can set up HttpContext.Current in your test.
var req = new HttpRequest(string.Empty, "https://www.domain.tld", null);
var res = new HttpResponse(null);
HttpContext.Current = new HttpContext(req, res);
I'm not sure what parts of the context are used by Elmah though.
3rd party edit:
ELMAH also requires System.Web.HttpContext.Current.ApplicationInstance
Dim req As System.Web.HttpRequest = New System.Web.HttpRequest(String.Empty, "https://www.domain.tld", Nothing)
Dim res As System.Web.HttpResponse = New System.Web.HttpResponse(Nothing)
System.Web.HttpContext.Current = New System.Web.HttpContext(req, res)
System.Web.HttpContext.Current.ApplicationInstance = New System.Web.HttpApplication()
otherwise it throws an exception because application name is NULL.
Further edit:
Here is the final code in C#:
var req = new HttpRequest(string.Empty, "https://www.domain.tld", null);
var res = new HttpResponse(null);
HttpContext.Current = new HttpContext(req, res)
{ApplicationInstance = new HttpApplication()};
One thing you can do to log the error differently in Elmah is to use:
Elmah.ErrorLog.GetDefault(null).Log(new Elmah.Error(e));
Although this will not log an error from the unit test it will at least skip the logging altogether in the unit test and still log the error in normal circumstances.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With