keeweb/test/src/util/generators/password-generator.js

83 lines
2.9 KiB
JavaScript

import { expect } from 'chai';
import { PasswordGenerator } from 'util/generators/password-generator';
describe('PasswordGenerator', () => {
it('should generate a password with digits', () => {
expect(PasswordGenerator.generate({ length: 10, digits: true })).to.match(/^\d{10}$/);
});
it('should generate a password with lowercase letters', () => {
expect(PasswordGenerator.generate({ length: 10, lower: true })).to.match(/^[a-z]{10}$/);
});
it('should generate a password with uppercase letters', () => {
expect(PasswordGenerator.generate({ length: 10, upper: true })).to.match(/^[A-Z]{10}$/);
});
it('should generate a password with brackets', () => {
expect(PasswordGenerator.generate({ length: 10, brackets: true })).to.match(
/^[(){}[\]<>]{10}$/
);
});
it('should generate a password with ambiguous characters', () => {
expect(PasswordGenerator.generate({ length: 10, ambiguous: true })).to.match(
new RegExp(`^[O0oIl]{10}$`)
);
});
it('should generate a password with custom characters', () => {
expect(PasswordGenerator.generate({ length: 10, include: '123' })).to.match(/^[123]{10}$/);
});
it('should generate a password with special characters', () => {
expect(PasswordGenerator.generate({ length: 50, special: true })).to.match(
/^[!-\/:-@[-`~]{50}$/
);
});
it('should generate a password with high ascii characters', () => {
expect(PasswordGenerator.generate({ length: 100, high: true })).to.match(/^[¡-þ]{100}$/);
});
it('should generate a pronounceable password', () => {
for (let i = 0; i < 1000; i++) {
expect(PasswordGenerator.generate({ length: 10, name: 'Pronounceable' })).to.match(
/^[a-zA-Z]{10}$/
);
}
});
it('should generate a password with pattern', () => {
expect(
PasswordGenerator.generate({
length: 60,
pattern: 'Aa1XI-',
include: '@#',
digits: true,
upper: true
})
).to.match(/^([A-Z][a-z][0-9][0-9A-Z@#][@#]-){10}$/);
});
it('should include all groups of characters at least once', () => {
for (let i = 0; i < 10; i++) {
const password = PasswordGenerator.generate({
length: 6,
upper: true,
lower: true,
digits: true,
brackets: true,
special: true,
ambiguous: true
});
expect(password).to.match(/[A-Z]/);
expect(password).to.match(/[a-z]/);
expect(password).to.match(/[0-9]/);
expect(password).to.match(/[(){}[\]<>]/);
expect(password).to.match(/[!-\/:-@[-`~]/);
expect(password).to.match(/[O0oIl]/);
}
});
});