Easy Validation matchers

Matchers for use with validation core or validation args with a tiny artifact size.

License

License

GroupId

GroupId

at.meks
ArtifactId

ArtifactId

easy-validation-matcher
Last Version

Last Version

2.0.0-RC5
Release Date

Release Date

Type

Type

jar
Description

Description

Easy Validation matchers
Matchers for use with validation core or validation args with a tiny artifact size.

Download easy-validation-matcher

How to add to project

<!-- https://jarcasting.com/artifacts/at.meks/easy-validation-matcher/ -->
<dependency>
    <groupId>at.meks</groupId>
    <artifactId>easy-validation-matcher</artifactId>
    <version>2.0.0-RC5</version>
</dependency>
// https://jarcasting.com/artifacts/at.meks/easy-validation-matcher/
implementation 'at.meks:easy-validation-matcher:2.0.0-RC5'
// https://jarcasting.com/artifacts/at.meks/easy-validation-matcher/
implementation ("at.meks:easy-validation-matcher:2.0.0-RC5")
'at.meks:easy-validation-matcher:jar:2.0.0-RC5'
<dependency org="at.meks" name="easy-validation-matcher" rev="2.0.0-RC5">
  <artifact name="easy-validation-matcher" type="jar" />
</dependency>
@Grapes(
@Grab(group='at.meks', module='easy-validation-matcher', version='2.0.0-RC5')
)
libraryDependencies += "at.meks" % "easy-validation-matcher" % "2.0.0-RC5"
[at.meks/easy-validation-matcher "2.0.0-RC5"]

Dependencies

compile (1)

Group / Artifact Type Version
at.meks : easy-validation-core jar 2.0.0-RC5

test (1)

Group / Artifact Type Version
org.junit.jupiter : junit-jupiter jar 5.6.2

Project Modules

There are no modules declared in this project.

Sonarcloud Status Sonarcloud Status Sonarcloud Status Sonarcloud Status Sonarcloud Status Sonarcloud Status Sonarcloud Status Sonarcloud Status Sonarcloud Status

easy-validation

Very easy way to validate simple and complex objects by using an fluent interface.

Goals

  • No 3rd party dependencies
  • Very small artefact size
  • clean and natural api

Exmples

Simply validate a method argument and throw an IllegalArgumentException

If you want to validate just a method argument you can do this by using the module easy-validation-args.

validate().that(arg1)
        .withMessage(() -> "arg1")
        .isNotBlank()
        .hasMinLength(30)
        .matches(value -> value.contains("whatIsExpected"));

Commonly when you implement a validation the code would look like this:

if (StringUtils.isBlank(arg1)) {
    throw new IllegalArgumentException("arg1");
}
if (arg1.length() <= 30) {
    throw new IllegalArgumentException("arg1");
}
if (arg1.contains("whatIsExpected") {
    throw new IllegalArgumentException("arg1);
}

Just image you have 20+ different input values you have to validate. The code is growing very fast and it will get hard to maintain is it grows.

You also have the possibility to set a seperate message per validation.

validate().that(arg1)
        .withMessage(() -> "arg1 mustn't be blank").isNotBlank()
        .withMessage(() -> "arg1 must have at leat 30 chars").hasMinLength(30)
        .withMessage(() -> "arg1 must contain \"whatIsExpected\"").matches(value -> value.contains("whatIsExpected"));

Do more validations to report in any way you want

Expect the case you want to validate the input to be not blank and it mustn't contain whitespace, but you want to report it with different error messages.

List<String> occuredErrorKeys = new ArrayList<>();
String validatedValue = " ";
Validator.reportTo(occuredErrorKeys::add)
        .verify(validatedValue)
        .usingKey("notBlank").matches(StringUtils::isNotBlank)
        .and().usingKey("whitespaces").matches(StringUtils::doesNotContainWhitespace)
        .and().usingKey("minLength").matches(value -> StringUtils.length(value) > 10);

In the list occuredErrorKeys the errors notBlank, whitespaces and minLength will be added. With this information you can report the error however you want.

Throw the Exception you want

If you have the need to throw your own exception in case of the first violation, e.g. for throwing an error code, just go ahead like this:

Validator.stopOnFirstError()
        .throwing(() -> new MyCheckedExceptionWithErrorCode(999))
        .verify(validatedValue)
        .matches(StringUtils::isNotBlank)
        .and(StringUtils::doesNotContainWhitespace)

Matchers

First I thought using commons-lang3 is fine. But I realized that commons-lang3 size is about 500 KB. Furthermore: How to avoid dependency clashes?

Therefore I decided to use my own matchers. Currently in version 2.0.0-RC2 the size is ~ 6 KB. Furthermore the whole validation has no dependency to any 3rd party library. So you can use allways as long you use at least java 8.

History

While developing the first release I followed the main concept of using lambda combined with a fluent interface is from Joel Planes, what can be found here.

But I was getting tired to always invoke the method test and afterwards the method throwIfInvalid.

Thanks to Eric Evans input I developed it from scratch with the possibility to decide if I want to throw an exception or not easy, without duplicating so much method signatures. I hope you like the result.

Versions

Version
2.0.0-RC5
2.0.0-RC4
2.0.0-RC3
2.0.0-RC2