abstruct
Abstract structure for JavaScript data validation
Abstruct(not abstract!) provides functions for defining data structures. It also has an abstract interface that allows data structures to be used for any operation. For example, validation.
Features
Composable
It is composable and you only pay the cost for what you need. All features are supported around this feature.
High performance
We actively employ delay evaluation. It is not performed until it is needed. Composable allows each module to take on only one responsibility. Therefore, there is very little duplication of logic.
Tiny
Great care is taken to keep code size small. Composable also contributes to size.
Library first
It can be used with any 3rd party library. Therefore, it is small and care is taken not to bring unnecessary code into the library.
Also, as a validation,
Default error messages
Validator consists of a very small default error message. You can begin validation out of box.
Error message first
Error messages are the central issue in validation. The appropriate error message depends on the recipient. The default error message may not be the best for every subject. The solution to this challenge is to make them fully customizable.
Upstream definition
Error messages can be bound to data structures. Therefore, messages can be defined very close to the data structure definition. There is no need to create error messages from errors.
Type assertion
The validator can assert the type of the input. This allows the validation result to be automatically type inferred.
Quick view
import {
and,
assert,
maxCount,
number,
object,
pattern,
string,
validDate,
} from "https://deno.land/x/abstruct@$VERSION/mod.ts";
import { assertThrows } from "https://deno.land/std/testing/asserts.ts";
const Id = and(string, pattern(/^\d$/));
const Book = object({
id: Id,
title: maxCount(256).expect(`length should be less than or equal to 256`),
publishAt: validDate,
});
assertThrows(() =>
assert(Book, {
id: 0,
title: "Harry Potter and the Philosopher's Stone",
publishAt: new Date("1997/6/26"),
})
);
validate
The validate
executes the validator and returns a Result
type. If validation
succeeds, it returns Ok(T)
. If it fails, it returns Err(E)
.
If Ok
, the value after narrowing of the type is stored.
import {
fixedArray,
number,
string,
validate,
type ValidationFailure,
type Validator,
} from "https://deno.land/x/abstruct@$VERSION/mod.ts";
import type {
Assert,
Has,
IsExact,
} from "https://deno.land/std/testing/types.ts";
import { assertEquals } from "https://deno.land/std/testing/asserts.ts";
const Tuple = fixedArray(string, number);
type doTest = Assert<
Has<typeof Tuple, Validator<[unknown, unknown], [string, number]>>,
true
>;
const result = validate(Tuple, [0, ""]);
declare const failure: ValidationFailure;
if (result.isOk()) {
type doTest = Assert<IsExact<typeof result.value, [string, number]>, true>;
} else {
assertEquals(result.value, [failure, failure]);
}
By default, validate collects as many errors as possible.
maxErrors
The maximum number of ValidationFailure
. It should be positive integer.
The default is Number.MAX_SAFE_INTEGER
.
Example of fail fast:
import {
fixedArray,
number,
string,
validate,
type ValidationFailure,
type Validator,
} from "https://deno.land/x/abstruct@$VERSION/mod.ts";
import type {
Assert,
Has,
IsExact,
} from "https://deno.land/std/testing/types.ts";
import { assertEquals } from "https://deno.land/std/testing/asserts.ts";
const Tuple = fixedArray(string, number);
const result = validate(Tuple, [0, ""], { maxErrors: 1 });
declare const failure: ValidationFailure;
if (result.isErr()) {
assertEquals(result.value, [failure]);
}
Because the validator performs lazy evaluation, limiting the number of errors improves performance.
Throwing error
Throws an error in the following cases:
RangeError
: If maxErrors is not positive integer.
assert
import {
assert,
number,
object,
string,
} from "https://deno.land/x/abstruct@$VERSION/mod.ts";
import {
assertEquals,
assertIsError,
} from "https://deno.land/std/testing/asserts.ts";
const Profile = object({ name: string, age: number });
try {
assert(Profile, { name: null, age: null });
} catch (e) {
assertIsError(e, AggregateError);
assertEquals(e.errors.length, 2);
}
validation
Validation error configs.
error
Error constructor.
The default is ValidationError
.
The example of specify validation error as:
import { assert, between } from "https://deno.land/x/abstruct@$VERSION/mod.ts";
assert(between(0, 255), 256, {
failFast: true,
validation: { error: RangeError },
});
message
Error message.
import {
assert,
type Validator,
} from "https://deno.land/x/abstruct@$VERSION/mod.ts";
import { assertEquals } from "https://deno.land/std/testing/asserts.ts";
declare const validator: Validator<unknown>;
declare const input: unknown;
declare const message: string;
try {
assert(validator, input, { failFast: true, validation: { message } });
} catch (e) {
assertEquals(e.message, message);
}
cause
Original cause of the error.
import {
assert,
type Validator,
} from "https://deno.land/x/abstruct@$VERSION/mod.ts";
import { assertEquals } from "https://deno.land/std/testing/asserts.ts";
declare const validator: Validator<unknown>;
declare const input: unknown;
declare const cause: ErrorConstructor;
try {
assert(validator, input, { failFast: true, validation: { cause } });
} catch (e) {
assertEquals(e.cause, cause);
}
Lazy vs Greedy
Validation by assert works with lazy or greedy.
Lazy terminates the evaluation as soon as it finds a validation error and reports only one validation error.
In contrast, greedy continues validation until the specified number of validation errors is reached or all validations are completed.
Also, validator has a lazy evaluation mechanism, so only as many validations are performed as needed.
By default, it operates as greedy.
failFast
If failFast
is true, it works as lazy.
import {
assert,
ValidationError,
type Validator,
} from "https://deno.land/x/abstruct@$VERSION/mod.ts";
import {
assertEquals,
assertIsError,
} from "https://deno.land/std/testing/asserts.ts";
declare const Profile: Validator<
{ name: unknown; age: unknown },
{ name: string; age: string }
>;
try {
assert(Profile, { name: null, age: null }, { failFast: true });
} catch (e) {
assertIsError(e, ValidationError);
}
The following fields can only be specified in greedy mode.
maxErrors option
The number of validation errors can be changed with maxErrors
. For details,
see maxErrors
aggregation
Aggregation error configs.
error
Specify custom AggregationErrorConstructor
.
The default is AggregationError
.
import {
assert,
type Validator,
} from "https://deno.land/x/abstruct@$VERSION/mod.ts";
import { assertIsError } from "https://deno.land/std/testing/asserts.ts";
declare const validator: Validator<unknown>;
declare const input: unknown;
declare const error: AggregateErrorConstructor;
try {
assert(validator, input, { aggregation: { error } });
} catch (e) {
assertIsError(e, error);
}
message
Customize AggregationError
message.
import {
assert,
type Validator,
} from "https://deno.land/x/abstruct@$VERSION/mod.ts";
import { assertEquals } from "https://deno.land/std/testing/asserts.ts";
declare const validator: Validator<unknown>;
declare const input: unknown;
declare const message: string;
try {
assert(validator, input, { aggregation: { message } });
} catch (e) {
assertEquals(e.message, message);
}
cause
You can specify cause
to express the cause of the AggregationError
.
import {
assert,
type Validator,
} from "https://deno.land/x/abstruct@$VERSION/mod.ts";
import { assertEquals } from "https://deno.land/std/testing/asserts.ts";
declare const validator: Validator<unknown>;
declare const input: unknown;
declare const cause: Error;
try {
assert(validator, input, { aggregation: { cause } });
} catch (e) {
assertEquals(e.cause, cause);
}
Throwing error
Throws an error in the following cases:
AggregateError
: If assertion is fail.ValidationError
: If assertion is fail and failFast is true.- Same as validate.
Factories
It provides validator factories.
type
Validator factory for JavaScript data type. The difference with typeof
operator is that "object"
does not match null
.
import { type } from "https://deno.land/x/abstruct@$VERSION/factories.ts";
const validator = type("object");
instance
Validator factory equivalent to the instanceof
operator.
import { instance } from "https://deno.land/x/abstruct@$VERSION/factories.ts";
const validator = instance(Array);
object
Factory for object validator.
import {
number,
object,
string,
} from "https://deno.land/x/abstruct@$VERSION/mod.ts";
const User = object({ name: string, age: number });
enumerator
Factory for enumerator validator.
import { enumerator } from "https://deno.land/x/abstruct@$VERSION/factories.ts";
const validator = enumerator(0, 1, 2, 3);
const validator2 = enumerator("Red", "Yellow", "Green");
nullish
Nullish(null
or undefined
) validator.
key
Factory for property key validator.
import {
key,
type Validator,
} from "https://deno.land/x/abstruct@$VERSION/mod.ts";
declare const validator: Validator<string>;
const keyValidator = key(validator);
value
Factory for property value validator.
import {
type Validator,
value,
} from "https://deno.land/x/abstruct@$VERSION/mod.ts";
declare const validator: Validator;
const valueValidator = value(validator);
eq
Validator factory equivalent to strict equality(===
) operator.
import { eq } from "https://deno.land/x/abstruct@$VERSION/factories.ts";
const validator = eq(0);
ne
Factory for validator equivalent to strict inequality(!==
) operator.
import { ne } from "https://deno.land/x/abstruct@$VERSION/factories.ts";
const validator = ne(0);
gt
Factory for validator equivalent to greater than(<
) operator.
import { gt } from "https://deno.land/x/abstruct@$VERSION/factories.ts";
const validator = gt(8);
gte
Factory for validator equivalent to greater than or equal(<=
) operator.
import { gte } from "https://deno.land/x/abstruct@$VERSION/factories.ts";
const validator = gte(8);
lt
Factory for validator equivalent to less than(>
) operator.
import { lt } from "https://deno.land/x/abstruct@$VERSION/factories.ts";
const validator = lt(256);
lte
Factory for validator equivalent to less than or equal to (>=
) operator.
import { lte } from "https://deno.land/x/abstruct@$VERSION/factories.ts";
const validator = lte(255);
between
Factory for range validator.
import { between } from "https://deno.land/x/abstruct@$VERSION/factories.ts";
const numberRangeValidator = between(0, 255);
const dateRangeValidator = between(new Date("1970/1/1"), new Date("2038/1/19"));
not
Factory for validator inversion.
import {
not,
type Validator,
} from "https://deno.land/x/abstruct@$VERSION/mod.ts";
declare const validator: Validator;
const inversionValidator = not(validator);
has
Factory for existence of property validator.
import { has } from "https://deno.land/x/abstruct@$VERSION/factories.ts";
const validator = has("prop");
pattern
Factory for regex pattern validator.
import { pattern } from "https://deno.land/x/abstruct@$VERSION/factories.ts";
const validator = pattern(/^\d*$/);
item
Factory for item validator. It checks each item of items.
import {
item,
type Validator,
} from "https://deno.land/x/abstruct@$VERSION/mod.ts";
declare const validator: Validator;
const itemValidator = item(validator);
count
Factory for count validator. It checks count(size, length) of items.
import { count } from "https://deno.land/x/abstruct@$VERSION/factories.ts";
const validator = count(5);
maxCount
Factory for max count validator. It checks items count is less than or equal to
limit
.
import { maxCount } from "https://deno.land/x/abstruct@$VERSION/factories.ts";
declare const limit: number;
const validator = maxCount(limit);
minCount
Factory for min count validator. It checks items count is greater than or equal
to limit
.
import { minCount } from "https://deno.land/x/abstruct@$VERSION/factories.ts";
declare const limit: number;
const validator = minCount(limit);
single
Single validator. It checks items is single.
empty
Empty validator. It checks the items is empty.
nonEmpty
Non-Empty validator. It checks items is non-empty.
unique
Unique validator. It checks the each item is unique.
fixedArray
Factory for fixed array validator. It checks each item passes each Validator
.
import {
fixedArray,
type Validator,
} from "https://deno.land/x/abstruct@$VERSION/mod.ts";
declare const v1: Validator;
declare const v2: Validator;
const validator = fixedArray(v1, v2);
float
Float validator.
int
Integer validator.
positive
Positive number validator.
negative
Negative number validator.
nonNegative
Non-negative number validator.
nonPositive
Non-positive number validator.
validDate
Valid Date
validator.
License
Copyright © 2023-present Tomoki Miyauci.
Released under the MIT license