2017-06-26 18:38:17 +02:00
|
|
|
/* global describe, it */
|
|
|
|
|
2020-09-23 01:07:32 +02:00
|
|
|
const { strictEqual } = require('assert');
|
2020-08-26 04:54:58 +02:00
|
|
|
const DocumentHandler = require('../lib/document_handler');
|
|
|
|
const Generator = require('../lib/key_generators/random');
|
2011-11-28 22:46:59 +01:00
|
|
|
|
2020-09-23 01:07:32 +02:00
|
|
|
describe('DocumentHandler', function(){
|
2011-11-28 22:46:59 +01:00
|
|
|
|
2020-09-23 01:07:32 +02:00
|
|
|
describe('random', function(){
|
2020-08-28 04:39:03 +02:00
|
|
|
it('should choose a key of the proper length', function(){
|
|
|
|
let gen = new Generator();
|
|
|
|
let dh = new DocumentHandler({ keyLength: 6, keyGenerator: gen });
|
2020-09-23 01:07:32 +02:00
|
|
|
strictEqual(6, dh.acceptableKey().length);
|
2020-08-28 04:39:03 +02:00
|
|
|
});
|
2011-11-28 22:46:59 +01:00
|
|
|
|
2020-08-28 04:39:03 +02:00
|
|
|
it('should choose a default key length', function(){
|
|
|
|
let gen = new Generator();
|
|
|
|
let dh = new DocumentHandler({ keyGenerator: gen });
|
2020-09-23 01:07:32 +02:00
|
|
|
strictEqual(dh.keyLength, DocumentHandler.defaultKeyLength);
|
2020-08-28 04:39:03 +02:00
|
|
|
});
|
|
|
|
});
|
2011-11-28 22:46:59 +01:00
|
|
|
|
|
|
|
});
|