消费者驱动的合同:每个消费者的存根

在某些情况下,同一终端节点的两个使用者希望有两个不同的响应。spring-doc.cn

此方法还可以让您立即知道哪个使用者使用您 API 的哪个部分。 您可以删除 API 生成的响应的一部分,并查看哪些自动生成的测试 失败。如果没有失败,您可以安全地删除响应的该部分,因为没有人使用它。

请考虑以下为生产者定义的 Contract 示例,该 Contract 名为 , 它有两个使用者 ( 和 ):producerfoo-consumerbar-consumerspring-doc.cn

消费者foo-service
request {
   url '/foo'
   method GET()
}
response {
    status OK()
    body(
       foo: "foo"
    }
}
消费者bar-service
request {
   url '/bar'
   method GET()
}
response {
    status OK()
    body(
       bar: "bar"
    }
}

您不能为同一请求生成两个不同的响应。这就是为什么你可以正确地打包 合同,然后从该功能中获利。stubsPerConsumerspring-doc.cn

在创建者端,使用者可以拥有一个文件夹,其中包含仅与他们相关的协定。 通过将标志设置为 ,我们不再注册所有存根,而只注册那些 对应于使用者应用程序的名称。换句话说,我们扫描每个存根的路径,然后, 如果它包含路径中具有使用者名称的子文件夹,则只有这样才会注册它。stubrunner.stubs-per-consumertruespring-doc.cn

在生产者方面,合同将如下所示foospring-doc.cn

.
└── contracts
    ├── bar-consumer
    │   ├── bookReturnedForBar.groovy
    │   └── shouldCallBar.groovy
    └── foo-consumer
        ├── bookReturnedForFoo.groovy
        └── shouldCallFoo.groovy

使用者可以将 或 设置为 或者,您可以按如下方式设置测试:bar-consumerspring.application.namestubrunner.consumer-namebar-consumerspring-doc.cn

@SpringBootTest(classes = Config, properties = ["spring.application.name=bar-consumer",
		"stubrunner.jms.enabled=false"])
@AutoConfigureStubRunner(ids = "org.springframework.cloud.contract.verifier.stubs:producerWithMultipleConsumers",
		repositoryRoot = "classpath:m2repo/repository/",
		stubsMode = StubRunnerProperties.StubsMode.REMOTE,
		stubsPerConsumer = true)
@ActiveProfiles("streamconsumer")
class StubRunnerStubsPerConsumerSpec {
...
}

然后,仅允许引用在其名称中包含 path (即文件夹中的存根) 下注册的存根。bar-consumersrc/test/resources/contracts/bar-consumer/some/contracts/…​spring-doc.cn

您还可以显式设置使用者名称,如下所示:spring-doc.cn

@SpringBootTest(classes = Config, properties = "stubrunner.jms.enabled=false")
@AutoConfigureStubRunner(ids = "org.springframework.cloud.contract.verifier.stubs:producerWithMultipleConsumers",
        repositoryRoot = "classpath:m2repo/repository/",
        consumerName = "foo-consumer",
        stubsMode = StubRunnerProperties.StubsMode.REMOTE,
        stubsPerConsumer = true)
@ActiveProfiles("streamconsumer")
class StubRunnerStubsPerConsumerWithConsumerNameSpec {
...
}

然后,只允许在名称中包含 the 的路径下注册的存根 (即文件夹中的存根) 被引用。foo-consumersrc/test/resources/contracts/foo-consumer/some/contracts/…​spring-doc.cn

有关此更改背后的原因的更多信息, 参见 问题 224spring-doc.cn