aboutsummaryrefslogtreecommitdiff
path: root/e2e/contents
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2018-02-14 21:11:03 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2018-02-14 21:12:06 +0900
commitb694afb7ce0eed4c4ee3ee9c3fae5dd35cb72d14 (patch)
treedcc43cfbd8f95aac495b9a30dec724f78fda2566 /e2e/contents
parentf63920e25e80ca0e472d3514fd56e27fbc505e6f (diff)
add scroll test
Diffstat (limited to 'e2e/contents')
-rw-r--r--e2e/contents/scroll.test.js81
1 files changed, 81 insertions, 0 deletions
diff --git a/e2e/contents/scroll.test.js b/e2e/contents/scroll.test.js
new file mode 100644
index 0000000..79e0d32
--- /dev/null
+++ b/e2e/contents/scroll.test.js
@@ -0,0 +1,81 @@
+import { expect } from "chai";
+import * as windows from "../ambassador/src/client/windows";
+import * as tabs from "../ambassador/src/client/tabs";
+import * as keys from "../ambassador/src/client/keys";
+import * as scrolls from "../ambassador/src/client/scrolls";
+
+const SERVER_URL = "localhost:11111";
+
+describe("scroll test", () => {
+ let targetWindow;
+ let targetTab;
+
+ before(() => {
+ return windows.create().then((win) => {
+ targetWindow = win;
+ return tabs.create(targetWindow.id, SERVER_URL);
+ }).then((tab) => {
+ targetTab = tab;
+ });
+ });
+
+ after(() => {
+ return windows.remove(targetWindow.id);
+ });
+
+ describe('press k', () => {
+ it('scrolls up', () => {
+ let before
+ return scrolls.set(targetTab.id, 100, 100).then((scroll) => {
+ before = scroll;
+ return keys.press(targetTab.id, 'k');
+ }).then(() => {
+ return scrolls.get(targetTab.id);
+ }).then((actual) => {
+ expect(actual.y).to.be.lessThan(before.y);
+ });
+ });
+ });
+
+ describe('press j', () => {
+ it('scrolls down', () => {
+ let before
+ return scrolls.set(targetTab.id, 100, 100).then((scroll) => {
+ before = scroll;
+ return keys.press(targetTab.id, 'j');
+ }).then(() => {
+ return scrolls.get(targetTab.id);
+ }).then((actual) => {
+ expect(actual.y).to.be.greaterThan(before.y);
+ });
+ });
+ });
+
+ describe('press h', () => {
+ it('scrolls left', () => {
+ let before
+ return scrolls.set(targetTab.id, 100, 100).then((scroll) => {
+ before = scroll;
+ return keys.press(targetTab.id, 'h');
+ }).then(() => {
+ return scrolls.get(targetTab.id);
+ }).then((actual) => {
+ expect(actual.x).to.be.lessThan(before.x);
+ });
+ });
+ });
+
+ describe('press l', () => {
+ it('scrolls right', () => {
+ let before
+ return scrolls.set(targetTab.id, 100, 100).then((scroll) => {
+ before = scroll;
+ return keys.press(targetTab.id, 'l');
+ }).then(() => {
+ return scrolls.get(targetTab.id);
+ }).then((actual) => {
+ expect(actual.x).to.be.greaterThan(before.x);
+ });
+ });
+ });
+});