aboutsummaryrefslogtreecommitdiff
path: root/test/background/operators/impls/SelectTabPrevOperator.test.ts
blob: c9092fa7640db1f3ac5c2dbd5589c0d4954d9258 (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
import { expect } from "chai";
import MockTabPresenter from "../../mock/MockTabPresenter";
import SelectTabPrevOperator from "../../../../src/background/operators/impls/SelectTabPrevOperator";

describe("SelectTabPrevOperator", () => {
  describe("#run", () => {
    it("select a left tab of the current tab", async () => {
      const tabPresenter = new MockTabPresenter();
      await tabPresenter.create("https://example.com/1", { active: false });
      await tabPresenter.create("https://example.com/2", { active: true });
      await tabPresenter.create("https://example.com/3", { active: false });

      const sut = new SelectTabPrevOperator(tabPresenter);
      await sut.run();

      const url = (await tabPresenter.getCurrent()).url;
      expect(url).to.equal("https://example.com/1");
    });
  });

  describe("#run", () => {
    it("select a left tab of the current tab in rotation", async () => {
      const tabPresenter = new MockTabPresenter();
      await tabPresenter.create("https://example.com/1", { active: true });
      await tabPresenter.create("https://example.com/2", { active: false });
      await tabPresenter.create("https://example.com/3", { active: false });

      const sut = new SelectTabPrevOperator(tabPresenter);
      await sut.run();

      const url = (await tabPresenter.getCurrent()).url;
      expect(url).to.equal("https://example.com/3");
    });
  });
});