Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/splink/veto
If you don't agree with the data
https://github.com/splink/veto
scala validation
Last synced: 3 months ago
JSON representation
If you don't agree with the data
- Host: GitHub
- URL: https://github.com/splink/veto
- Owner: splink
- License: apache-2.0
- Created: 2019-02-27T14:05:46.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-01-21T23:32:27.000Z (almost 5 years ago)
- Last Synced: 2024-04-22T13:32:33.354Z (7 months ago)
- Topics: scala, validation
- Language: Scala
- Homepage:
- Size: 46.9 KB
- Stars: 6
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-scala - veto - activity/y/splink/veto) (Table of Contents / Data Binding and Validation)
README
[![Build Status](https://travis-ci.org/splink/veto.svg?branch=master)](https://travis-ci.org/splink/veto)
# Veto
A scala validation library without dependencies.### Let the code speak:
##### Validate a simple case class
~~~scala
case class Size(width: Int, height: Int)object SizeValidator extends ModelValidator[Size] {
override def apply(size: Size)(implicit context: Option[Context] = None) = {
Check(size)
.field(_.width, "width")(isGreaterThan(0) and isSmallerOrEqual(5))
.field(_.height, "height")(isGreaterThan(0) and isSmallerOrEqual(5))
.validate
}
}val size = Size(0, 6)
val result: Xor[Size] = SizeValidator(size)
result match {
case Valid(s) =>
println(s"valid $s")
case iv: Invalid =>
iv.errors.foreach(e => println(e.message))
}// '0' must be greater than '0'.
// '6' must be smaller or equal to '5'.
~~~##### Validate values wrapped in Option
~~~scala
val validator: Validator[Option[Int]] = optional(isPositive[Int])
val result: Xor[Option[Int]] = validator(Some(-1))
~~~##### Validate elements in a List
~~~scala
val validator: Validator[List[Size]] = listValidator(SizeValidator)
val result: Xor[List[Size]] = validator(List(Size(0, 0), Size(1, 0)))
~~~##### Validate keys or values in a Map
~~~scala
// pick the values
val validator: Validator[Map[String, Size]] = mapValidator[String, Size](tuple2Value(stringContains("one")))
val result: Xor[Map[String, Size]] = validator(Map("one" -> Size(0, 0)))
// pick the keys
val validator: Validator[Map[String, Size]] = mapValidator[String, Size](tuple2Key(stringContains("one")))
val result: Xor[Map[String, Size]] = validator(Map("one" -> Size(0, 0)))~~~
##### Recursive fields are supported
~~~scala
case class Item(name: String, items: List[Item])object ItemValidator extends ModelValidator[Item] {
override def apply(item: Item)(implicit parent: Option[Context]) = {
Check(item)
.field(_.name, "name")(stringNonEmpty)
.field(_.items, "items")(listValidator(ItemValidator))
.validate
}
}val item = Item("one", Item("two", Nil) :: Item("", Nil) :: Nil)
ItemValidator(item)
~~~##### It's quick to create a custom Validator:
~~~scala
def stringContains(value: String) = Validator[String] { (s, context) =>
if (s.contains(value)) Valid(s)
else Invalid(Error(context, 'stringContains, Seq(s, value)))
}
~~~
Context is taken care of upstream, namely Check does the job when it is used to declare which fields of a class are to be validated.
So you just need to perform the check for validity. If the value is valid, return Valid with the value and if not, return Invalid.
Invalid requires the context (from upstream), as well as an error message key and a Seq of values which are to be used in the error message.
Like ```String'{}' should contain '{}'.```##### Validate fields whose validity depends on the values of each other
~~~scala
case class Person(name: String, age: Int, birthday: LocalDate)def AgeValidator = Validator[(Int, LocalDate)] {
case ((age, birthday), context) =>
val shouldBeAge = Period.between(birthday, LocalDate.now()).getYears
val isValid = shouldBeAge == age
if (isValid) Valid(age -> birthday)
else Invalid(Error(context, 'wrongAge, Seq(age, birthday, shouldBeAge)))
}object PersonValidator extends ModelValidator[Person] {
override def apply(person: Person)(implicit parent: Option[Context]) = {
Check(person)
.field(_.name, "name")(stringNonEmpty)
.field(p => p.age -> p.birthday, "age")(AgeValidator)
.validate
}
}PersonValidator(Person("max", 30, LocalDate.of(1950, 1, 1)))
~~~