mirror of
https://github.com/SunRed/haste-server.git
synced 2024-11-01 01:30:21 +01:00
7808ccf009
-Tests were not brought up to date with some updates that were done to key generator modules. -Apparently original creator had no idea that 'y' is a vowel; fixed this issue and reflected changes in actual files.
28 lines
843 B
JavaScript
28 lines
843 B
JavaScript
/* global describe, it */
|
|
|
|
const fs = require('fs');
|
|
const assert = require('assert');
|
|
const Generator = require('../../lib/key_generators/dictionary');
|
|
|
|
const tmpPath = '/tmp/haste-server-test-dictionary';
|
|
|
|
describe('KeyGenerator', () => {
|
|
describe('dictionary', () => {
|
|
it('should throw an error if given no path', () => {
|
|
assert.throws(() => { new Generator(); });
|
|
});
|
|
|
|
it('should throw an error if given invalid path', () => {
|
|
if (fs.existsSync(tmpPath)) fs.unlinkSync(tmpPath);
|
|
assert.throws(() => { new Generator({path: tmpPath}); });
|
|
});
|
|
|
|
it('should return a key of the proper number of words from the given dictionary', () => {
|
|
const words = ['xd'];
|
|
fs.writeFileSync(tmpPath, words.join('\n'));
|
|
|
|
const gen = new Generator({path: tmpPath});
|
|
assert.strictEqual('xdxdxd', gen.createKey(3));
|
|
});
|
|
});
|
|
});
|