When testing:
httpContext.Response.Redirect(httpContext.Response.ApplyAppPathModifier(httpContext.Request.RawUrl), true);
I was expecting that this would do it:
global::System.Web.HttpContext httpContext = RecorderManager.CreateMockedObject<global::System.Web.HttpContext>(Constructor.Mocked, StrictFlags.AllMethods);
using (RecordExpectations recorder = RecorderManager.StartRecording())
{
httpContext.Response.Redirect(httpContext.Response.ApplyAppPathModifier(httpContext.Request.RawUrl), true);
}
But it fails with:
TypeMock.TypeMockException:
*** Mocked return value of HttpContext.get_Response() is unknown, use recorder.Return().
*** Note: Cannot mock types from mscorlib assembly..
Not what I expected, but it can be solved by changing the test to:
global::System.Web.HttpContext httpContext = RecorderManager.CreateMockedObject<global::System.Web.HttpContext>(Constructor.Mocked, StrictFlags.AllMethods);
using (RecordExpectations recorder = RecorderManager.StartRecording())
{
recorder.ExpectAndReturn(global::System.Web.Security.FormsAuthentication.CookiesSupported, false);
recorder.ExpectAndReturn(httpContext.Request.RawUrl, "httpContext.Request.RawUrl");
recorder.ExpectAndReturn(httpContext.Response.ApplyAppPathModifier(null), "httpContext.Response.ApplyAppPathModifier()");
httpContext.Response.Redirect(null, true);
}
Now the tested code is failing with a NullReferenceException.
I had to change the tested code to:
string redirectUrl = httpContext.Response.ApplyAppPathModifier(httpContext.Request.RawUrl);
httpContext.Response.Redirect(redirectUrl, true);
What am I doing wrog?