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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
import * as path from "path";
import * as assert from "assert";
import eventually from "./eventually";
import { Builder, Lanthan } from "lanthan";
import { WebDriver, Key } from "selenium-webdriver";
import Page from "./lib/Page";
describe("general completion test", () => {
let lanthan: Lanthan;
let webdriver: WebDriver;
let page: Page;
beforeAll(async () => {
lanthan = await Builder.forBrowser("firefox")
.spyAddon(path.join(__dirname, ".."))
.build();
webdriver = lanthan.getWebDriver();
});
afterAll(async () => {
if (lanthan) {
await lanthan.quit();
}
});
beforeEach(async () => {
page = await Page.navigateTo(webdriver, "about:blank");
});
it("should shows all commands on empty line", async () => {
const console = await page.showConsole();
const groups = await console.getCompletions();
assert.strictEqual(groups.length, 1);
assert.strictEqual(groups[0].title, "Console Command");
assert.strictEqual(groups[0].items.length, 11);
});
it("should shows commands filtered by prefix", async () => {
const console = await page.showConsole();
await console.inputKeys("b");
const groups = await console.getCompletions();
const items = groups[0].items;
assert.ok(items[0].text.startsWith("buffer"));
assert.ok(items[1].text.startsWith("bdelete"));
assert.ok(items[2].text.startsWith("bdeletes"));
});
// > byffer
// > bdelete
// > bdeletes
// : b
it("selects completion items by <Tab>/<S-Tab> keys", async () => {
const console = await page.showConsole();
await console.inputKeys("b");
await eventually(async () => {
const groups = await console.getCompletions();
const items = groups[0].items;
assert.strictEqual(items.length, 3);
});
await console.sendKeys(Key.TAB);
await eventually(async () => {
const groups = await console.getCompletions();
const items = groups[0].items;
assert.ok(items[0].highlight);
assert.strictEqual(await console.currentValue(), "buffer");
});
await console.sendKeys(Key.TAB, Key.TAB);
await eventually(async () => {
const groups = await console.getCompletions();
const items = groups[0].items;
assert.ok(items[2].highlight);
assert.strictEqual(await console.currentValue(), "bdeletes");
});
await console.sendKeys(Key.TAB);
await eventually(async () => {
assert.strictEqual(await console.currentValue(), "b");
});
await console.sendKeys(Key.SHIFT, Key.TAB);
await eventually(async () => {
const groups = await console.getCompletions();
const items = groups[0].items;
assert.ok(items[2].highlight);
assert.strictEqual(await console.currentValue(), "bdeletes");
});
});
});
|