aboutsummaryrefslogtreecommitdiff
path: root/test/background/operators/impls/ZoomOperatorFactoryChain.test.ts
blob: ab40a8684c73e0b653c9d740b09705c644f267be (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
import "reflect-metadata";
import ZoomOperatorFactoryChain from "../../../../src/background/operators/impls/ZoomOperatorFactoryChain";
import MockZoomPresenter from "../../mock/MockZoomPresenter";
import ZoomInOperator from "../../../../src/background/operators/impls/ZoomInOperator";
import ZoomOutOperator from "../../../../src/background/operators/impls/ZoomOutOperator";
import ResetZoomOperator from "../../../../src/background/operators/impls/ResetZoomOperator";
import * as operations from "../../../../src/shared/operations";

describe("ZoomOperatorFactoryChain", () => {
  describe("#create", () => {
    it("returns a operator for the operation", async () => {
      const zoomPresenter = new MockZoomPresenter();
      const sut = new ZoomOperatorFactoryChain(zoomPresenter);

      expect(sut.create({ type: operations.ZOOM_IN })).toBeInstanceOf(
        ZoomInOperator
      );
      expect(sut.create({ type: operations.ZOOM_OUT })).toBeInstanceOf(
        ZoomOutOperator
      );
      expect(sut.create({ type: operations.ZOOM_NEUTRAL })).toBeInstanceOf(
        ResetZoomOperator
      );
      expect(sut.create({ type: operations.CANCEL })).toBeNull;
    });
  });
});