gpt4 book ai didi

elasticsearch - ElasticSearch NEST 5.6.1查询单元测试

转载 作者:行者123 更新时间:2023-12-02 23:19:51 25 4
gpt4 key购买 nike

我写了一堆查询来进行 flex 搜索,我想为它们编写一个单元测试。使用moq an elastic connection这篇文章,我可以进行一般的模拟。但是,当我尝试查看从查询生成的Json时,我没有设法以任何方式获取它。
我尝试按照此帖子elsatic query moq进行操作,但它仅与Nest的旧版本相关,因为ConnectionStatus对象不再可以使用RequestInformationISearchResponse方法。

我的测试如下:

[TestMethod]
public void VerifyElasticFuncJson()
{
//Arrange
var elasticService = new Mock<IElasticService>();
var elasticClient = new Mock<IElasticClient>();
var clinet = new ElasticClient();
var searchResponse = new Mock<ISearchResponse<ElasticLog>>();
elasticService.Setup(es => es.GetConnection())
.Returns(elasticClient.Object);

elasticClient.Setup(ec => ec.Search(It.IsAny<Func<SearchDescriptor<ElasticLog>,
ISearchRequest>>())).
Returns(searchResponse.Object);

//Act
var service = new ElasticCusipInfoQuery(elasticService.Object);
var FindFunc = service.MatchCusip("CusipA", HostName.GSMSIMPAPPR01,
LogType.Serilog);
var con = GetConnection();
var search = con.Search<ElasticLog>(sd => sd
.Type(LogType.Serilog)
.Index("logstash-*")
.Query(q => q
.Bool(b => b
.Must(FindFunc)
)
)
);
**HERE I want to get the JSON** and assert it look as expected**
}

还有其他方法可以实现我的要求吗?

最佳答案

最好的方法是使用InMemoryConnection捕获请求字节并将其与预期的JSON比较。这就是单元测试NEST所做的。就像是

private static void Main()
{
var pool = new SingleNodeConnectionPool(new Uri("http://localhost:9200"));
var connectionSettings = new ConnectionSettings(pool, new InMemoryConnection())
.DefaultIndex("default")
.DisableDirectStreaming();

var client = new ElasticClient(connectionSettings);

// Act
var searchResponse = client.Search<Question>(s => s
.Query(q => (q
.Match(m => m
.Field(f => f.Title)
.Query("Kibana")
) || q
.Match(m => m
.Field(f => f.Title)
.Query("Elasticsearch")
.Boost(2)
)) && +q
.Range(t => t
.Field(f => f.Score)
.GreaterThan(0)
)
)
);

var actual = searchResponse.RequestJson();

var expected = new
{
query = new {
@bool = new {
must = new object[] {
new {
@bool = new {
should = new object[] {
new {
match = new {
title = new {
query = "Kibana"
}
}
},
new {
match = new {
title = new {
query = "Elasticsearch",
boost = 2d
}
}
}
},
}
},
new {
@bool = new {
filter = new [] {
new {
range = new {
score = new {
gt = 0d
}
}
}
}
}
}
}
}
}
};

// Assert
Console.WriteLine(JObject.DeepEquals(JToken.FromObject(expected), JToken.Parse(actual)));
}

public static class Extensions
{
public static string RequestJson(this IResponse response) =>
Encoding.UTF8.GetString(response.ApiCall.RequestBodyInBytes);
}

我为预期的JSON使用了匿名类型,因为它比转义的JSON字符串更易于使用。

需要注意的一件事是,即使JSON对象中存在重复的对象键(只要最后一个键/值匹配),Json.NET的 JObject.DeepEquals(...)仍将返回 true。如果仅序列化NEST搜索,您不太可能会遇到某些事情,但是需要注意。

如果将要有很多测试检查序列化,则需要创建一个 ConnectionSettings实例并与所有人共享,以便可以利用其中的内部缓存,并且测试将比实例化新实例更快地运行。每个测试中的实例。

关于elasticsearch - ElasticSearch NEST 5.6.1查询单元测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50814564/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com