我有几个 UrlHelper
扩展方法要进行单元测试。但是,当路径以“~/”开头时,我从 NullReferenceException
方法中获得了 UrlHelper.Content(string)
。有谁知道是什么问题?
[Test]
public void DummyTest()
{
var context = new Mock<HttpContextBase>();
RequestContext requestContext = new RequestContext(context.Object, new RouteData());
UrlHelper urlHelper = new UrlHelper(requestContext);
string path = urlHelper.Content("~/test.png");
Assert.IsNotNullOrEmpty(path);
}
最佳答案
当您使用 RouteContext 创建 UrlHelper 时,单元测试环境中的 HttpContext 为空。没有它,当您尝试调用任何依赖它的方法时,您会遇到很多 NullReferenceExceptions。
有许多关于模拟各种 Web 上下文的线程。你可以看看这个:
How do I mock the HttpContext in ASP.NET MVC using Moq?
或者这个
Mock HttpContext.Current in Test Init Method
编辑:
以下将起作用。请注意,您需要模拟 HttpContext.Request.ApplicationPath 和 HttpContext.Response.ApplyAppPathModifier()。
[Test]
public void DummyTest() {
var context = new Mock<HttpContextBase>();
context.Setup( c => c.Request.ApplicationPath ).Returns( "/tmp/testpath" );
context.Setup( c => c.Response.ApplyAppPathModifier( It.IsAny<string>( ) ) ).Returns( "/mynewVirtualPath/" );
RequestContext requestContext = new RequestContext( context.Object, new RouteData() );
UrlHelper urlHelper = new UrlHelper( requestContext );
string path = urlHelper.Content( "~/test.png" );
Assert.IsNotNullOrEmpty( path );
}
我在以下线程中找到了详细信息:
Where does ASP.NET virtual path resolve the tilde "~"?
关于asp.net-mvc - 在单元测试中调用 UrlHelper.Content(string) 时出现 NullReferenceException,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12700415/