作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试模拟 IHeadersDictionary,每当我尝试访问它时,我都会返回 Null。
public interface IRequestScopeContext
{
IHeaderDictionary Headers { get; set; }
ISessionInfo SessionInfo { get; set; }
HttpContext HttpContextInfo { get; set; }
}
[SetUp]
public void Setup()
{
var headers = new Dictionary<string, string>
{
{ "Key", "Value"}
} as IHeaderDictionary;
var sessionInfo = new SessionInfo
{
AccountId = "AccountId",
UserId = "UserId",
};
requestScopeContext = new Mock<IRequestScopeContext>();
requestScopeContext.Setup(x => x.Headers).Returns(headers);
requestScopeContext.Setup(x => x.SessionInfo).Returns(sessionInfo);
serviceProvider = new Mock<IServiceProvider>();
serviceProvider.Setup(sp => sp.GetService(It.Is<Type>((Type t) => t.Name.Equals("IRequestScopeContext")))).Returns(requestScopeContext.Object);
httpContextAccessor = new Mock<IHttpContextAccessor>();
httpContextAccessor.Setup(x => x.HttpContext.RequestServices).Returns(serviceProvider.Object);
}
我也试过用
requestScopeContext.Setup(x => x.Headers.Add( "Key", "Value"));
但每当我访问 requestScopeContext.Headers
时,它都会返回 null。
我应该如何模拟这本字典?
我的测试方法是这样的
[Test]
public void SessionHelper_InvokeConstructor_Should_ReturnValidObject()
{
var sessionHelper = new SessionHelper(httpContextAccessor.Object);
Assert.IsNotNull(sessionHelper);
}
这是我正在测试的代码。
public SessionHelper(IHttpContextAccessor httpContextAccessor)
{
IRequestScopeContext requestScopeContext = (IRequestScopeContext)httpContextAccessor.HttpContext.RequestServices.GetService(typeof(IRequestScopeContext));
currentAccountId = requestScopeContext.SessionInfo?.AccountId;
currentUserId = requestScopeContext.SessionInfo?.UserId;
requestId = requestScopeContext.Headers?["key"];
}
最佳答案
正如@Iurii Maksimov 提到的,您的转换不正确 - Dictionary<string, string>
之间没有直接转换和 IHeaderDictionary
,改用这个:
var headers = new HeaderDictionary(new Dictionary<String, StringValues>
{
{ "Key", "Value"}
}) as IHeaderDictionary;
关于c# - IHeadersDictionary 在模拟后返回 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52855484/
我正在尝试模拟 IHeadersDictionary,每当我尝试访问它时,我都会返回 Null。 public interface IRequestScopeContext { IHeader
我是一名优秀的程序员,十分优秀!