如何模拟IElasticClient Get方法
本文关键字:IElasticClient Get 方法 模拟 何模拟 | 更新日期: 2023-09-27 18:30:45
这是我的类的最小重现,它通过 Nest 1.7 处理与 Elasticsearch 的通信:
public class PeopleRepository
{
private IElasticClient client;
public PeopleRepository(IElasticClient client)
{
this.client = client;
}
public Person Get(string id)
{
var getResponse = client.Get<Person>(p => p.Id(id));
// Want to test-drive this change:
if (getResponse.Source == null) throw new Exception("Person was not found for id: " + id);
return getResponse.Source;
}
}
如代码中所述,我正在尝试测试某个更改。我正在使用 NUnit 2.6.4 和 Moq 4.2 尝试通过以下方式执行此操作:
[Test]
public void RetrieveProduct_WhenDocNotFoundInElastic_ThrowsException()
{
var clientMock = new Mock<IElasticClient>();
var getSelectorMock = It.IsAny<Func<GetDescriptor<Person>, GetDescriptor<Person>>>();
var getRetvalMock = new Mock<IGetResponse<Person>>();
getRetvalMock
.Setup(r => r.Source)
.Returns((Person)null);
clientMock
.Setup(c => c.Get<Person>(getSelectorMock))
.Returns(getRetvalMock.Object);
var repo = new PeopleRepository(clientMock.Object);
Assert.Throws<Exception>(() => repo.Get("invalid-id"));
}
但是,我错误地模拟了各种 ElasticClient 位:IElasticClient
上的 Get
方法返回 null,从而在我的代码抛出我希望它抛出的异常之前导致 NullReferenceException 在getResponse.Source
上。
如何在IElasticClient
上正确模拟Get<T>
方法?
不能
在Setup
调用之外使用 It.IsAny
方法,否则它会将其视为 null。将It.IsAny
移动到设置中应该可以工作:
clientMock
.Setup(c => c.Get<Person>(It.IsAny<Func<GetDescriptor<Person>, GetDescriptor<Person>>>()))
.Returns(getRetvalMock.Object);