aboutsummaryrefslogtreecommitdiff
path: root/test/background/repositories/FindRepository.test.ts
blob: 88d5e716bafeff9c09aeee346e3a459b73a836f9 (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
import { FindRepositoryImpl } from "../../../src/background/repositories/FindRepository";

describe("background/repositories/FindRepositoryImpl", () => {
  let sut: FindRepositoryImpl;

  beforeEach(() => {
    sut = new FindRepositoryImpl();
  });

  describe("global keyword", () => {
    it("get and set a keyword", async () => {
      expect(await sut.getGlobalKeyword()).toBeUndefined;

      await sut.setGlobalKeyword("Hello, world");

      const keyword = await sut.getGlobalKeyword();
      expect(keyword).toEqual("Hello, world");
    });
  });

  describe("local state", () => {
    it("get and set a keyword", async () => {
      expect(await sut.getLocalState(10)).toBeUndefined;

      await sut.setLocalState(10, {
        keyword: "Hello, world",
        frameId: 11,
      });

      const state = await sut.getLocalState(10);
      expect(state?.keyword).toEqual("Hello, world");
      expect(state?.frameId).toEqual(11);

      expect(await sut.getLocalState(20)).toBeUndefined;
    });
  });
});