Skip to content

Type-safe extendable Swift DSL to validate your objects.

Notifications You must be signed in to change notification settings

aibobrov/SwiftValidation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SwiftValidation

Type-safe extendable Swift DSL to validate your objects.

Swift Version

Heavily inspired by Kotlin valiktor.

Swift 5.4 DSL to create a validator for the value.

DSL begins with two top level functions validate and validateAny that conjunction and disjunction sematnics model. In case of a validation failure ValidationError error will be thrown.

Usage

XCTAssertNoThrow {
    try validate(user) {
        validate(\.id).isPositive()
        validate(\.email) {
            isNotEmpty()
            isEmail()
        }
        validate(\.dateString) { // validateAny(\.dateString) also works
            any {
                isDate(dateDecodingStrategy: .iso8601)
                isDate(dateDecodingStrategy: .secondsSince1970)
            }
        }
    }
}

Installation

Swift Package Manager

// In your `Package.swift`

dependencies: [
    .package(url: "https://github.com/artbobrov/SwiftValidation", .branch("main")),
    ...
],
targets: [
    .target(
        name: ...,
        dependencies: [
            .product(name: "Example", package: "SwiftValidation"),
            ...
        ]
    ),
    ...
]

Error Handling

Validation can throw ValidationError.

KeyPath can be named explicitly by validate(\.age, name: "age").equals(to: 23) then the error will be PartialValidationError with PartialValidationError.propertyName == "age".

Nested validation is supported.

try validate(user) {
    validate(\.company, name: "company") {
        validate(\.catchPhrase, name: "catchPhrase").isNotEmpty()
    }
}

In case of empty catchPhrase the propertyName equals to company.catchPhrase

DisjunctionValidator, ConjunctionValidator

DisjunctionValidator has similar semantic to boolean disjunction operations. At least one validator should accept the object to not fail. In case of empty validators validation does nothing.

ConjunctionValidator has similar semantic to boolean conjunction operations. All validators should accept the object to not fail. In case of empty validators validation does nothing.

Custom Validator

Create a function returning object implementing Validator protocol. Associated type Value is a type you want to validate.

To support dot notation create extension of ExtendableValidator. Associated type Element is a type you want to validate.

Author

About

Type-safe extendable Swift DSL to validate your objects.

Topics

Resources

Stars

Watchers

Forks

Packages

 
 
 

Languages