UNPKG

node-input-validator

Version:

validation library for nodejs, inspired by laravel.

49 lines (37 loc) 964 B
const assert = require('assert'); const { Validator } = require('../../lib/index'); describe('ip', () => { it('should pass', async () => { const v = new Validator( { attribute: '192.168.1.14' }, { attribute: 'ip' }, ); const matched = await v.check(); assert.equal(matched, true); }); it('should fail with string', async () => { const v = new Validator( { attribute: 'Yes, Node is awesome' }, { attribute: 'ip' }, ); const matched = await v.check(); assert.equal(matched, false); }); it('message should exist', async () => { const v = new Validator( { attr: '192.168 25.25' }, { attr: 'ip' }, ); const matched = await v.check(); assert.equal(matched, false); assert.equal( v.errors.attr.message, v.getExistinParsedMessage({ rule: 'ip', value: '192.168 25.25', attr: 'attr', args: [], }), ); }); });