我正在使用SoapCore使用asp.net core 2创建一个WCF-ish类型的应用程序。
这对我来说很好,但是在集成测试我的终端时,我有点碰到砖墙。
由于SoapCore是一个中间件并且与任何api控制器无关,我无法使用HttpClient来测试端点,因此TestServer对我没有用。
我的问题是如何在不使用TestServer的情况下与我的集成测试并行运行红隼,或者在这种情况下是否有办法利用TestServer?
我不认为这里的任何代码可能有任何用处,但到目前为止我所得的代码如下。
Startup.cs
public class Startup
{
public Startup(IConfiguration configuration)
{
Configuration = configuration;
}
public IConfiguration Configuration { get; }
public void ConfigureServices(IServiceCollection services)
{
services.AddTransient<IPaymentService>(service => new Services.PaymentService());
services.AddMvc();
}
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
}
app.UseSoapEndpoint<IPaymentService>("/PaymentService.svc", new BasicHttpBinding());
app.UseMvc();
}
}
PaymentService
[ServiceContract]
public interface IPaymentService
{
[OperationContract]
string ReadPaymentFiles(string caller);
}
public class PaymentService : IPaymentService
{
public string ReadPaymentFiles(string caller)
{
return caller;
}
}
我的一项测试:
public void Should_Get_Soap_Response_From_PaymentService()
{
var testServerFixture = new TestServerFixture();
var binding = new BasicHttpBinding();
var endpoint = new EndpointAddress(new Uri("http://localhost:5000/PaymentService.svc"));
var channelFactory = new ChannelFactory<IPaymentService>(binding, endpoint);
var serviceClient = channelFactory.CreateChannel();
var response = serviceClient.ReadPaymentFiles("Ping");
channelFactory.Close();
}
该测试现在没有做任何事情,因为它没有调用任何实时端点,这是我的问题......
答案 0 :(得分:4)
您可以使用Microsoft.AspNetCore.Hosting
这样的自托管。在测试执行之前,您可以运行webHost
,然后在此主机上执行文本。
public MyTestStartup()
{
_webhost = WebHost.CreateDefaultBuilder(null)
.UseStartup<Startup>()
.UseKestrel()
.UseUrls(BASE_URL)
.Build();
_webhost.Start();
}