gpt4 book ai didi

unit-testing - 如何对 Groovy 脚本进行单元测试,在 Elasticsearch 中用于 _score 计算

转载 作者:行者123 更新时间:2023-11-28 20:30:16 24 4
gpt4 key购买 nike

我想对 Elasticsearch 中使用的 Groovy 脚本进行单元测试。

脚本本身根据 3 个参数和给定的公式计算 _score。我想为该脚本编写一个自动化单元测试,以验证其正确性。

是否有提供此类功能的可用工具?

最佳答案

我已经通过在 TestNG 测试中模拟/模拟 Elasticsearch 环境,使用 Groovy“魔法”解决了这个问题。

给定以下 Groovy 脚本,该脚本应根据参数和文档高度计算自定义分值。

es_compute_custom_score.groovy

h = doc['height']
if (h <= 50) {
// complex logic here ;-)
} else if (h < 1000) {
// more complex logic here ;-)
} else {
// even more complex logic here ;-)
}
_score = a * b + h

然后这个单元测试让你走 red/green/refactor TDD路...

es_compute_custom_scoreTest.groovy(假设默认 Maven project layout)

import org.codehaus.groovy.control.CompilerConfiguration
import org.testng.annotations.BeforeMethod
import org.testng.annotations.DataProvider
import org.testng.annotations.Test

class es_compute_custom_scoreTest{

private static final String SCRIPT_UNDER_TEST = 'src/main/groovy/es_compute_custom_score.groovy'

private CompilerConfiguration compilerConfiguration
private Binding binding

@BeforeMethod
public void setUp() throws Exception {
compilerConfiguration = new CompilerConfiguration()
this.compilerConfiguration.scriptBaseClass = DocumentBaseClassMock.class.name
binding = new Binding()
}

@DataProvider
public Object[][] createTestData() {
List<Object[]> refdata = new ArrayList<>()
refdata.add([100, 50, 5042L])
refdata.add([200, 50, 10042L])
refdata.add([300, 50, 15042L])
return refdata
}

@Test(dataProvider = 'createTestData')
void 'calculate a custom document score, based on parameters a and b, and documents height'(Integer a, Integer b, Long expected_score) {
// given
binding.setVariable("a", a)
binding.setVariable("b", b)
binding.setVariable("doc", new MockDocument(42))

// when
evaluateScriptUnderTest(this.binding)

// then
long score = (long) this.binding.getVariable("_score")
assert score == expected_score
}

private void evaluateScriptUnderTest(Binding binding) {
GroovyShell gs = new GroovyShell(binding, compilerConfiguration)
gs.evaluate(new File(SCRIPT_UNDER_TEST));
}
}

class MockDocument {
long height;

MockDocument(long height) {
this.height = height
}
}

关于unit-testing - 如何对 Groovy 脚本进行单元测试,在 Elasticsearch 中用于 _score 计算,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30707892/

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