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