aboutsummaryrefslogtreecommitdiff
path: root/test/background/operators/impls/SelectTabNextOperator.test.ts
blob: 5952d924e3f9facbee8bb1a53e79dcfc8cf8933f (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 SelectTabNextOperator from "../../../../src/background/operators/impls/SelectTabNextOperator";

describe("SelectTabNextOperator", () => {
  describe("#run", () => {
    it("select a right 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 SelectTabNextOperator(tabPresenter);
      await sut.run();

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

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

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

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