org.spockframework:spock-core:0.7-groovy-2.0
Gradle 1.12
Groovy 1.8.6
java
您好,
我正在尝试将spock
与我的java应用程序一起运行单元测试并使用gradle
进行构建。
但是,由于我是spock的新手,我不知道如何传递实际参数以获得正确的输出?
这是我要测试的函数签名,它接受一个inputStream,char []和一个String:
public String makeRequest(InputStream keystoreFilename, char[] keystorePassword, String cnn_url) {
...
}
因此,在我的测试规范中,我想将keystore文件作为inputStream传递,其中实际的密钥库位于此处../resources/keystore.bks,以及密钥库的实际密码和Web服务所在的URL是。但是,在尝试运行单元测试时出现此错误:
groovy.lang.MissingMethodException: No signature of method: com.sunsystem.HttpSnapClient.SnapClientTest.FileInputStream()
我的规格测试如下,但我认为我的方法是错误的。
import spock.lang.Specification;
import java.io.InputStream;
import java.io.FileInputStream;
class SnapClientTest extends Specification {
def 'Connect to https web service'() {
setup:
def snapzClient = new SnapzClient();
def inputStream = FileInputStream("../resources/keystore.bks")
def keystorePwd = "password".toCharArray()
def url = "https://example_webservice.com"
expect: 'success when all correct parameters are used'
snapzClient.makeRequest(A, B, C) == RESULT
where:
A | B | C | RESULT
inputStream | keystorePwd | url | 0
}
}
非常感谢任何建议,
答案 0 :(得分:3)
No such property
问题归因于where:
阻止。
where
块首先初始化测试字段。
在你的情况下 inputStream , keystorePwd 和 url 是未声明的,这就是你得到No such property
错误的原因。
初始化where
块中的字段,删除where
块,声明类中的字段。
答案 1 :(得分:2)
我认为where
部分只接受静态或共享字段。否则值必须是硬编码的文字。因此,当我修改类以使参数共享时,它对我有效。请试试这个
import spock.lang.Shared
import spock.lang.Specification
class SnapClientTest extends Specification {
@Shared def inputStream = new FileInputStream("../resources/keystore.bks")
@Shared def keystorePwd = "password".toCharArray()
@Shared def url = "https://example_webservice.com"
def "Connect to https web service"() {
setup:
def snapzClient = new SnapzClient();
expect:
snapzClient.makeRequest(A, B, C) == RESULT
where:
A | B | C | RESULT
inputStream | keystorePwd | url | "0"
}
}
请注意makeRequest()
方法的返回类型是字符串。因此,如果您需要用双引号括起RESULT(“)
答案 2 :(得分:1)
您错过了new
def inputStream = new FileInputStream("../resources/keystore.bks")