对于微服务合约测试,我将PACT与gradle 4.4一起使用,这是我的build.gradle:
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'au.com.dius:pact-jvm-provider-gradle_2.12:3.5.22'
}
}
apply plugin: 'java'
apply plugin: 'maven'
apply plugin: 'eclipse'
apply plugin: "au.com.dius.pact"
pact {
serviceProviders {
// You can define as many as you need, but each must have a unique name
UserService {
// All the provider properties are optional, and have sensible defaults (shown below)
protocol = 'http'
host = 'localhost'
port = 8111
project.version = "2.0.1"
hasPactsFromPactBroker('http://10.100.198.200:8113')
}
}
pact {
publish {
version = "2.0.1"
pactDirectory = 'pacts' // defaults to $buildDir/pacts
pactBrokerUrl = 'http://10.100.198.200:8113'
}
}
}
虽然我可以在代理中发布协议文件并能够看到依赖关系图,但在运行 pactVerify 方法后,"上次验证"显示为空白。我看到了一些关于"pact.verifier.publishResults=true"的文档,并尝试作为gradle参数传递,但我收到一条错误消息,说:
失败:生成失败,出现异常。
- 出了什么问题: 您的项目配置错误,期望在构建中使用"约定"配置,但得到了一个值为"的字符串。确保没有覆盖"协议"的属性。
我运行的 gradle 命令是:
./gradlew test pactPublish
./gradlew pactVerify -Ppact.verifier.publishResults=true
请让我知道我错过了什么,不接受pact.verifier.publishResults
。第一件事是你的 Gradle 配置无效。应该只有一个pact
块。你有两个。移除带有publish
块的内部块(但将publish
块保留:-D(。
如果这不能解决您的问题,请查看 https://github.com/DiUS/pact-jvm/issues/738,看看评论中的任何更改是否有帮助。