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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
|
import MockFindClient from "../mock/MockFindClient";
import MockFindRepository from "../mock/MockFindRepository";
import MockConsoleClient from "../mock/MockConsoleClient";
import MockReadyFrameRepository from "../mock/MockReadyFrameRepository";
import StartFindUseCase from "../../../src/background/usecases/StartFindUseCase";
describe("StartFindUseCase", () => {
const currentTabId = 100;
const frameIds = [0, 100, 101];
const keyword = "hello";
const findClient = new MockFindClient();
const findRepository = new MockFindRepository();
const consoleClient = new MockConsoleClient();
const frameRepository = new MockReadyFrameRepository();
const sut = new StartFindUseCase(
findClient,
findRepository,
consoleClient,
frameRepository
);
const getFrameIdsSpy = jest
.spyOn(frameRepository, "getFrameIds")
.mockResolvedValue(frameIds);
const clearSelectionSpy = jest
.spyOn(findClient, "clearSelection")
.mockReturnValue(Promise.resolve());
const findNextSpy = jest.spyOn(findClient, "findNext");
const setLocalStateSpy = jest
.spyOn(findRepository, "setLocalState")
.mockReturnValue(Promise.resolve());
beforeEach(async () => {
getFrameIdsSpy.mockClear();
clearSelectionSpy.mockClear();
findNextSpy.mockClear();
setLocalStateSpy.mockClear();
});
describe("startFind", () => {
it("starts a find with a keyword", async () => {
findNextSpy.mockResolvedValueOnce(false).mockResolvedValueOnce(true);
const showInfoSpy = jest
.spyOn(consoleClient, "showInfo")
.mockReturnValue(Promise.resolve());
await sut.startFind(currentTabId, keyword);
expect(clearSelectionSpy).toBeCalledTimes(3);
expect(clearSelectionSpy.mock.calls[0][1]).toEqual(0);
expect(clearSelectionSpy.mock.calls[1][1]).toEqual(100);
expect(clearSelectionSpy.mock.calls[2][1]).toEqual(101);
expect(findNextSpy).toBeCalledTimes(2);
expect(findNextSpy.mock.calls[0][1]).toEqual(0);
expect(findNextSpy.mock.calls[1][1]).toEqual(100);
expect(setLocalStateSpy).toBeCalledWith(currentTabId, {
keyword,
frameId: 100,
});
expect(showInfoSpy).toBeCalledWith(
currentTabId,
"Pattern found: " + keyword
);
});
it("starts a find with last local state", async () => {
findNextSpy.mockResolvedValueOnce(false).mockResolvedValueOnce(true);
const getLocalStateSpy = jest
.spyOn(findRepository, "getLocalState")
.mockResolvedValue({ keyword, frameId: 0 });
const showInfoSpy = jest
.spyOn(consoleClient, "showInfo")
.mockReturnValue(Promise.resolve());
await sut.startFind(currentTabId, undefined);
expect(clearSelectionSpy).toBeCalledTimes(3);
expect(clearSelectionSpy.mock.calls[0][1]).toEqual(0);
expect(clearSelectionSpy.mock.calls[1][1]).toEqual(100);
expect(clearSelectionSpy.mock.calls[2][1]).toEqual(101);
expect(findNextSpy).toBeCalledTimes(2);
expect(findNextSpy.mock.calls[0][1]).toEqual(0);
expect(findNextSpy.mock.calls[1][1]).toEqual(100);
expect(getLocalStateSpy).toBeCalledWith(currentTabId);
expect(setLocalStateSpy).toBeCalledWith(currentTabId, {
keyword,
frameId: 100,
});
expect(showInfoSpy).toBeCalledWith(
currentTabId,
"Pattern found: " + keyword
);
});
it("starts a find with last global state", async () => {
findNextSpy.mockResolvedValueOnce(false).mockResolvedValueOnce(true);
const getLocalStateSpy = jest
.spyOn(findRepository, "getLocalState")
.mockResolvedValue(undefined);
jest.spyOn(findRepository, "getGlobalKeyword").mockResolvedValue(keyword);
const showInfoSpy = jest
.spyOn(consoleClient, "showInfo")
.mockReturnValue(Promise.resolve());
await sut.startFind(currentTabId, undefined);
expect(clearSelectionSpy).toBeCalledTimes(3);
expect(clearSelectionSpy.mock.calls[0][1]).toEqual(0);
expect(clearSelectionSpy.mock.calls[1][1]).toEqual(100);
expect(clearSelectionSpy.mock.calls[2][1]).toEqual(101);
expect(findNextSpy).toBeCalledTimes(2);
expect(findNextSpy.mock.calls[0][1]).toEqual(0);
expect(findNextSpy.mock.calls[1][1]).toEqual(100);
expect(getLocalStateSpy).toBeCalledWith(currentTabId);
expect(setLocalStateSpy).toBeCalledWith(currentTabId, {
keyword,
frameId: 100,
});
expect(showInfoSpy).toBeCalledWith(
currentTabId,
"Pattern found: " + keyword
);
});
it("shows an error when pattern not found", async () => {
findNextSpy.mockResolvedValue(false);
const showErrorSpy = jest
.spyOn(consoleClient, "showError")
.mockReturnValue(Promise.resolve());
await sut.startFind(currentTabId, keyword);
expect(clearSelectionSpy).toBeCalledTimes(3);
expect(clearSelectionSpy.mock.calls[0][1]).toEqual(0);
expect(clearSelectionSpy.mock.calls[1][1]).toEqual(100);
expect(clearSelectionSpy.mock.calls[2][1]).toEqual(101);
expect(setLocalStateSpy).not.toBeCalled();
expect(showErrorSpy).toBeCalledWith(
currentTabId,
"Pattern not found: " + keyword
);
});
it("shows an error when no last keywords", async () => {
jest.spyOn(findRepository, "getLocalState").mockResolvedValue(undefined);
jest
.spyOn(findRepository, "getGlobalKeyword")
.mockResolvedValue(undefined);
const showErrorSpy = jest
.spyOn(consoleClient, "showError")
.mockReturnValue(Promise.resolve());
await sut.startFind(currentTabId, undefined);
expect(showErrorSpy).toBeCalledWith(
currentTabId,
"No previous search keywords"
);
});
});
});
|