aboutsummaryrefslogtreecommitdiff
path: root/test/content/hint-key-producer.test.js
blob: 74fb4624213c47a83ea8431054afc89d366632d5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import { expect } from "chai";
import HintKeyProducer from '../../src/content/hint-key-producer';

describe('HintKeyProducer class', () => {
  describe('#constructor', () => {
    it('throws an exception on empty charset', () => {
      expect(() => new HintKeyProducer([])).to.throw(TypeError);
    });
  });

  describe('#produce', () => {
    it('produce incremented keys', () => {
      let charset = 'abc';
      let sequences = [
        'a', 'b', 'c',
        'aa', 'ab', 'ac', 'ba', 'bb', 'bc', 'ca', 'cb', 'cc',
        'aaa', 'aab', 'aac', 'aba']

      let producer = new HintKeyProducer(charset);
      for (let i = 0; i < sequences.length; ++i) {
        expect(producer.produce()).to.equal(sequences[i]);
      }
    });
  });
});