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
|
import * as path from "path";
import * as assert from "assert";
import TestServer from "./lib/TestServer";
import { Builder, Lanthan } from "lanthan";
import { WebDriver } from "selenium-webdriver";
import Page from "./lib/Page";
import SettingRepository from "./lib/SettingRepository";
import Settings from "../src/shared/settings/Settings";
describe("blacklist test", () => {
const server = new TestServer().receiveContent(
"/*",
`<!DOCTYPE html><html lang="en"><body style="width:10000px; height:10000px"></body></html>`
);
let lanthan: Lanthan;
let webdriver: WebDriver;
let browser: any;
beforeAll(async () => {
lanthan = await Builder.forBrowser("firefox")
.spyAddon(path.join(__dirname, ".."))
.build();
webdriver = lanthan.getWebDriver();
browser = lanthan.getWebExtBrowser();
await server.start();
const url = server.url("/a").replace("http://", "");
await new SettingRepository(browser).saveJSON(
Settings.fromJSON({
keymaps: {
j: { type: "scroll.vertically", count: 1 },
},
blacklist: [url],
})
);
});
afterAll(async () => {
await server.stop();
if (lanthan) {
await lanthan.quit();
}
});
it("should disable add-on if the URL is in the blacklist", async () => {
const page = await Page.navigateTo(webdriver, server.url("/a"));
await page.sendKeys("j");
const scrollY = await page.getScrollY();
assert.strictEqual(scrollY, 0);
});
it("should enabled add-on if the URL is not in the blacklist", async () => {
const page = await Page.navigateTo(webdriver, server.url("/ab"));
await page.sendKeys("j");
const scrollY = await page.getScrollY();
assert.strictEqual(scrollY, 64);
});
});
|