File: test/rules/alpha.js

Recommend this page to a friend!
  Classes of Harcharan Singh   Node Input Validator   test/rules/alpha.js   Download  
File: test/rules/alpha.js
Role: Example script
Content type: text/plain
Description: Example script
Class: Node Input Validator
Validate submitted input values in Node.js
Author: By
Last change: release v4.4
support to for locale or options to validator in alpha, alphaNumeric, phoneNumber and str notation repetition limit of now flexible
Date: 2 years ago
Size: 1,644 bytes
 

Contents

Class file image Download
const assert = require('assert'); const { Validator } = require('../../lib/index'); describe('alpha', () => { it('should pass with example', async () => { const v = new Validator( { username: 'example' }, { username: 'alpha' }, ); const matched = await v.check(); assert.strictEqual(matched, true); }); it('should pass with example', async () => { const v = new Validator( { username: 'está' }, { username: 'alpha:pt-BR' }, ); const matched = await v.check(); assert.strictEqual(matched, true); }); it('should fail with alpha-numeric value', async () => { const v = new Validator( { username: 'now123' }, { username: 'alpha' }, ); const matched = await v.check(); assert.equal(matched, false); }); it('should fail with special char', async () => { const v = new Validator( { username: 'u@name' }, { username: 'alpha' }, ); const matched = await v.check(); assert.equal(matched, false); }); it('should fail with numbers', async () => { const v = new Validator( { username: '123' }, { username: 'alpha' }, ); const matched = await v.check(); assert.equal(matched, false); }); it('message should exist', async () => { const v = new Validator( { username: '123' }, { username: 'alpha' }, ); const matched = await v.check(); assert.equal(matched, false); assert.equal( v.errors.username.message, v.getExistinParsedMessage({ rule: 'alpha', value: '123', attr: 'username', }), ); }); });