mirror of
https://github.com/SunRed/haste-server.git
synced 2024-11-01 09:40:21 +01:00
7808ccf009
-Tests were not brought up to date with some updates that were done to key generator modules. -Apparently original creator had no idea that 'y' is a vowel; fixed this issue and reflected changes in actual files.
18 lines
509 B
JavaScript
18 lines
509 B
JavaScript
/* global describe, it */
|
|
|
|
const assert = require('assert');
|
|
const Generator = require('../../lib/key_generators/random');
|
|
|
|
describe('KeyGenerator', () => {
|
|
describe('random', () => {
|
|
it('should return a key of the proper length', () => {
|
|
const gen = new Generator();
|
|
assert.strictEqual(6, gen.createKey(6).length);
|
|
});
|
|
|
|
it('should use a key from the given keyset if given', () => {
|
|
const gen = new Generator({keyspace: 'A'});
|
|
assert.strictEqual('AAAAAA', gen.createKey(6));
|
|
});
|
|
});
|
|
});
|