• .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);
    }
  • 相关阅读:
    对比度亮度调整及滑动条应用
    多项式求逆
    【转载】android手势翻页效果
    [Android实例] webview 实现翻页功能
    (转载)Android 平滑和立体翻页效果1
    android背景选择器selector用法
    WebView调用javaScript
    (转载自eoe论坛)Android上百实例源码分析以及开源分析集合打包
    android用户界面之WebView教程实例汇总
    WebView使用总结(应用函数与JS函数互相调用)
  • 原文地址:https://www.cnblogs.com/dudu/p/7424667.html
Copyright © 2020-2023  润新知