1

找不到测试不起作用的原因。有人知道为什么会这样吗?这两个测试之间的区别仅在于视图。第一个是“.html”页面,第二个是“.liquid”。在我的项目中,我使用“.liquid”,因此“.html”仅用于测试正确的工作测试。我有一个南希模块

public sealed class Module : NancyModule
{
    public Module(IBackend storage)
    {
        Get["/"] = _ => View["Create.liquid"];     
        Get["/Test"] = _ => View["TestHtml.html"];
    }
}

和测试

[Test]
public void test_html()
{
    // Given
    var bootstrapper = new ConfigurableBootstrapper(with =>
    {
        var module = new Module(new Endpoint());
        with.Module(module);
    });
    browser = new Browser(bootstrapper);

    // When
    var result = browser.Get("/Test", with =>
    {
        with.HttpRequest();
    });

    // Then
    Assert.AreEqual(HttpStatusCode.OK, result.StatusCode);
}

[Test]
public void test_liquid()
{
    // Given
    var bootstrapper = new ConfigurableBootstrapper(with =>
    {
        var module = new Module(new Endpoint());
        with.Module(module);
    });
    browser = new Browser(bootstrapper);

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

    // Then
    Assert.AreEqual(HttpStatusCode.OK, result.StatusCode);
}

第二次测试有异常

System.Exception : ConfigurableBootstrapper Exception
----> Nancy.RequestExecutionException : Oh noes!
----> Nancy.ViewEngines.ViewNotFoundException : Unable to locate view 'Create.liquid'
Currently available view engine extensions: sshtml,html,htm
Locations inspected: ,,,,,,,,views/Module/Create.liquid-en-    US,views/Module/Create.liquid,Module/Create.liquid-en-US,Module/Create.liquid,views/Create.liquid-en-US,views/Create.liquid,Create.liquid-en-US,Create.liquid
Root path: D:\Projects\epm-vsp-pasta\Tests\bin\Debug

使用堆栈跟踪

at Nancy.Testing.PassThroughStatusCodeHandler.Handle(HttpStatusCode statusCode, NancyContext context) in d:\Nancy-master\src\Nancy.Testing\PassThroughStatusHandler.cs: line 22
at Nancy.NancyEngine.CheckStatusCodeHandler(NancyContext context) in d:\Nancy-master\src\Nancy\NancyEngine.cs: line 219
at Nancy.NancyEngine.HandleRequest(Request request, Func`2 preRequest) in d:\Nancy-master\src\Nancy\NancyEngine.cs: line 112
at Nancy.NancyEngine.HandleRequest(Request request) in d:\Nancy-master\src\Nancy\NancyEngine.cs: line 77
at Nancy.Testing.Browser.HandleRequest(String method, String path, Action`1 browserContext) in d:\Nancy-master\src\Nancy.Testing\Browser.cs: line 125
at Nancy.Testing.Browser.Get(String path, Action`1 browserContext) in d:\Nancy-master\src\Nancy.Testing\Browser.cs: line 62
at Tests.TestModule.test_liquid() in TestModule.cs: line 111 --RequestExecutionException
at Nancy.NancyEngine.InvokeOnErrorHook(NancyContext context, ErrorPipeline pipeline, Exception ex) in d:\Nancy-master\src\Nancy\NancyEngine.cs: line 272
--ViewNotFoundException    
4

3 回答 3

2

这与 .NET 程序集加载有关。由于没有直接使用 Nancy.ViewEngines.Dotliquid 程序集中的类型,.NET 编译器认为它可以是智能的,并且不会在程序集元数据中包含引用。这导致程序集在运行时根本没有加载到应用程序域中。

它适用于 .html 文件的原因是管理 .html 扩展的 SuperSimpleViewEngine 内置在 Nancy.dll 中并已加载。

您可以通过显式使用程序集中的类型来解决此问题,例如var foo = typeof(DotLiquidViewEngine)在测试代码中放置类似的内容,或者使用ViewEngine<DotLiquidViewEngine>()可配置引导程序设置上的属性。

对于我们的下一个版本 0.17,我们添加了代码以尽可能减少这种影响,方法是扫描“bin”文件夹中的程序集并显式加载任何引用 Nancy* 程序集的程序集。

希望这可以帮助

于 2013-03-06T11:43:45.657 回答
1

看起来您还没有从您的测试项目中引用液体视图引擎:

当前可用的视图引擎扩展:sshtml,html,htm

于 2013-03-06T11:59:28.737 回答
0

如果页面未复制到输出目录,我已经看到会发生这种情况。

即在 Visual Studio 中检查 .liquid 文件的属性,并确保它具有与工作 .html 文件相同的“复制到输出目录”设置。

于 2015-08-15T20:53:12.457 回答