最近,我已经熟悉了PACT测试。真正为每个交易对手分配生产者/消费者的好主意。但是,我不了解一个核心原则。在客户端PACT测试中,该程序生成PACT json文件-为什么我需要启动测试服务器并按特定请求进行测试?
例如我有一个名为 A 的生产者,而我的使用者是 B 。生产者A具有端点 getAllUsers ,该端点将返回所有用户的json。 在消费者B中,我写了契约测试:
@ExtendWith(PactConsumerTestExt.class)
@PactTestFor(providerName = "ProducerA", port = "1234")
public class ProducerAPactTest {
private static JSONArray body = new JSONArray("[ {'user_id': '1' }]");
@Pact(provider = "ProducerA", consumer = "ConsumerB")
RequestResponsePact createPact(PactDslWithProvider builder) {
Map<String, String> headers = new HashMap<>();
headers.put("Content-Type", ContentType.APPLICATION_JSON.toString());
DslPart regionDsl = PactDslJsonArray.arrayEachLike()
.stringType("id", "1").closeObject().closeArray();
return builder.given("Normal state")
.uponReceiving("Get all users request")
.path("/users").method("GET").willRespondWith()
.status(200).headers(headers).body(regionDsl).toPact();
}
@Test
void runTest() {
// when
ResponseEntity<String> response = new RestTemplate()
.getForEntity(mockServer.getUrl() + "/users", String.class);
// then
assertThat(response.getStatusCode().value()).isEqualTo(200);
List<String> contentTypeHeaders = response.getHeaders().get("Content-Type");
String responseBody = response.getBody();
assertThat(contentTypeHeaders).isNotNull();
assertThat(responseBody).isNotNull();
assertThat(contentTypeHeaders.get(0)).isEqualTo(ContentType.APPLICATION_JSON.toString());
JSONAssert.assertEquals(responseBody, body, JSONCompareMode.LENIENT);
}
我用several tutorials来写契约测试。我正在用Java开发,但是我的问题通常适用于所有Pact测试。为什么需要创建单元测试?对我来说,断言我所收到的一切似乎毫无意义,因为我已经定义自己仅在上面几行?我注意到,所有协定消费者测试都遵循相同的模式。我想念什么?
答案 0 :(得分:2)
通常,被测类的作用不仅仅是反序列化JSON主体。抱歉,这是一个Ruby示例,而不是Java示例,但这是一个客户端类的示例,该示例将JSON文档转换为表示资源的模型:https://github.com/pact-foundation/pact-ruby/blob/master/example/zoo-app/lib/zoo_app/animal_service_client.rb
我们在此处使用pact test来检查它在不同的http响应下的行为(例如,它将404转换为null)。如果您只是直接测试HTTP响应,那么除了与提供者签订合同之外,您的消费者代码根本没有任何价值。