use of au.com.dius.pact.consumer.dsl.DslPart in project pact-jvm by DiUS.
the class PactDslJsonBodyTest method guardAgainstObjectNamesThatDontConformToGatlingFields.
@Test
public void guardAgainstObjectNamesThatDontConformToGatlingFields() {
DslPart body = new PactDslJsonBody().id().object("2").id().stringValue("test", "A Test String").closeObject().array(NUMBERS).id().number(100).numberValue(101).hexValue().object().id().stringValue("name", "Rogger the Dogger").timestamp().date("dob", "MM/dd/yyyy").object(K_DEPRECIATION_BIPS).id().closeObject().closeObject().closeArray();
Set<String> expectedMatchers = new HashSet<String>(Arrays.asList("$.body.id", "$.body['2'].id", "$.body.numbers[3]", "$.body.numbers[0]", "$.body.numbers[4].timestamp", "$.body.numbers[4].dob", "$.body.numbers[4].id", "$.body.numbers[4]['10k-depreciation-bips'].id"));
assertThat(body.getMatchers().keySet(), is(equalTo(expectedMatchers)));
assertThat(((JSONObject) body.getBody()).keySet(), is(equalTo((Set) new HashSet(Arrays.asList("2", NUMBERS, "id")))));
}
use of au.com.dius.pact.consumer.dsl.DslPart in project pact-jvm by DiUS.
the class PactDslJsonArrayTest method createPact.
@Override
protected RequestResponsePact createPact(PactDslWithProvider builder) {
DslPart body = new PactDslJsonArray().object().id().stringValue("name", "Rogger the Dogger").timestamp().date("dob", "MM/dd/yyyy").closeObject().object().id().stringValue("name", "Cat in the Hat").timestamp().date("dob", "MM/dd/yyyy").closeObject();
RequestResponsePact pact = builder.uponReceiving("java test interaction with a DSL array body").path("/").method("GET").willRespondWith().status(200).body(body).toPact();
MatcherTestUtils.assertResponseMatcherKeysEqualTo(pact, "$.body[0].id", "$.body[0].timestamp", "$.body[0].dob", "$.body[1].id", "$.body[1].timestamp", "$.body[1].dob");
return pact;
}
use of au.com.dius.pact.consumer.dsl.DslPart in project pact-jvm by DiUS.
the class PactDslJsonBodyArrayLikeTest method createPact.
@Override
protected RequestResponsePact createPact(PactDslWithProvider builder) {
DslPart body = new PactDslJsonBody().id().object("data").eachLike("array1").id().stringType("name").date("dob").closeObject().closeArray().minArrayLike("array2", 1).ipAddress("address").stringType("name").closeObject().closeArray().array("array3").maxArrayLike(5).integerType("itemCount").closeObject().closeArray().closeArray().closeObject();
RequestResponsePact pact = builder.uponReceiving("java test interaction with an array like matcher").path("/").method("GET").willRespondWith().status(200).body(body).toPact();
MatcherTestUtils.assertResponseMatcherKeysEqualTo(pact, "$.body.id", "$.body.data.array1", "$.body.data.array1[*].id", "$.body.data.array1[*].name", "$.body.data.array1[*].dob", "$.body.data.array2", "$.body.data.array2[*].address", "$.body.data.array2[*].name", "$.body.data.array3[0]", "$.body.data.array3[0][*].itemCount");
MatcherTestUtils.assertResponseKeysEqualTo(pact, "/data", "/data/array1", "/data/array1/0/dob", "/data/array1/0/id", "/data/array1/0/name", "/data/array2", "/data/array2/0/address", "/data/array2/0/name", "/data/array3/0/0/itemCount", "/data/array3", "/id");
return pact;
}
use of au.com.dius.pact.consumer.dsl.DslPart in project pact-jvm by DiUS.
the class PactDslJsonBodyTest method createPact.
@Override
protected RequestResponsePact createPact(PactDslWithProvider builder) {
DslPart body = new PactDslJsonBody().id().object("2").id().stringValue("test", null).closeObject().array("numbers").id().number(100).numberValue(101).hexValue().object().id().stringValue("name", "Rogger the Dogger").timestamp().date("dob", "MM/dd/yyyy").closeObject().closeArray();
RequestResponsePact pact = builder.uponReceiving("java test interaction with a DSL body").path("/").method("GET").willRespondWith().status(200).body(body).toPact();
MatcherTestUtils.assertResponseMatcherKeysEqualTo(pact, "$.body.id", "$.body['2'].id", "$.body.numbers[0]", "$.body.numbers[3]", "$.body.numbers[4].id", "$.body.numbers[4].timestamp", "$.body.numbers[4].dob");
return pact;
}
use of au.com.dius.pact.consumer.dsl.DslPart in project pact-jvm by DiUS.
the class WildcardKeysTest method createFragment.
@Pact(provider = "WildcardKeysProvider", consumer = "WildcardKeysConsumer")
public RequestResponsePact createFragment(PactDslWithProvider builder) {
DslPart body = new PactDslJsonBody().eachLike("articles").eachLike("variants").eachKeyMappedToAnArrayLike("001").eachLike("bundles").eachKeyLike("001-A").stringType("description", "Some Description").eachLike("referencedArticles").id("bundleId", 23456L).eachKeyLike("001-A-1", PactDslJsonRootValue.id(12345L)).closeObject().closeArray().closeObject().closeObject().closeArray().closeObject().closeArray().closeObject().closeArray().closeObject().closeArray().object("foo").eachKeyLike("001", PactDslJsonRootValue.numberType(42)).closeObject();
RequestResponsePact pact = builder.uponReceiving("a request for an article").path("/").method("GET").willRespondWith().status(200).body(body).toPact();
Map<String, Map<String, Object>> matchingRules = pact.getInteractions().get(0).getResponse().getMatchingRules();
MatcherTestUtils.assertResponseMatcherKeysEqualTo(pact, "$.body.articles", "$.body.articles[*].variants", "$.body.articles[*].variants[*].*", "$.body.articles[*].variants[*].*[*].bundles", "$.body.articles[*].variants[*].*[*].bundles[*].*", "$.body.articles[*].variants[*].*[*].bundles[*].*.description", "$.body.articles[*].variants[*].*[*].bundles[*].*.referencedArticles", "$.body.articles[*].variants[*].*[*].bundles[*].*.referencedArticles[*].*", "$.body.articles[*].variants[*].*[*].bundles[*].*.referencedArticles[*].bundleId", "$.body.foo.*");
return pact;
}
Aggregations