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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
|
import * as assert from 'assert';
import * as path from 'path';
import { Request, Response } from 'express'
import TestServer from './lib/TestServer';
import eventually from './eventually';
import { Builder, Lanthan } from 'lanthan';
import { WebDriver } from 'selenium-webdriver';
import Page from './lib/Page';
describe("completion on buffer/bdelete/bdeletes", () => {
let server = new TestServer().handle('/*', (req: Request, res: Response) => {
res.send(`
<!DOCTYPE html>
<html lang="en">
<head>
<title>title_${req.path.slice(1)}</title>
</head>
</html>`);
});
let lanthan: Lanthan;
let webdriver: WebDriver;
let browser: any;
let page: Page;
before(async() => {
lanthan = await Builder
.forBrowser('firefox')
.spyAddon(path.join(__dirname, '..'))
.build();
webdriver = lanthan.getWebDriver();
browser = lanthan.getWebExtBrowser();
await server.start();
});
after(async() => {
await server.stop();
if (lanthan) {
await lanthan.quit();
}
});
beforeEach(async() => {
let tabs = await browser.tabs.query({});
for (let tab of tabs.slice(1)) {
await browser.tabs.remove(tab.id);
}
await browser.tabs.update(tabs[0].id, { url: server.url('/site1'), pinned: true });
await browser.tabs.create({ url:server.url('/site2'), pinned: true });
for (let i = 3; i <= 5; ++i) {
await browser.tabs.create({ url: server.url('/site' + i) });
}
await eventually(async() => {
let handles = await webdriver.getAllWindowHandles();
assert.strictEqual(handles.length, 5);
await webdriver.switchTo().window(handles[2]);
});
page = await Page.currentContext(webdriver);
});
it('should all tabs by "buffer" command with empty params', async() => {
let console = await page.showConsole();
await console.inputKeys('buffer ');
await eventually(async() => {
let items = await console.getCompletions();
assert.strictEqual(items.length, 6);
assert.deepStrictEqual(items[0], { type: 'title', text: 'Buffers' });
assert.ok(items[1].text.startsWith('1:'));
assert.ok(items[2].text.startsWith('2:'));
assert.ok(items[3].text.startsWith('3:'));
assert.ok(items[4].text.startsWith('4:'));
assert.ok(items[5].text.startsWith('5:'));
assert.ok(items[3].text.includes('%'));
assert.ok(items[5].text.includes('#'));
});
});
it('should filter items with URLs by keywords on "buffer" command', async() => {
let console = await page.showConsole();
await console.inputKeys('buffer title_site2');
await eventually(async() => {
let items = await console.getCompletions();
assert.deepStrictEqual(items[0], { type: 'title', text: 'Buffers' });
assert.ok(items[1].text.startsWith('2:'));
assert.ok(items[1].text.includes('title_site2'));
assert.ok(items[1].text.includes(server.url('/site2')));
});
});
it('should filter items with titles by keywords on "buffer" command', async() => {
let console = await page.showConsole();
await console.inputKeys('buffer /site2');
await eventually(async() => {
let items = await console.getCompletions();
assert.deepStrictEqual(items[0], { type: 'title', text: 'Buffers' });
assert.ok(items[1].text.startsWith('2:'));
});
});
it('should show one item by number on "buffer" command', async() => {
let console = await page.showConsole();
await console.inputKeys('buffer 2');
await eventually(async() => {
let items = await console.getCompletions();
assert.strictEqual(items.length, 2);
assert.deepStrictEqual(items[0], { type: 'title', text: 'Buffers' });
assert.ok(items[1].text.startsWith('2:'));
});
});
it('should show unpinned tabs "bdelete" command', async() => {
let console = await page.showConsole();
await console.inputKeys('bdelete site');
await eventually(async() => {
let items = await console.getCompletions();
assert.strictEqual(items.length, 4);
assert.ok(items[1].text.includes('site3'));
assert.ok(items[2].text.includes('site4'));
assert.ok(items[3].text.includes('site5'));
});
});
it('should show unpinned tabs "bdeletes" command', async() => {
let console = await page.showConsole();
await console.inputKeys('bdeletes site');
await eventually(async() => {
let items = await console.getCompletions();
assert.strictEqual(items.length, 4);
assert.ok(items[1].text.includes('site3'));
assert.ok(items[2].text.includes('site4'));
assert.ok(items[3].text.includes('site5'));
});
});
it('should show both pinned and unpinned tabs "bdelete!" command', async() => {
let console = await page.showConsole();
await console.inputKeys('bdelete! site');
await eventually(async() => {
let items = await console.getCompletions();
assert.strictEqual(items.length, 6);
assert.ok(items[1].text.includes('site1'));
assert.ok(items[2].text.includes('site2'));
assert.ok(items[3].text.includes('site3'));
assert.ok(items[4].text.includes('site4'));
assert.ok(items[5].text.includes('site5'));
});
});
it('should show both pinned and unpinned tabs "bdeletes!" command', async() => {
let console = await page.showConsole();
await console.inputKeys('bdeletes! site');
await eventually(async() => {
let items = await console.getCompletions();
assert.strictEqual(items.length, 6);
assert.ok(items[1].text.includes('site1'));
assert.ok(items[2].text.includes('site2'));
assert.ok(items[3].text.includes('site3'));
assert.ok(items[4].text.includes('site4'));
assert.ok(items[5].text.includes('site5'));
});
});
});
|