use of au.com.dius.pact.core.model.messaging.MessagePact in project pact-jvm by DiUS.
the class Defect371Test method createPact.
@Pact(provider = "provider1", consumer = "Defect371")
public MessagePact createPact(MessagePactBuilder builder) {
PactDslJsonBody body = new PactDslJsonBody();
body.stringValue("testParam1", "value1");
body.stringValue("testParam2", "value2");
Map<String, String> metadata = new HashMap<String, String>();
metadata.put("contentType", "application/json");
return builder.given("SomeProviderState").expectsToReceive("a test message").withMetadata(metadata).withContent(body).toPact();
}
use of au.com.dius.pact.core.model.messaging.MessagePact in project pact-jvm by DiUS.
the class ExampleMessageConsumerWithGetMessageFromRuleTest method createPact.
@Pact(provider = "message_test_provider", consumer = "message_test_consumer")
public MessagePact createPact(MessagePactBuilder builder) {
PactDslJsonBody body = new PactDslJsonBody();
body.stringValue("testParam1", "value1");
body.stringValue("testParam2", "value2");
Map<String, String> metadata = new HashMap<String, String>();
metadata.put("contentType", "application/json");
return builder.given("SomeProviderState").expectsToReceive("a test message").withMetadata(metadata).withContent(body).toPact();
}
use of au.com.dius.pact.core.model.messaging.MessagePact in project pact-jvm by DiUS.
the class ExampleMessageConsumerWithV2MatchersTest method createPact.
@Pact(provider = "test_provider_v3", consumer = "test_consumer_v3")
public MessagePact createPact(MessagePactBuilder builder) {
PactDslJsonBody body = new PactDslJsonBody().uuid("workflowId").stringType("domain").eachLike("values").stringType("key").stringType("value").closeObject().closeArray().asBody();
Map<String, String> metaData = new HashMap<>();
metaData.put("contentType", "application/json");
MessagePact messagePact = builder.given("executing a workflow with rabbitmq").expectsToReceive("execution payload").withContent(body).withMetadata(metaData).toPact();
MatcherTestUtils.assertMessageMatcherKeysEqualTo(messagePact, "body", "$.workflowId", "$.domain", "$.values", "$.values", "$.values[*].key", "$.values[*].value");
return messagePact;
}
use of au.com.dius.pact.core.model.messaging.MessagePact in project pact-jvm by DiUS.
the class PactVerificationsForHttpAndMessageTest method messagePact.
@Pact(provider = MESSAGE_PROVIDER_NAME, consumer = PACT_VERIFICATIONS_CONSUMER_NAME)
public MessagePact messagePact(MessagePactBuilder builder) {
PactDslJsonBody body = new PactDslJsonBody();
body.stringValue("testParam1", "value1");
body.stringValue("testParam2", "value2");
Map<String, String> metadata = new HashMap<String, String>();
metadata.put("contentType", "application/json");
return builder.given("SomeProviderState").expectsToReceive("a test message").withMetadata(metadata).withContent(body).toPact();
}
use of au.com.dius.pact.core.model.messaging.MessagePact in project pact-jvm by DiUS.
the class PactVerificationsForMultipleHttpsAndMessagesTest method messagePact.
@Pact(provider = MESSAGE_PROVIDER_NAME, consumer = PACT_VERIFICATIONS_CONSUMER_NAME)
public MessagePact messagePact(MessagePactBuilder builder) {
PactDslJsonBody body = new PactDslJsonBody();
body.stringValue("testParam1", "value1");
Map<String, String> metadata = new HashMap<String, String>();
metadata.put("contentType", "application/json");
return builder.given("SomeProviderState").expectsToReceive("a test message").withMetadata(metadata).withContent(body).toPact();
}
Aggregations