如果 Junit 5 测试失败,则 Pact 不会将提供程序验证结果发送到 pact 代理



我用 spring 创建了一个 REST 服务。现在我想使用 pact 和 junit 5 来测试消费者-提供者-通信。我已经有一个正在运行的协议经纪人(从 https://github.com/jaimeniswonger/pact-broker-openshift 年开始(。消费者测试工作正常,并发布协议。提供程序测试加载这些内容并尝试验证它们。但仅当验证成功时,测试才会上传结果。我尝试以万无一失和故障安全的方式运行测试。

测试代码:

@ExtendWith(SpringExtension.class)
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.DEFINED_PORT, properties = "server.port=12223")
@Provider("Provider")
@PactBroker
public class ProviderPactTest {
@BeforeEach
void setupTestTarget(PactVerificationContext context) {
context.setTarget((new HttpsTestTarget("localhost", 12223, "/", true)));
}
@TestTemplate
@ExtendWith(PactVerificationInvocationContextProvider.class)
void pactVerificationTestTemplate(PactVerificationContext context) {
context.verifyInteraction();
}
@State({ "state1" })
public void doNothing() {
}
}

协议代理属性在 pom 中定义:

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven.surefire.plugin.version}</version>
<configuration>
<systemPropertyVariables>
<pact.provider.version>${project.version}</pact.provider.version>
<pact.verifier.publishResults>true</pact.verifier.publishResults>
<pact.verification.reports>json</pact.verification.reports>
<pactbroker.tags>TAG</pactbroker.tags>
<pactbroker.host>pact-broker.url.com</pactbroker.host>
<pactbroker.port>80</pactbroker.port>
</systemPropertyVariables>
</configuration>
<dependencies>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-surefire-provider</artifactId>
<version>${junit-platform.version}</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.version}</version>
</dependency>
</dependencies>
</plugin>

是否可以配置测试以通知协议代理验证失败?

这似乎是一个缺陷。你能在 https://github.com/dius/pact-jvm 存储库中提出它吗?

相关内容

  • 没有找到相关文章

最新更新