aboutsummaryrefslogtreecommitdiff
path: root/e2e
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2019-04-17 12:25:02 +0000
committerGitHub <noreply@github.com>2019-04-17 12:25:02 +0000
commit15b3372c668a4b6120c614e35d3c38639a04b514 (patch)
tree5e8312acfc6d759c315f549611804860037f6374 /e2e
parent938fe9f752e393f0ea21def020e849a51ea79300 (diff)
parent7ece01c534c5961b073f3eb9fc776dc4281aad3e (diff)
Merge pull request #567 from ueokande/blacklist-with-port
Support blacklist with port
Diffstat (limited to 'e2e')
-rw-r--r--e2e/blacklist.test.js77
1 files changed, 77 insertions, 0 deletions
diff --git a/e2e/blacklist.test.js b/e2e/blacklist.test.js
new file mode 100644
index 0000000..fa8e8db
--- /dev/null
+++ b/e2e/blacklist.test.js
@@ -0,0 +1,77 @@
+const express = require('express');
+const lanthan = require('lanthan');
+const path = require('path');
+const assert = require('assert');
+const settings = require('./settings');
+
+const newApp = () => {
+ let app = express();
+ app.get('/*', (req, res) => {
+ res.status(200).send(`<!DOCTYPEhtml>
+<html lang="en">
+ <body style="width:10000px; height:10000px"></body>
+</html>`);
+ });
+ return app;
+};
+
+describe("navigate test", () => {
+
+ const port = 12321;
+ let http;
+ let firefox;
+ let session;
+ let browser;
+
+ before(async() => {
+ http = newApp().listen(port);
+
+ firefox = await lanthan.firefox({
+ spy: path.join(__dirname, '..'),
+ builderf: (builder) => {
+ builder.addFile('build/settings.js');
+ },
+ });
+ session = firefox.session;
+ browser = firefox.browser;
+ });
+
+ after(async() => {
+ if (firefox) {
+ await firefox.close();
+ }
+ http.close();
+ });
+
+ it('should disable add-on if the URL is in the blacklist', async () => {
+ await browser.storage.local.set({
+ settings: {
+ source: 'json',
+ json: `{
+ "keymaps": {
+ "j": { "type": "scroll.vertically", "count": 1 }
+ },
+ "blacklist": [ "127.0.0.1:${port}/a" ]
+ }`,
+ },
+ });
+
+ await session.navigateTo(`http://127.0.0.1:${port}/a`);
+
+ let body = await session.findElementByCSS('body');
+ await body.sendKeys('j');
+
+ // not works
+ let pageYOffset = await session.executeScript(() => window.pageYOffset);
+ assert.equal(pageYOffset, 0);
+
+ await session.navigateTo(`http://127.0.0.1:${port}/ab`);
+ body = await session.findElementByCSS('body');
+ await body.sendKeys('j');
+
+ // works
+ pageYOffset = await session.executeScript(() => window.pageYOffset);
+ assert.equal(pageYOffset, 64);
+ });
+});
+