mirror of
https://github.com/seejohnrun/haste-server.git
synced 2024-11-01 19:41:21 +00:00
20 lines
698 B
TypeScript
20 lines
698 B
TypeScript
import Generator from 'src/lib/key-generators/random'
|
|
|
|
describe('RandomKeyGenerator', () => {
|
|
describe('generation', () => {
|
|
it('should return a key of the proper length', () => {
|
|
const gen = new Generator({ type: 'random' })
|
|
expect(gen.createKey(6).length).toEqual(6)
|
|
})
|
|
|
|
it('should use a key from the given keyset if given', () => {
|
|
const gen = new Generator({ type: 'random', keyspace: 'A' })
|
|
expect(gen.createKey(6)).toEqual('AAAAAA')
|
|
})
|
|
|
|
it('should not use a key from the given keyset if not given', () => {
|
|
const gen = new Generator({ type: 'random', keyspace: 'A' })
|
|
expect(gen.createKey(6).includes('B')).toBeFalsy()
|
|
})
|
|
})
|
|
})
|