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

describe("ShowBufferCommandOperator", () => {
  describe("#run", () => {
    it("show command with buffer 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 ShowBufferCommandOperator(tabPresenter, consoleClient);
      await sut.run();

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