.NET Core 2.0 单元测试中初识 IOptionsMonitoramp;lt;Tamp;gt;
生活随笔
收集整理的這篇文章主要介紹了
.NET Core 2.0 单元测试中初识 IOptionsMonitoramp;lt;Tamp;gt;
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
在針對下面設置?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?的實現(xiàn)代碼才知道需要通過?IOptionsMonitor<CookieAuthenticationOptions> 接口解析,而且需要調用該接口的 Get() 方法(而不是 CurrentValue 屬性)根據(jù)指定的?AuthenticationScheme 才能獲取到所需的?CookieAuthenticationOptions 實例。
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跨平臺或掃描二維碼關注
總結
以上是生活随笔為你收集整理的.NET Core 2.0 单元测试中初识 IOptionsMonitoramp;lt;Tamp;gt;的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 【上海】关于云计算,你想学习哪些知识,快
- 下一篇: Remoting核心类库RealProx