zoukankan      html  css  js  c++  java
  • .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);
    }
  • 相关阅读:
    go语言时间格式化----go语言学习笔记(二)
    go语言模拟post请求----go语言学习笔记(一)
    beego框架配置mysql
    django---request在url中传值请求其他服务的get请求,获取请求头
    nginx+uwsgi+ubuntu 部署django
    集成jenkins自动安装apk文件
    python数据可视化之flask+echarts(二)
    httpd 2.2 实验小结
    CentOS 6安装详解及PXE 安装
    有关安全知识点及实验小结
  • 原文地址:https://www.cnblogs.com/dudu/p/7424667.html
Copyright © 2011-2022 走看看