validator.js-asserts
Version:
A set of extra asserts for validator.js.
88 lines (71 loc) • 2.27 kB
JavaScript
;
/**
* Module dependencies.
*/
const { Assert: BaseAssert, Validator, Violation } = require('validator.js');
const { describe, it } = require('node:test');
const UuidAssert = require('../../src/asserts/uuid-assert.js');
/**
* Extend `Assert` with `UuidAssert`.
*/
const Assert = BaseAssert.extend({
Uuid: UuidAssert
});
/**
* Test `UuidAssert`.
*/
describe('UuidAssert', () => {
it('should throw an error if the input value is not a string', ({ assert }) => {
const choices = [[], {}, 123];
choices.forEach(choice => {
try {
Assert.uuid().validate(choice);
assert.fail();
} catch (e) {
assert.ok(e instanceof Violation);
assert.equal(e.violation.value, Validator.errorCode.must_be_a_string);
}
});
});
it('should throw an error if the uuid `version` is specified but not supported', ({ assert }) => {
const versions = [1, 2];
versions.forEach(version => {
try {
Assert.uuid(version);
assert.fail();
} catch (e) {
assert.equal(e.message, 'UUID version specified is not supported.');
}
});
});
it('should expose `assert` equal to `Uuid`', ({ assert }) => {
try {
Assert.uuid().validate('foo');
assert.fail();
} catch (e) {
assert.equal(e.show().assert, 'Uuid');
}
});
it('should expose `version` on the violation', ({ assert }) => {
try {
Assert.uuid(5).validate('foo');
assert.fail();
} catch (e) {
assert.equal(e.show().violation.version, 5);
}
});
[
{ name: 'v3', uuid: '6fa459ea-ee8a-3ca4-894e-db77e160355e', version: 3 },
{ name: 'v4', uuid: '17dd5a7a-637c-436e-bb8a-5398f7ac0a76', version: 4 },
{ name: 'v5', uuid: '74738ff5-5367-5958-9aee-98fffdcd1876', version: 5 },
{ name: 'v7', uuid: '01973bbd-2012-7c70-bc1a-59c06fe30326', version: 7 },
{ name: 'nil', uuid: '00000000-0000-0000-0000-000000000000', version: 'nil' },
{ name: 'max', uuid: 'FFFFFFFF-FFFF-FFFF-FFFF-FFFFFFFFFFFF', version: 'max' }
].forEach(({ name, uuid, version }) => {
it(`should accept a ${name} uuid`, ({ assert }) => {
assert.doesNotThrow(() => {
Assert.uuid(version).validate(uuid);
});
});
});
});