Skip to content

Saeris/valimock

Repository files navigation

πŸƒ Valimock

npm version CI status

Generate mock data for Valibot schemas using Faker


πŸ“¦ Installation

npm install --save-dev valimock @faker-js/faker
yarn add -D valimock @faker-js/faker

πŸ”§ Usage

Import and optionally configure a new instance of the Valimock class, then pass along your valibot schema to mock(), that's it!

import { parse, array, union, string, pipe, url, number, maxValue } from "valibot";
import { Valimock } from "valimock";

describe(`example test`, () => {
  it(`should generate valid mock data`, () => {
    const schema = array(union([pipe(string(), url()), pipe(number(), maxValue(20))]));
    const result = new Valimock().mock(schema);
    expect(parse(schema, result)).toStrictEqual(result);
  });
});

Note

For async schemas, you will need to use parseAsync(). Be aware that async schemas generate a Promise and may need to be await'ed depending on usage.

Please see the __tests__ folder for more usage examples of different schema types.

API Coverage

Warning

At present, not all of valibot's API is fully covered by valimock, however, any unimplemented schema type can be handled by a user-supplied map via the customMocks configuration option. The schema's type proerty is used as the property key for this map.

Implemented Incomplete Not Implemented Unsupported
Symbol βœ” ⚠ ❌ βž–

Schemas

Any Array Bigint Blob Boolean Date Enum
❌ βœ” βœ” βž– βœ” ⚠ βœ”
Instance Intersect Literal Map NaN Never NonNullable
βž– βœ” βœ” βœ” βœ” ❌ βœ”
NonNullish NonOptional Null Nullable Nullish Number Object
βœ” βœ” βœ” βœ” βœ” ⚠ βœ”
Optional Picklist Record Recursive Set Special String
βœ” βœ” βœ” βœ” βœ” βž– ⚠
Symbol Tuple Undefined Union Unknown Variant Void
βž– βœ” βœ” βœ” ❌ ❌ ❌

Validations

Below is an incomplete list of supported validations for the given schemas.

Array

check checkItems empty everyItem excludes
❌ ❌ βœ” ❌ ❌
includes length maxLength minLength nonEmpty
❌ βœ” βœ” βœ” βœ”
notLength partialCheck rawCheck someItem
❌ ❌ ❌ ❌

BigInt

check gtValue ltValue maxValue minValue
❌ ❌ ❌ βœ” βœ”
multipleOf notValue notValues rawCheck value
❌ ❌ ❌ ❌ βœ”
values
❌

Date

check gtValue ltValue maxValue minValue
❌ ❌ ❌ βœ” βœ”
notValue notValues rawCheck value values
❌ ❌ ❌ βœ” ❌

Number

check finite gtValue integer ltValue
❌ ❌ ❌ βœ” ❌
maxValue minValue multipleOf notValue notValues
βœ” βœ” ❌ ❌ ❌
rawCheck safeInteger value values
❌ ❌ βœ” ❌

String

base64 bic bytes creditCard cuid2
βœ” βœ” ❌ βœ” βœ”
check decimal digits email emoji
❌ βœ” βœ” βœ” βœ”
empty endsWith excludes graphemes gtValue
βœ” ❌ ❌ ❌ ❌
hash hexadecimal hexColor imei includes
❌ βœ” βœ” βœ” ❌
ip ipv4 ipv6 isoDate isoDateTime
βœ” βœ” βœ” βœ” βœ”
isoTime isoTimeSecond isoTimestamp isoWeek length
βœ” βœ” βœ” ❌ βœ”
ltValue mac mac48 mac64 maxBytes
❌ βœ” ❌ ❌ ❌
maxGraphemes maxLength maxValue maxWords minBytes
❌ βœ” ❌ ❌ ❌
minGraphemes minLength minValue minWords nanoid
❌ βœ” ❌ ❌ βœ”
nonEmpty notBytes notEntries notGraphemes notLength
βœ” ❌ ❌ ❌ ❌
notValue notValues notWords octal rawCheck
❌ ❌ ❌ βœ” ❌
regex rfcEmail slug startsWith ulid
βœ” ❌ ❌ ❌ βœ”
url uuid value values words
βœ” βœ” ❌ ❌ ❌

πŸ“£ Acknowledgements

Valimock's implementation is based on @anatine/zod-mock

πŸ₯‚ License

Released under the MIT license.

About

πŸƒ Generate mock data for Valibot schemas using Faker

Topics

Resources

Stars

Watchers

Forks

Sponsor this project

 

Contributors 3

  •  
  •  
  •