2017-11-01 00:40:43 +00:00
|
|
|
/* global describe, it */
|
|
|
|
|
|
|
|
const assert = require('assert');
|
|
|
|
|
|
|
|
const Generator = require('../../lib/key_generators/random');
|
|
|
|
|
2017-11-01 00:55:51 +00:00
|
|
|
describe('RandomKeyGenerator', () => {
|
2022-02-14 17:59:14 +00:00
|
|
|
describe('generation', () => {
|
2017-11-01 00:55:51 +00:00
|
|
|
it('should return a key of the proper length', () => {
|
|
|
|
const gen = new Generator();
|
2022-02-14 17:59:14 +00:00
|
|
|
assert.equal(gen.createKey(6).length, 6);
|
2017-11-01 00:40:43 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should use a key from the given keyset if given', () => {
|
2017-11-01 00:55:51 +00:00
|
|
|
const gen = new Generator({keyspace: 'A'});
|
2022-02-14 17:59:14 +00:00
|
|
|
assert.equal(gen.createKey(6), 'AAAAAA');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should not use a key from the given keyset if not given', () => {
|
|
|
|
const gen = new Generator({keyspace: 'A'});
|
|
|
|
assert.ok(!gen.createKey(6).includes('B'));
|
2017-11-01 00:40:43 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|