2017-06-26 18:38:17 +02:00
|
|
|
/* global describe, it */
|
|
|
|
|
2020-08-26 04:54:58 +02:00
|
|
|
const assert = require('assert');
|
2017-11-01 01:02:59 +01:00
|
|
|
|
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-08-28 04:39:03 +02:00
|
|
|
describe('document_handler', function(){
|
2011-11-28 22:46:59 +01:00
|
|
|
|
2020-08-28 04:39:03 +02:00
|
|
|
describe('randomKey', function(){
|
2011-11-28 22:46:59 +01:00
|
|
|
|
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 });
|
|
|
|
assert.equal(6, dh.acceptableKey().length);
|
|
|
|
});
|
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 });
|
|
|
|
assert.equal(dh.keyLength, DocumentHandler.defaultKeyLength);
|
|
|
|
});
|
2011-11-28 22:46:59 +01:00
|
|
|
|
2020-08-28 04:39:03 +02:00
|
|
|
});
|
2011-11-28 22:46:59 +01:00
|
|
|
|
|
|
|
});
|