servicestack AppHostHttpListenerBase handlerpath参数不起作用?

时间:2012-09-25 20:34:08

标签: servicestack

不确定我在这里遗失了什么。我在单元测试中使用AppHostHttpListenerBase来测试服务,在其构造函数中,我为handlerPath参数传递“api”。我在/ hello / {Name}注册了一个服务,并且使用的是servicestack版本3.9.17。

如果我访问

,则在我的appHost类的Config方法中

EndpointHostConfig.Instance.ServiceStackHandlerFactoryPath

它重新出现“api”

一旦我回到单元测试中,同一个调用返回null

如果我尝试使用/ hello / test调用该服务,它可以工作。 如果我使用/ api / hello / test则失败

似乎AppHostHttpListenerBase正在丢失handlerPath?

这听起来像是一个错误还是我错过了什么?

下面是代码

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using NUnit.Framework;
using ServiceStack.ServiceClient.Web;
using ServiceStack.ServiceInterface;
using ServiceStack.Text;
using ServiceStack.WebHost.Endpoints;

namespace Bm.Tests
{
    /// <summary>
    /// Test self hosting for unit tests
    /// </summary>
    [TestFixture]
    public class TestService
    {
    private TestServiceAppHost _apphost;
    private const string HOST_URL = @"http://localhost:1337/";
    [TestFixtureSetUp]
    public void TestFixtureSetUp()
    {
        _apphost = new TestServiceAppHost();
        _apphost.Init();
        _apphost.Start(HOST_URL);

    }

    [Test]
    public void TestHelloServiceJson()
    {

        var prefix = EndpointHostConfig.Instance.ServiceStackHandlerFactoryPath;
        Assert.AreEqual("api", prefix, "Should be api");

        var client = new JsonServiceClient(HOST_URL);
        var response = client.Send<HelloResponseTest>(new HelloTest() { Name = "Todd" });
        Assert.AreEqual("Hello, Todd", response.Result);
    }


    [TestFixtureTearDown]
    public void TestFixtureTearDown()
    {
        _apphost.Stop();
        _apphost.Dispose();
    }

    }

    public class HelloTest
    {
    public string Name { get; set; }
    }

    public class HelloResponseTest
    {
    public string Result { get; set; }
    }

    public class HelloServiceTest : ServiceBase<HelloTest>
    {
    protected override object Run(HelloTest request)
    {
        return new HelloResponseTest { Result = "Hello, " + request.Name };
    }
    }

    //Define the Web Services AppHost
    public class TestServiceAppHost : AppHostHttpListenerBase
    {
    public TestServiceAppHost() : base("testing HttpListener", "api", typeof(HelloServiceTest).Assembly) { }

    public override void Configure(Funq.Container container)
    {
        // this works and returns api
        var prefix = EndpointHostConfig.Instance.ServiceStackHandlerFactoryPath;
        Routes
                .Add<HelloTest>("/hello")
                .Add<HelloTest>("/hello/{Name}");
    }
    }
}

1 个答案:

答案 0 :(得分:1)

如果您希望处理程序根路径为/api,则需要将其添加到侦听器URL,即:

_apphost.Start("http://localhost:1337/api/");