fully-typed
Version:
Run time type validation, transformation, and error generator that works out of the box on primitives, objects, arrays, and nested objects. Also extensible for custom types.
95 lines (74 loc) • 3.06 kB
JavaScript
/**
* @license
* Copyright 2017 Brigham Young University
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
**/
;
const expect = require('chai').expect;
const Schema = require('../index');
const TypedNumber = require('../bin/number');
describe('TypedNumber', () => {
describe('max', () => {
it('can be a number', () => {
expect(() => Schema({ type: Number, max: 0 })).to.not.throw(Error);
});
it('cannot be a string', () => {
expect(() => Schema({ type: Number, max: 'abc' })).to.throw(/Must be a number/);
});
});
describe('min', () => {
it('can be a number', () => {
expect(() => Schema({ type: Number, min: 0 })).to.not.throw(Error);
});
it('cannot be a string', () => {
expect(() => Schema({ type: Number, min: 'abc' })).to.throw(/Must be a number/);
});
it('can be less than max', () => {
expect(() => Schema({ type: Number, min: 0, max: 1 })).to.not.throw(Error);
});
it('cannot be greater than max', () => {
expect(() => Schema({ type: Number, min: 1, max: 0 })).to.throw(/number that is less than the minimum/);
});
});
describe('#error', () => {
it('no errors', () => {
const ar = Schema({ type: Number });
expect(ar.error(1)).to.be.null;
});
it('checks type', () => {
const ar = Schema({ type: Number });
expect(ar.error('hello')).to.match(/Expected a number/);
});
it('checks integer', () => {
const ar = Schema({ type: Number, integer: true });
expect(ar.error(2.1)).to.match(/Must be an integer/);
});
it('checks max', () => {
const ar = Schema({ type: Number, max: 1 });
expect(ar.error(2)).to.match(/Must be less than/);
});
it('checks min', () => {
const ar = Schema({ type: Number, min: 1 });
expect(ar.error(0)).to.match(/Must be greater than/);
});
it('checks exclusive max', () => {
const ar = Schema({ type: Number, exclusiveMax: true, max: 0 });
expect(ar.error(0)).to.match(/Must be less than/);
});
it('checks exclusive min', () => {
const ar = Schema({ type: Number, exclusiveMin: true, min: 0 });
expect(ar.error(0)).to.match(/Must be greater than/);
});
});
});