.NET Core 2.0 单元测试中初识 IOptionsMonitoramp;lt;Tamp;gt;
在針對(duì)下面設(shè)置?CookieAuthenticationOptions 的擴(kuò)展方法寫單元測(cè)試時(shí)遇到了問題。?
public static IServiceCollection AddCnblogsAuthentication(this IServiceCollection services, IConfigurationSection redisConfiguration, Action<CookieAuthenticationOptions> configureOption = null) { ? ?//...}想通過下面的單元測(cè)試驗(yàn)證對(duì)?CookieAuthenticationOptions 的設(shè)置是否生效:
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 實(shí)例的值都是默認(rèn)值, AddCnblogsAuthentication() 中的設(shè)置沒生效。
后來查看?CookieAuthenticationHandler?的實(shí)現(xiàn)代碼才知道需要通過?IOptionsMonitor<CookieAuthenticationOptions> 接口解析,而且需要調(diào)用該接口的 Get() 方法(而不是 CurrentValue 屬性)根據(jù)指定的?AuthenticationScheme 才能獲取到所需的?CookieAuthenticationOptions 實(shí)例。
public void AddCnblogsAuthenticationTest() { ? ?//...var options = services.BuildServiceProvider().GetRequiredService<IOptionsMonitor<CookieAuthenticationOptions>>().Get(CookieAuthenticationDefaults.AuthenticationScheme);Assert.Equal("/users/signin", options?.LoginPath); }原文地址:http://www.cnblogs.com/dudu/p/7424667.html
.NET社區(qū)新聞,深度好文,微信中搜索dotNET跨平臺(tái)或掃描二維碼關(guān)注
總結(jié)
以上是生活随笔為你收集整理的.NET Core 2.0 单元测试中初识 IOptionsMonitoramp;lt;Tamp;gt;的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 【上海】关于云计算,你想学习哪些知识,快
- 下一篇: .NET Core+Selenium+G