aboutsummaryrefslogtreecommitdiff
path: root/test/background/operators/impls/ShowWinOpenCommandOperator.test.ts
blob: ce2a5b835c04357c65c869a889ac1ae9e2544907 (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
import ShowWinOpenCommandOperator from "../../../../src/background/operators/impls/ShowWinOpenCommandOperator";
import MockTabPresenter from "../../mock/MockTabPresenter";
import MockConsoleClient from "../../mock/MockConsoleClient";

describe("ShowWinOpenCommandOperator", () => {
  describe("#run", () => {
    it("show command with winopen command", 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 consoleClient = new MockConsoleClient();
      const showCommandSpy = jest
        .spyOn(consoleClient, "showCommand")
        .mockReturnValue(Promise.resolve());

      const sut = new ShowWinOpenCommandOperator(
        tabPresenter,
        consoleClient,
        false
      );
      await sut.run();

      expect(showCommandSpy).toBeCalledWith(1, "winopen ");
    });

    it("show command with winopen command and an URL 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 consoleClient = new MockConsoleClient();
      const showCommandSpy = jest
        .spyOn(consoleClient, "showCommand")
        .mockReturnValue(Promise.resolve());

      const sut = new ShowWinOpenCommandOperator(
        tabPresenter,
        consoleClient,
        true
      );
      await sut.run();

      expect(showCommandSpy).toBeCalledWith(1, "winopen https://example.com/2");
    });
  });
});