Search in sources :

Example 16 with PactDslJsonBody

use of au.com.dius.pact.consumer.dsl.PactDslJsonBody 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")))));
}
Also used : PactDslJsonBody(au.com.dius.pact.consumer.dsl.PactDslJsonBody) DslPart(au.com.dius.pact.consumer.dsl.DslPart) HashSet(java.util.HashSet) Test(org.junit.Test)

Example 17 with PactDslJsonBody

use of au.com.dius.pact.consumer.dsl.PactDslJsonBody 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;
}
Also used : RequestResponsePact(au.com.dius.pact.model.RequestResponsePact) PactDslJsonBody(au.com.dius.pact.consumer.dsl.PactDslJsonBody) DslPart(au.com.dius.pact.consumer.dsl.DslPart)

Example 18 with PactDslJsonBody

use of au.com.dius.pact.consumer.dsl.PactDslJsonBody in project pact-jvm by DiUS.

the class MatchingTest method testRegexCharClassStringGenerator.

@Test
public void testRegexCharClassStringGenerator() {
    PactDslJsonBody numeric = new PactDslJsonBody().stringMatcher("x", "\\d+");
    String val = new JSONObject(numeric.getBody().toString()).getString("x");
    Assert.assertTrue("'" + val + "' is not a number", NumberUtils.isDigits(val));
    PactDslJsonBody numericWithLimitedRep = new PactDslJsonBody().stringMatcher("x", "\\d{9}");
    val = new JSONObject(numericWithLimitedRep.getBody().toString()).getString("x");
    Assert.assertTrue("'" + val + "' is not a number", NumberUtils.isDigits(val));
}
Also used : JSONObject(org.json.JSONObject) PactDslJsonBody(au.com.dius.pact.consumer.dsl.PactDslJsonBody) ConsumerPactRunnerKt.runConsumerTest(au.com.dius.pact.consumer.ConsumerPactRunnerKt.runConsumerTest) Test(org.junit.Test)

Example 19 with PactDslJsonBody

use of au.com.dius.pact.consumer.dsl.PactDslJsonBody 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;
}
Also used : RequestResponsePact(au.com.dius.pact.model.RequestResponsePact) PactDslJsonBody(au.com.dius.pact.consumer.dsl.PactDslJsonBody) DslPart(au.com.dius.pact.consumer.dsl.DslPart)

Example 20 with PactDslJsonBody

use of au.com.dius.pact.consumer.dsl.PactDslJsonBody 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;
}
Also used : RequestResponsePact(au.com.dius.pact.model.RequestResponsePact) PactDslJsonBody(au.com.dius.pact.consumer.dsl.PactDslJsonBody) DslPart(au.com.dius.pact.consumer.dsl.DslPart) Map(java.util.Map) RequestResponsePact(au.com.dius.pact.model.RequestResponsePact)

Aggregations

PactDslJsonBody (au.com.dius.pact.consumer.dsl.PactDslJsonBody)27 HashMap (java.util.HashMap)14 Pact (au.com.dius.pact.consumer.Pact)12 MessagePact (au.com.dius.pact.model.v3.messaging.MessagePact)12 DslPart (au.com.dius.pact.consumer.dsl.DslPart)11 Test (org.junit.Test)11 RequestResponsePact (au.com.dius.pact.model.RequestResponsePact)9 HashSet (java.util.HashSet)7 JSONObject (org.json.JSONObject)6 ConsumerPactRunnerKt.runConsumerTest (au.com.dius.pact.consumer.ConsumerPactRunnerKt.runConsumerTest)4 PactDslJsonArray (au.com.dius.pact.consumer.dsl.PactDslJsonArray)1 Date (java.util.Date)1 Map (java.util.Map)1 JSONArray (org.json.JSONArray)1