.NET Core获取配置appsettings.json值

时间:2019-01-30 14:16:32

标签: c# json .net-core nunit

我正在尝试为以下内容编写单元测试:

[TestMethod]
public void GetInviteEndPoint_ShouldAccessAppSettings()
{
    //Data pulled from the appsettings.test.json
    var config = InitConfiguration();
    var inviteEndPointConfig = config["InviteEndPoint"]; // <-- Pain Point

    //Arrange Test && Mock if needed
    string mockInviteEndPoint = "https://graph.microsoft.com/v1.0/invitations";


    //Actual Code from Application (ACT)
    SendInvite sendInvite = new SendInvite();
    string inviteEndPoint = sendInvite.GetInviteEndPoint(config);

    //Assert 
    // Assert always tests (Expected[Arranged], Actual[From Code Base])
    Assert.AreEqual(mockInviteEndPoint, inviteEndPoint);
}

我的appsettings.json和appsettings.test.json看起来都一样。我很难从.json文件中获取值。我想知道是否有人可以提供对我所坚持的这段代码的任何见识。

{
    "SendeInvite": {
        "InviteEndPoint": "https://graph.microsoft.com/v1.0/invitations"
        ...Code Omitted... 
    } 
}

我打错了config["InvitedEndPoint"]吗?

请注意,我在测试类的顶部有以下代码

public static IConfiguration InitConfiguration()
{
    var config = new ConfigurationBuilder()
        .AddJsonFile("appsettings.test.json")
        .Build();
    return config;
}

1 个答案:

答案 0 :(得分:1)

尝试:

var inviteEndPointConfig = config["SendeInvite:InviteEndPoint"];

可能是因为您将属性嵌套在SendeInvite中,所以您没有获得该值。