mirror of
https://github.com/YunoHost-Apps/haste_ynh.git
synced 2024-09-03 20:36:28 +02:00
27 lines
724 B
JavaScript
27 lines
724 B
JavaScript
|
/* global describe, it */
|
||
|
|
||
|
var assert = require('assert');
|
||
|
|
||
|
var DocumentHandler = require('../lib/document_handler');
|
||
|
var Generator = require('../lib/key_generators/random');
|
||
|
|
||
|
describe('document_handler', function() {
|
||
|
|
||
|
describe('randomKey', function() {
|
||
|
|
||
|
it('should choose a key of the proper length', function() {
|
||
|
var gen = new Generator();
|
||
|
var dh = new DocumentHandler({ keyLength: 6, keyGenerator: gen });
|
||
|
assert.equal(6, dh.acceptableKey().length);
|
||
|
});
|
||
|
|
||
|
it('should choose a default key length', function() {
|
||
|
var gen = new Generator();
|
||
|
var dh = new DocumentHandler({ keyGenerator: gen });
|
||
|
assert.equal(dh.keyLength, DocumentHandler.defaultKeyLength);
|
||
|
});
|
||
|
|
||
|
});
|
||
|
|
||
|
});
|