我一直在使用在Hanselman的博客上发现的MvcMockHelpers类来传递模拟的HttpContext。我们对其进行了扩展,以添加一些我们需要的身份验证数据,在大多数情况下这非常好。
我们遇到的问题是我们提供给控制器的上下文在HttpContext.Response.Output中具有空值,这导致抛出一些异常。我不确定该添加什么才能使其正常工作。
这是现有的FakeHttpContext()方法:
public static HttpContextBase FakeHttpContext()
{
var context = new Mock<HttpContextBase>();
var request = new Mock<HttpRequestBase>();
var response = new Mock<HttpResponseBase>();
var session = new Mock<HttpSessionStateBase>();
var server = new Mock<HttpServerUtilityBase>();
// Our identity additions ...
var user = new Mock<IPrincipal>();
OurIdentity identity = (OurIdentity)Thread.CurrentPrincipal.Identity;
context.Expect(ctx => ctx.Request).Returns(request.Object);
context.Expect(ctx => ctx.Response).Returns(response.Object);
context.Expect(ctx => ctx.Session).Returns(session.Object);
context.Expect(ctx => ctx.Server).Returns(server.Object);
context.Expect(ctx => ctx.User).Returns(user.Object);
context.Expect(ctx => ctx.User.Identity).Returns(identity);
return context.Object;
}
这是爆炸方法(其中包括MVC Contrib项目的XmlResult):
public override void ExecuteResult(ControllerContext context)
{
if (_objectToSerialize != null)
{
var xs = new XmlSerializer(_objectToSerialize.GetType());
context.HttpContext.Response.ContentType = "text/xml";
xs.Serialize(context.HttpContext.Response.Output, _objectToSerialize);
}
}
我需要在FakeHttpContext方法中添加什么来防止当引用context.HttpContext.Response.Output时出现空异常?
澄清:我正在寻找的解决方案需要在Moq中完成,而不是Rhino。我在问题标题中提到了Moq,但在问题正文中忽略了这一点。 对于任何困惑,我深感抱歉。
Resolution I added the following two lines of code to the FakeHttpContext() method:
var writer = new StringWriter();
context.Expect(ctx => ctx.Response.Output).Returns(writer);
这可以避免出现Null异常。不确定这是一个长期的好答案,但它现在有用。