aboutsummaryrefslogtreecommitdiff
path: root/test/background/operators/impls/NavigateLinkNextOperator.test.ts
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2020-12-03 23:15:24 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2020-12-09 23:09:34 +0900
commit8bbc3d9d159237f280c3e952cd1cb124601ed6d6 (patch)
tree4e2d9c23d0a25209fdd8ba9dd6849ce66df8d2df /test/background/operators/impls/NavigateLinkNextOperator.test.ts
parent7305bc1c34ceced31db943c8f23ed826d3d522f0 (diff)
Add operator tests
Diffstat (limited to 'test/background/operators/impls/NavigateLinkNextOperator.test.ts')
-rw-r--r--test/background/operators/impls/NavigateLinkNextOperator.test.ts22
1 files changed, 22 insertions, 0 deletions
diff --git a/test/background/operators/impls/NavigateLinkNextOperator.test.ts b/test/background/operators/impls/NavigateLinkNextOperator.test.ts
new file mode 100644
index 0000000..09c4907
--- /dev/null
+++ b/test/background/operators/impls/NavigateLinkNextOperator.test.ts
@@ -0,0 +1,22 @@
+import sinon from "sinon";
+import NavigateLinkNextOperator from "../../../../src/background/operators/impls/NavigateLinkNextOperator";
+import MockTabPresenter from "../../mock/MockTabPresenter";
+import MockNavigateClient from "../../mock/MockNavigateClient";
+
+describe("NavigateLinkNextOperator", () => {
+ describe("#run", () => {
+ it("send a message to navigate next page", async () => {
+ const navigateClient = new MockNavigateClient();
+ const mock = sinon.mock(navigateClient).expects("linkNext").withArgs(1);
+ 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 sut = new NavigateLinkNextOperator(tabPresenter, navigateClient);
+
+ await sut.run();
+
+ mock.verify();
+ });
+ });
+});