如何在gradle中将pact验证结果发布到pactbroker?

问题描述 投票:0回答:2

我有一个使用 gradle(如果需要,底部的 gradle 文件)和 Junit5 使用 spring boot 构建的服务。 stackoverflow 上的许多问题都是针对 maven 和 Junit4 的,我在翻译答案时遇到了麻烦。我的契约生产者测试运行并根据经纪人上的合同正确进行测试。然而,成功验证的结果不会发送给经纪商。 我必须做什么才能发生这种情况?

该协议来自“其他服务”,并验证“我的服务”正确返回三只可爱的猫。这就是测试的样子:

package com.miau.package;

// imports

@Provider("my_service")
@Consumer("other_service")
@PactBroker(authentication = @PactBrokerAuth(username = "pact",
    password = "${pactPassword}"), //NOSONAR hardcoded password hint no password, just variable
    host = "pact-broker.apps.home.io/", port = "443",
    tags = "sandbox"
)
@SpringBootTest(classes = Application.class,
    properties = { "spring.profiles.active=pact,fake-oauth2", "pact.verifier.publishResults=true" },
    webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
@Tag("pact")
@ExtendWith({SpringExtension.class})
public class OtherServiceContractVerifier {

    @LocalServerPort
    int port;

    @Autowired
    Application application;

    @BeforeEach
    void before(PactVerificationContext context) {
        HttpTestTarget target = new HttpTestTarget("localhost", port, "/my_service");
        context.setTarget(target);
    }

    @TestTemplate
    @ExtendWith(PactVerificationInvocationContextProvider.class)
    void executePact(PactVerificationContext context) {
        context.verifyInteraction();
    }

    @State("3 cute cats exist")
    public void stateThreecuteCatsExists() {
        // make 3 cute cats exist in database
    }
}

运行时

./gradlew pactTest pactPublish
一切正常。测试通过,如果我将状态更改为只有 2 只猫,测试将失败,因为协议要求服务返回 3 只猫。然而,协议经纪人并没有显示成功的验证。为此我需要做什么?


我已经尝试过,但似乎是错误的:

运行

./gradlew pactVerify
->“未配置服务提供商”。 不确定他需要服务提供商做什么,因为测试提供了所有必要的信息。但经过一番谷歌搜索后,我发现了这个并将其添加到我的 build.gradle 中:

Pact {
broker {
    pactBrokerUrl = "https://pact-broker.apps.home.io/"
    pactBrokerUsername = "pact"
    pactBrokerPassword = pactPassword
}
serviceProviders {
    'my_service' {
        fromPactBroker {
            selectors = latestTags('Sandbox')
        }
    }
}
}

不知道为什么他需要这些信息,这些信息都已经存在于 Pact 测试中。但至少它改变了

./gradlew pactVerify
的输出,现在它列出了合约并尝试验证它,结果却失败了
Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused (Connection refused)
这似乎是错误的方法,因为它根本不使用现有的测试。我还没有找到如何告诉它,使用现有的
OtherServiceContractVerifier
测试。


gradle文件的Pact相关内容(我合并了这个问题的答案,但没有效果):

{
    buildscript {
        if (!project.hasProperty('pactPassword')) {
            pactPassword = ''
        }
        if (!project.hasProperty('pactTags')) {
            pactTags = ''
        }
    }
}

plugins {
    id "au.com.dius.pact" version "4.1.7"
}

apply plugin: 'au.com.dius.pact'

task pactTest(type: Test) {
    environment "pactPassword", "$pactPassword"
    description = 'Runs pact tests.'
    group = 'verification'

    useJUnitPlatform()
    outputs.upToDateWhen { false }

    testClassesDirs = sourceSets.pactTest.output.classesDirs
    classpath = sourceSets.pactTest.runtimeClasspath
    shouldRunAfter test
}
check.dependsOn pactTest

dependencies {
    pactTestImplementation "au.com.dius:pact-jvm-consumer-junit5:4.0.10"
    pactTestImplementation "au.com.dius:pact-jvm-consumer-java8:4.0.10"
    pactTestImplementation "au.com.dius:pact-jvm-provider-junit5:4.0.10"
    pactTestImplementation "au.com.dius:pact-jvm-provider:4.0.10"
}

test {
    useJUnitPlatform {
        excludeTags "pact"
    }
}

pact {
    publish {
        pactBrokerUrl = "https://pact-broker.apps.home.io/"
        pactBrokerUsername = "pact"
        pactBrokerPassword = pactPassword
        tags = pactTags.tokenize(',')
    }
}
java spring-boot junit5 pact
2个回答
2
投票

您似乎将 Gradle 验证过程 (

./gradlew pactVerify
) 与 JUnit 验证过程(例如
OtherServiceContractVerifier
)混合在一起。

两者都可以通过

进行配置

有关 gradle,请参阅 https://docs.pact.io/implementation_guides/jvm/provider/gradle/#project-properties

对于 JUnit,请参阅 https://docs.pact.io/implementation_guides/jvm/provider/junit/#publishing-verification-results-to-a-pact-broker

因此设置以下内容将启用此功能(注意:您应该只从 CI 发布)

System.setProperty("pact.verifier.publishResults", "true");

使用 JUnit 的示例项目:https://github.com/pactflow/example-provider-springboot


0
投票

pact Publish 通过以下方式为我工作。 在您的 build.gradle 文件中添加以下内容。

pact {
publish {
    pactDirectory="target/pacts"
    pactBrokerUrl = 'http://localhost:9292/'
}
}

然后通过 Gradle 运行 pacPublish。

enter image description here

希望这对您有用。同样,您可以通过在环境变量中添加以下内容来验证契约

pact.verifier.publishResults=true
© www.soinside.com 2019 - 2024. All rights reserved.