1
0
Fork 0
mirror of https://github.com/SunRed/haste-server.git synced 2024-11-01 01:30:21 +01:00
haste-server/test/document_handler_spec.js
zneix 7808ccf009
Rewrote key generator tests, fixed vowels
-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.
2020-09-23 01:07:32 +02:00

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);
});
});
});