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

describe("ShowOpenCommandOperator", () => {
  describe("#run", () => {
    it("show command with open 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 mock = sinon
        .mock(consoleClient)
        .expects("showCommand")
        .withArgs(1, "open ");

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

      mock.verify();
    });

    it("show command with open 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 mock = sinon
        .mock(consoleClient)
        .expects("showCommand")
        .withArgs(1, "open https://example.com/2");

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

      mock.verify();
    });
  });
});