aboutsummaryrefslogtreecommitdiff
path: root/test/content/repositories/FollowMasterRepository.test.ts
blob: 8c3f34e6b9e11111824fbfe16817e3892d28e10b (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import FollowMasterRepository, { FollowMasterRepositoryImpl }
  from '../../../src/content/repositories/FollowMasterRepository';
import { expect } from 'chai';

describe('FollowMasterRepositoryImpl', () => {
  let sut: FollowMasterRepository;

  before(() => {
    sut = new FollowMasterRepositoryImpl();
  });

  describe('#getTags()/#addTag()/#clearTags()', () => {
    it('gets, adds and clears tags', () => {
      expect(sut.getTags()).to.be.empty;

      sut.addTag('a');
      sut.addTag('b');
      sut.addTag('c');
      expect(sut.getTags()).to.deep.equal(['a', 'b', 'c']);

      sut.clearTags();
      expect(sut.getTags()).to.be.empty;
    });
  });

  describe('#getTagsByPrefix', () => {
    it('gets tags matched by prefix', () => {
      for (let tag of ['a', 'aa', 'ab', 'b', 'ba', 'bb']) {
        sut.addTag(tag);
      }
      expect(sut.getTagsByPrefix('a')).to.deep.equal(['a', 'aa', 'ab']);
      expect(sut.getTagsByPrefix('aa')).to.deep.equal(['aa']);
      expect(sut.getTagsByPrefix('b')).to.deep.equal(['b', 'ba', 'bb']);
      expect(sut.getTagsByPrefix('c')).to.be.empty;
    });
  });

  describe('#setCurrentFollowMode()/#getCurrentNewTabMode()/#getCurrentBackgroundMode', () => {
    it('updates and gets follow mode', () => {
      sut.setCurrentFollowMode(false, true);
      expect(sut.getCurrentNewTabMode()).to.be.false;
      expect(sut.getCurrentBackgroundMode()).to.be.true;

      sut.setCurrentFollowMode(true, false);
      expect(sut.getCurrentNewTabMode()).to.be.true;
      expect(sut.getCurrentBackgroundMode()).to.be.false;
    });
  });
});