A fork of https://github.com/ueokande/vim-vixen
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
2.0 KiB
72 lines
2.0 KiB
5 years ago
|
import * as path from 'path';
|
||
|
import * as assert from 'assert';
|
||
|
|
||
|
import settings from './settings';
|
||
|
import eventually from './eventually';
|
||
|
import { Builder, Lanthan } from 'lanthan';
|
||
|
import { WebDriver, WebElement, By } from 'selenium-webdriver';
|
||
|
import { Console } from './lib/Console';
|
||
6 years ago
|
|
||
|
describe("completion on set commands", () => {
|
||
5 years ago
|
let lanthan: Lanthan;
|
||
|
let webdriver: WebDriver;
|
||
|
let browser: any;
|
||
|
let body: WebElement;
|
||
6 years ago
|
|
||
|
before(async() => {
|
||
5 years ago
|
lanthan = await Builder
|
||
|
.forBrowser('firefox')
|
||
|
.spyAddon(path.join(__dirname, '..'))
|
||
|
.build();
|
||
|
webdriver = lanthan.getWebDriver();
|
||
|
browser = lanthan.getWebExtBrowser();
|
||
6 years ago
|
|
||
|
await browser.storage.local.set({
|
||
|
settings,
|
||
|
});
|
||
|
});
|
||
|
|
||
|
after(async() => {
|
||
5 years ago
|
if (lanthan) {
|
||
|
await lanthan.quit();
|
||
6 years ago
|
}
|
||
|
});
|
||
|
|
||
|
beforeEach(async() => {
|
||
5 years ago
|
await webdriver.navigate().to(`about:blank`);
|
||
|
body = await webdriver.findElement(By.css('body'));
|
||
6 years ago
|
});
|
||
|
|
||
|
it('should show all property names by "set" command with empty params', async() => {
|
||
|
await body.sendKeys(':');
|
||
|
|
||
5 years ago
|
await webdriver.switchTo().frame(0);
|
||
|
let c = new Console(webdriver);
|
||
6 years ago
|
await c.sendKeys('set ');
|
||
|
|
||
|
await eventually(async() => {
|
||
|
let items = await c.getCompletions();
|
||
|
assert.equal(items.length, 5);
|
||
|
assert.deepEqual(items[0], { type: 'title', text: 'Properties' });
|
||
5 years ago
|
assert.ok(items[1].text.startsWith('hintchars'))
|
||
|
assert.ok(items[2].text.startsWith('smoothscroll'))
|
||
|
assert.ok(items[3].text.startsWith('nosmoothscroll'))
|
||
|
assert.ok(items[4].text.startsWith('complete'))
|
||
6 years ago
|
});
|
||
|
});
|
||
|
|
||
|
it('should show filtered property names by "set" command', async() => {
|
||
|
await body.sendKeys(':');
|
||
|
|
||
5 years ago
|
await webdriver.switchTo().frame(0);
|
||
|
let c = new Console(webdriver);
|
||
6 years ago
|
await c.sendKeys('set no');
|
||
|
|
||
|
await eventually(async() => {
|
||
|
let items = await c.getCompletions();
|
||
|
assert.equal(items.length, 2);
|
||
5 years ago
|
assert.ok(items[1].text.includes('nosmoothscroll'))
|
||
6 years ago
|
});
|
||
|
});
|
||
|
});
|