mirror of
https://github.com/SunRed/haste-server.git
synced 2024-11-01 01:30: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.
23 lines
698 B
JavaScript
23 lines
698 B
JavaScript
/* global describe, it */
|
|
|
|
const { strictEqual } = require('assert');
|
|
const DocumentHandler = require('../lib/document_handler');
|
|
const Generator = require('../lib/key_generators/random');
|
|
|
|
describe('DocumentHandler', function(){
|
|
|
|
describe('random', function(){
|
|
it('should choose a key of the proper length', function(){
|
|
let gen = new Generator();
|
|
let dh = new DocumentHandler({ keyLength: 6, keyGenerator: gen });
|
|
strictEqual(6, dh.acceptableKey().length);
|
|
});
|
|
|
|
it('should choose a default key length', function(){
|
|
let gen = new Generator();
|
|
let dh = new DocumentHandler({ keyGenerator: gen });
|
|
strictEqual(dh.keyLength, DocumentHandler.defaultKeyLength);
|
|
});
|
|
});
|
|
|
|
});
|