gpt4 book ai didi

java - 使用 Spock (groovy) 数据表测试没有参数的方法

转载 作者:行者123 更新时间:2023-12-01 19:31:37 25 4
gpt4 key购买 nike

假设我尝试测试的方法是:

private void deleteImages() {
//iterate files in path
//if file == image then delete
}

现在为了使用 groovy 和 spock 框架来测试这个,我制作了 2 个文件,并调用该方法:

def "delete images"() {
given:
//create new folder and get path to "path"
File imageFile = new File(path, "image.jpg")
imageFile.createNewFile()
File textFile= new File(path, "text.txt")
textFile.createNewFile()
}
when:
myclass.deleteImages()

then:
!imageFile.exists()
textFile.exists()

这正在按预期工作。

但是,我想向此测试添加更多文件(例如:更多图像文件扩展名、视频文件扩展名等),因此使用数据表会更容易阅读。

如何将其转换为数据表?请注意,我的测试方法不采用任何参数(目录路径是通过另一个服务模拟的,为了简单起见,我没有在此处添加该服务)。

我看到的所有数据表示例都是基于改变单个方法的输入,但在我的例子中,设置是不同的,而该方法不接受任何输入。

理想情况下,设置后,我希望看到这样的表格:

   where:
imageFileJPG.exists() | false
imageFileTIF.exists() | false
imageFilePNG.exists() | false
videoFileMP4.exists() | true
videoFileMOV.exists() | true
videoFileMKV.exists() | true

最佳答案

如果你想使用数据表,你应该在其中放入数据而不是方法调用。

因此,测试可能如下所示:

@Unroll
def 'some test for #fileName and #result'() {
expect:
File f = new File( fileName )
myclass.deleteImages()
f.exists() == result

where:
fileName | result
'imageFile.JPG' | false
'imageFile.TIF' | false
'videoFile.MKV' | true
.....
}

关于java - 使用 Spock (groovy) 数据表测试没有参数的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59662373/

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