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 ShowAddBookmarkOperator from "../../../../src/background/operators/impls/ShowAddBookmarkOperator";
import MockTabPresenter from "../../mock/MockTabPresenter";
import MockConsoleClient from "../../mock/MockConsoleClient";
describe("ShowAddBookmarkOperator", () => {
describe("#run", () => {
it("show command with addbookmark 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 ShowAddBookmarkOperator(
tabPresenter,
consoleClient,
false
);
await sut.run();
expect(showCommandSpy).toBeCalledWith(1, "addbookmark ");
});
it("show command with addbookmark 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 ShowAddBookmarkOperator(
tabPresenter,
consoleClient,
true
);
await sut.run();
expect(showCommandSpy).toBeCalledWith(1, "addbookmark welcome, world");
});
});
});
|