AssertJ library for asserting JSON
Go to file
John Ahlroos 87e82820cf
Deploy to Devsoap Code
2024-11-15 20:19:56 +01:00
.gitea/workflows Deploy to Devsoap Code 2024-11-15 20:19:56 +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 dependency details to README 2024-11-15 16:39:57 +01:00
build.gradle Deploy to Devsoap Code 2024-11-15 20:19:56 +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 Deploy to Devsoap Code 2024-11-15 20:19:56 +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.

To include it with Maven

<dependency>
    <groupId>com.devsoap</groupId>
    <artifactId>assertj-json</artifactId>
    <version>0.0.2</version>
    <classifier>tests</classifier>
    <scope>test</scope>
</dependency>

And with Gradle

testImplementation 'com.devsoap:assertj-json:0.0.2'

Syntax Examples:


// Assert that a root property is equal to a string
JsonAssert.assertThat(JSON).field("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.