如何获取HttpContext.Current.Server.MapPath的伪路径,该路径在方法单元测试中分配给受保护
本文关键字:路径 方法 单元测试 受保护 分配 获取 何获取 HttpContext MapPath Server Current | 更新日期: 2023-09-27 18:01:11
我是单元测试MSTest的新手。我得到NullReferenceException
。
如何设置HttpContext.Current.Server.MapPath
进行单元测试?
class Account
{
protected string accfilepath;
public Account(){
accfilepath=HttpContext.Current.Server.MapPath("~/files/");
}
}
class Test
{
[TestMethod]
public void TestMethod()
{
Account ac= new Account();
}
}
HttpContext.Server.MapPath
将需要一个在单元测试期间不存在的底层虚拟目录提供程序。抽象服务背后的路径映射,您可以对其进行模拟以使代码可测试。
public interface IPathProvider {
string MapPath(string path);
}
在具体服务的生产实现中,您可以调用映射路径并检索文件。
public class ServerPathProvider: IPathProvider {
public MapPath(string path) {
return HttpContext.Current.Server.MapPath(path);
}
}
您可以将抽象注入到您的依赖类中,或者在需要和使用的地方
class Account {
protected string accfilepath;
public Account(IPathProvider pathProvider) {
accfilepath = pathProvider.MapPath("~/files/");
}
}
如果没有模拟框架,则使用您选择的模拟框架或伪造的/测试类,
public class FakePathProvider : IPathProvider {
public string MapPath(string path) {
return Path.Combine(@"C:'testproject'",path.Replace("~/",""));
}
}
然后你可以测试系统
[TestClass]
class Test {
[TestMethod]
public void TestMethod() {
// Arrange
IPathProvider fakePathProvider = new FakePathProvider();
Account ac = new Account(fakePathProvider);
// Act
// ...other test code
}
}
并且不耦合到HttpContext
您可以创建另一个以路径为参数的构造函数。这样,您就可以为单元测试传递一个伪路径