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

27 lines
730 B
JavaScript
Raw Normal View History

2017-06-26 18:38:17 +02:00
/* global describe, it */
2020-08-26 04:54:58 +02:00
const assert = 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('document_handler', function() {
describe('randomKey', function() {
it('should choose a key of the proper length', function() {
2020-08-26 16:04:20 +02:00
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
});
it('should choose a default key length', function() {
2020-08-26 16:04:20 +02:00
let gen = new Generator();
let dh = new DocumentHandler({ keyGenerator: gen });
assert.equal(dh.keyLength, DocumentHandler.defaultKeyLength);
2011-11-28 22:46:59 +01:00
});
});
});