NancyFx和单元测试Response.AsFile(...)因NotFound而失败

时间:2014-04-28 14:45:13

标签: c# .net testing nancy

这是我的(简化)模块

public class MyModule : NancyModule
{
    public MyModule() : base("/path")
    {
        Get["/{filename}"] = x =>
        {
            var fileName = (string)x.filename;
            var path = Path.Combine("files", fileName);
            if (!File.Exists(path)) throw new FileNotFoundException();

            return Response.AsFile(path);
        }
    }
}

此代码可以正常运行并成功将正确的文件传送到浏览器。

现在我写了一个测试:

    [TestMethod, DeploymentItem("file.txt", "files")]
    public void CanDownloadFile()
    {

        var path = @"files\file.txt";
        Assert.IsTrue(File.Exists(path));

        var bootstrapper = new MyBootstrapper();
        var browser = new Browser(bootstrapper); // from Nancy.Testing

        var result = browser.Get("/path/file.txt", with =>
        {
            with.HttpRequest();
        });

        var body = result.Body.AsString();
        Assert.AreEqual(HttpStatusCode.OK, result.StatusCode);
    }

使用此代码,我的测试失败,因为StatusCode是NotFound而不是OK

我甚至尝试用

替换Response.AsFile()
var info = new FileInfo(path);
return new GenericFileResponse(info.FullName);

并且三重检查文件确实存在于执行我的测试的磁盘上。

有什么问题?

1 个答案:

答案 0 :(得分:0)

解决方案中包含文件“file.txt”吗?包括这个。

在Visual Studio的文件属性中,将“复制到输出目录”属性更改为“如果更新则复制。”

但是您不需要创建模块来执行此操作。 Yo可以管理Nancy bootstrapper中的静态内容。这是文档https://github.com/NancyFx/Nancy/wiki/Managing-static-content

这样做,你不需要测试它。