salix/services/loopback/common/validations/specs/validateDni.spec.js

102 lines
2.9 KiB
JavaScript
Raw Normal View History

const validateDni = require('../validateDni');
2018-02-27 19:28:59 +00:00
describe('DNI validation', () => {
it('should return false for invented DNI', () => {
let isValid = validateDni('Pepinillos');
expect(isValid).toBeFalsy();
});
describe('Spanish', () => {
it('should return true for valid spanish DNI', () => {
let isValid = validateDni('20849756A');
expect(isValid).toBeTruthy();
});
2018-03-12 13:13:36 +00:00
it('should return false for spanish DNI with exceeded digits', () => {
let isValid = validateDni('208497563239A');
expect(isValid).toBeFalsy();
});
it('should return false for spanish DNI with invalid letter', () => {
let isValid = validateDni('20243746E');
expect(isValid).toBeFalsy();
});
it('should return true for valid spanish CIF', () => {
let isValid = validateDni('B97367486');
expect(isValid).toBeTruthy();
});
it('should return false for spanish CIF with invalid letter', () => {
let isValid = validateDni('A97527786');
expect(isValid).toBeFalsy();
});
});
describe('French', () => {
it('should return true for valid french DNI', () => {
2018-03-12 13:13:36 +00:00
let isValid = validateDni('1B123456789', 'fr');
expect(isValid).toBeTruthy();
});
2018-03-12 13:13:36 +00:00
it('should return false for french DNI with exceeded digits', () => {
let isValid = validateDni('1B12345678910', 'fr');
expect(isValid).toBeFalsy();
});
2018-03-12 13:13:36 +00:00
it('should return false for french DNI with bad syntax', () => {
let isValid = validateDni('1B12345678A', 'fr');
expect(isValid).toBeFalsy();
});
});
describe('Italian', () => {
it('should return true for valid italian DNI', () => {
2018-03-12 13:13:36 +00:00
let isValid = validateDni('12345678911', 'it');
expect(isValid).toBeTruthy();
});
2018-03-12 13:13:36 +00:00
it('should return false for italian DNI with exceeded digits', () => {
let isValid = validateDni('123456789112', 'it');
expect(isValid).toBeFalsy();
});
2018-03-12 13:13:36 +00:00
it('should return false for italian DNI with bad syntax', () => {
let isValid = validateDni('1234567891A', 'it');
expect(isValid).toBeFalsy();
});
});
describe('Portuguese', () => {
it('should return true for valid portuguese DNI', () => {
2018-03-12 13:13:36 +00:00
let isValid = validateDni('123456789', 'pt');
expect(isValid).toBeTruthy();
});
2018-03-12 13:13:36 +00:00
it('should return false for portuguese DNI with exceeded digits', () => {
let isValid = validateDni('12345678910', 'pt');
expect(isValid).toBeFalsy();
});
2018-03-12 13:13:36 +00:00
it('should return false for portuguese DNI with bad syntax', () => {
let isValid = validateDni('12345678A', 'pt');
expect(isValid).toBeFalsy();
});
});
});