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

24 lines
698 B
JavaScript
Raw Normal View History

2017-06-26 18:38:17 +02:00
/* global describe, it */
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
describe('DocumentHandler', function(){
2011-11-28 22:46:59 +01: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 });
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 });
strictEqual(dh.keyLength, DocumentHandler.defaultKeyLength);
2020-08-28 04:39:03 +02:00
});
});
2011-11-28 22:46:59 +01:00
});