AssertJ library for asserting JSON
Go to file
John Ahlroos 792a080914
Build & Release / release-library (push) Successful in 1m30s Details
Improve Javadoc
2024-11-15 16:12:41 +01:00
.gitea/workflows Fix Sonatype env variables 2024-11-13 20:23:45 +01:00
gradle/wrapper Initial import 2024-10-24 20:59:28 +02:00
src Improve Javadoc 2024-11-15 16:12:41 +01:00
.gitignore Add Sonatype configuration 2024-11-04 17:56:35 +01:00
LICENSE Setup Sonatype publishing 2024-11-12 20:10:41 +01:00
README.md Add array root asserts 2024-11-15 15:25:10 +01:00
build.gradle Setup Sonatype publishing 2024-11-12 20:10:41 +01:00
gradle.properties Setup Sonatype publishing 2024-11-12 20:10:41 +01:00
gradlew Initial import 2024-10-24 20:59:28 +02:00
gradlew.bat Initial import 2024-10-24 20:59:28 +02:00
publish.gradle Fix Sonatype env variables 2024-11-13 20:23:45 +01:00
settings.gradle Initial import 2024-10-24 20:59:28 +02:00

README.md

AssertJ - fluent assertions for json

This library provides helper methods for asserting JSON strings with AssertJ.

Syntax Examples:


// Assert that a root property is equal to a string
JsonAssert.assertThat("myprop").isEqualTo("foo");

// Assert that the traversed path exists and the property is larger than two
JsonAssert.assertThat(JSON).path("a", "b", "c").isEqualTo(2);
// OR
JsonAssert.assertThat(JSON).field("a").field("b").field("c").isEqualTo(2);

// Cast property before asserting
JsonAssert.assertThat(JSON).field("bigdecimal").asBigDecimal().isEqualTo(BigDecimal.valueOf(1234.0));

// Match by regular expression (myprop:"foobar")
JsonAssert.assertThat(JSON).field("myprop").matches("foo.*")
    
// Assert first property in Object matches
JsonAssert.assertThat(JSON).firstField("lastProp").isEqualTo(1);

// Assert last property in Object matches
JsonAssert.assertThat(JSON).lastField("lastProp").isEqualTo(3);

// Assert nth property in Object matches
JsonAssert.assertThat(JSON).nthField("secondProp").isEqualTo(2);

// Assert root typed array "[1,2,3]"
JsonAssert.assertThat(JSON).asArray(Integer.class).first().isEqualTo(1);

// Assert root array with objects "[{ prop: 1}]"
JsonAssert.assertThat(JSON).asArray().first().field("prop").isEqualTo(1);

// Assert matrix [[1,2],[3,4]]
assertThat(JSON).asArray().last().asArray().first().asInteger().isEqualTo(3);



             

For more examples see the unit tests in unit tests.

Licensed under CC BY-ND 4.0.