.NET Core 2.0 单元测试中初识 IOptionsMonitor<T>

在针对下面设置 CookieAuthenticationOptions 的扩展方法写单元测试时遇到了问题。 

public static IServiceCollection AddCnblogsAuthentication(this IServiceCollection services, 
    IConfigurationSection redisConfiguration, 
    Action<CookieAuthenticationOptions> configureOption = null)
{
    //...
}

想通过下面的单元测试验证对 CookieAuthenticationOptions 的设置是否生效:

public void AddCnblogsAuthenticationTest()
{
    IServiceCollection services = new ServiceCollection();
    var builder = new ConfigurationBuilder();
    builder.AddInMemoryCollection(new Dictionary<string, string>
    {
        ["redis"] = JsonConvert.SerializeObject(new CnblogsRedisOptions())
    });
    var configuration = builder.Build();

    services.AddCnblogsAuthentication(configuration.GetSection("redis"),
        option =>
        {
            option.LoginPath = "/users/signin";
        });

    var options = services.BuildServiceProvider()
        .GetRequiredService<IOptions<CookieAuthenticationOptions>>().Value;
    Assert.Equal("/users/signin", options?.LoginPath);
}

但通过依赖注入解析 IOptions<CookieAuthenticationOptions> 接口得到的 CookieAuthenticationOptions 实例的值都是默认值, AddCnblogsAuthentication() 中的设置没生效。

后来查看 CookieAuthenticationHandler 的实现代码才知道需要通过 IOptionsMonitor<CookieAuthenticationOptions> 接口解析,而且需要调用该接口的 Get() 方法(而不是 CurrentValue 属性)根据指定的 AuthenticationScheme 才能获取到所需的 CookieAuthenticationOptions 实例。

public void AddCnblogsAuthenticationTest()
{
    //...
    var options = services.BuildServiceProvider()
        .GetRequiredService<IOptionsMonitor<CookieAuthenticationOptions>>()
        .Get(CookieAuthenticationDefaults.AuthenticationScheme);
    Assert.Equal("/users/signin", options?.LoginPath);
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值