依赖注入不能与ASPNETCore.TestHost一起使用

时间:2017-12-14 16:37:26

标签: c# asp.net-core integration-testing asp.net-core-testhost

我一直在努力解决这个问题。我的WebAPI应用程序在本地计算机和生产服务器上运行良好,但在具有依赖项注入的控制器的集成测试期间失败。一切看起来都很干净,我不知道为什么这不起作用。

所以这里有模块: 控制器:

public SurveyController(IBoatInspectorRepository<Survey> repository)
{
    _repository = repository;
}

[HttpGet]
public IEnumerable<string> Get()
{
    return new string[] {"value1", "value2"};
}

启动:

public void ConfigureServices(IServiceCollection services)
{
    services.AddScoped<IBoatInspectorRepository<Survey>, BoatInspectorRepository<Survey>>();
}

测试:

[Test]
public async Task GetSurveyDb_NullReturn_ReturnNotFound()
{  
    using (var testServer = CreateTestServer())
    {
        var client = testServer.CreateClient();
        var value = await client.GetAsync("/api/survey/");
    }
}  

private TestServer CreateTestServer()
{
    var builder = new WebHostBuilder()                
        .UseStartup<Startup>()
        .ConfigureServices(services => 
            services.AddScoped<IBoatInspectorRepository<Survey>, BoatInspectorRepository<Survey>>());

    return new TestServer(builder);                
}

如果我调试它,调试器甚至不会进入控制器构造函数。如果我注释掉构造函数并创建一个空的,那么一切正常,所以它与依赖注入有100%的关系。请帮忙。谢谢。

更新1

所以它似乎是上下文初始化的问题,因为如果我执行以下操作,构造函数也不会被初始化。

    public SurveyController(BoatInspectorContext context)
    {
     //debuger doesn't go inside here so must be something with context   
    }

1 个答案:

答案 0 :(得分:0)

所以在经历了两个不眠之夜之后,我发现了错误......由于某些不合理的原因,测试服务器无法使用

从apsettings.json读取连接字符串到我的数据库
.AddDbContext<BoatInspectorContext>(
                opt=>opt.UseNpgsql(Configuration.GetConnectionString("BoatInspectorConnectionString")));

所以我所要做的只是

.AddDbContext<BoatInspectorContext>(
                opt => opt.UseNpgsql(
                    connectionString:
                    "my_magic_connection_string"));

由于某些原因,这个错误没有出现在任何地方,或者在我发现它说它非常明显之后我没有看到它。