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.
175 lines
5.2 KiB
175 lines
5.2 KiB
5 years ago
|
import express from 'express';
|
||
|
import * as path from 'path';
|
||
|
import * as assert from 'assert';
|
||
|
import * as http from 'http';
|
||
|
|
||
|
import eventually from './eventually';
|
||
|
import { Builder, Lanthan } from 'lanthan';
|
||
|
import { WebDriver, WebElement, By, Key } from 'selenium-webdriver';
|
||
|
import { Console } from './lib/Console';
|
||
6 years ago
|
|
||
|
const newApp = () => {
|
||
|
let app = express();
|
||
|
|
||
5 years ago
|
app.get('/', (_req, res) => {
|
||
6 years ago
|
res.send(`<!DOCTYPEhtml>
|
||
|
<html lang="en">
|
||
|
<body>
|
||
|
<a href="/">link1</a>
|
||
|
<a href="/">link2</a>
|
||
|
<a href="/">link3</a>
|
||
|
<a href="/">link4</a>
|
||
|
<a href="/">link5</a>
|
||
|
</body>
|
||
|
</html">`);
|
||
|
});
|
||
|
return app;
|
||
|
};
|
||
|
|
||
|
describe('follow properties test', () => {
|
||
|
const port = 12321;
|
||
5 years ago
|
let http: http.Server;
|
||
|
let lanthan: Lanthan;
|
||
|
let webdriver: WebDriver;
|
||
|
let browser: any;
|
||
|
let body: WebElement;
|
||
6 years ago
|
|
||
|
before(async() => {
|
||
|
http = newApp().listen(port);
|
||
|
|
||
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: {
|
||
|
source: 'json',
|
||
|
json: `{
|
||
|
"keymaps": {
|
||
|
":": { "type": "command.show" },
|
||
|
"f": { "type": "follow.start", "newTab": false },
|
||
|
"F": { "type": "follow.start", "newTab": true, "background": false },
|
||
|
"<C-F>": { "type": "follow.start", "newTab": true, "background": true }
|
||
|
},
|
||
|
"search": {
|
||
|
"default": "google",
|
||
|
"engines": { "google": "https://google.com/search?q={}" }
|
||
|
},
|
||
|
"properties": {
|
||
|
"hintchars": "jk"
|
||
|
}
|
||
|
}`,
|
||
|
}});
|
||
|
});
|
||
|
|
||
|
after(async() => {
|
||
5 years ago
|
if (lanthan) {
|
||
|
await lanthan.quit();
|
||
6 years ago
|
}
|
||
|
http.close();
|
||
|
});
|
||
|
|
||
|
beforeEach(async() => {
|
||
5 years ago
|
await webdriver.navigate().to(`http://127.0.0.1:${port}/`);
|
||
|
body = await webdriver.findElement(By.css('body'));
|
||
6 years ago
|
});
|
||
|
|
||
|
afterEach(async() => {
|
||
|
let tabs = await browser.tabs.query({});
|
||
|
for (let tab of tabs.slice(1)) {
|
||
|
await browser.tabs.remove(tab.id);
|
||
|
}
|
||
|
});
|
||
|
|
||
|
it('should show hints with hintchars by settings', async () => {
|
||
|
await body.sendKeys('f');
|
||
|
await eventually(async() => {
|
||
5 years ago
|
let hints = await webdriver.findElements(By.css(`.vimvixen-hint`));
|
||
6 years ago
|
assert.equal(hints.length, 5);
|
||
|
|
||
|
assert.equal(await hints[0].getText(), 'J');
|
||
|
assert.equal(await hints[1].getText(), 'K');
|
||
|
assert.equal(await hints[2].getText(), 'JJ');
|
||
|
assert.equal(await hints[3].getText(), 'JK');
|
||
|
assert.equal(await hints[4].getText(), 'KJ');
|
||
|
});
|
||
|
|
||
|
await body.sendKeys('j');
|
||
|
|
||
|
await eventually(async() => {
|
||
5 years ago
|
let hints = await webdriver.findElements(By.css(`.vimvixen-hint`));
|
||
6 years ago
|
|
||
5 years ago
|
assert.equal(await hints[0].getCssValue('display'), 'block');
|
||
|
assert.equal(await hints[1].getCssValue('display'), 'none');
|
||
|
assert.equal(await hints[2].getCssValue('display'), 'block');
|
||
|
assert.equal(await hints[3].getCssValue('display'), 'block');
|
||
|
assert.equal(await hints[4].getCssValue('display'), 'none');
|
||
6 years ago
|
});
|
||
|
});
|
||
|
|
||
6 years ago
|
it('should open tab in background by background:false', async () => {
|
||
5 years ago
|
await body.sendKeys(Key.SHIFT, 'f');
|
||
6 years ago
|
await eventually(async() => {
|
||
5 years ago
|
let hints = await webdriver.findElements(By.css(`.vimvixen-hint`));
|
||
6 years ago
|
assert.equal(hints.length, 5);
|
||
|
});
|
||
|
await body.sendKeys('jj');
|
||
|
|
||
|
await eventually(async() => {
|
||
|
let tabs = await browser.tabs.query({});
|
||
|
assert.equal(tabs[0].active, false);
|
||
|
assert.equal(tabs[1].active, true);
|
||
|
});
|
||
|
});
|
||
|
|
||
|
it('should open tab in background by background:true', async () => {
|
||
5 years ago
|
await body.sendKeys(Key.CONTROL, 'f');
|
||
6 years ago
|
await eventually(async() => {
|
||
5 years ago
|
let hints = await webdriver.findElements(By.css(`.vimvixen-hint`));
|
||
6 years ago
|
assert.equal(hints.length, 5);
|
||
|
});
|
||
|
await body.sendKeys('jj');
|
||
|
|
||
|
await eventually(async() => {
|
||
|
let tabs = await browser.tabs.query({});
|
||
|
assert.equal(tabs[0].active, true);
|
||
|
assert.equal(tabs[1].active, false);
|
||
|
});
|
||
|
});
|
||
|
|
||
6 years ago
|
it('should show hints with hintchars by settings', async () => {
|
||
5 years ago
|
let c = new Console(webdriver);
|
||
6 years ago
|
|
||
|
await body.sendKeys(':');
|
||
5 years ago
|
await webdriver.switchTo().frame(0);
|
||
|
await c.sendKeys('set hintchars=abc', Key.ENTER);
|
||
|
await new Promise(resolve => setTimeout(resolve, 100));
|
||
5 years ago
|
await (webdriver.switchTo() as any).parentFrame();
|
||
6 years ago
|
|
||
|
await body.sendKeys('f');
|
||
|
await eventually(async() => {
|
||
5 years ago
|
let hints = await webdriver.findElements(By.css(`.vimvixen-hint`));
|
||
6 years ago
|
assert.equal(hints.length, 5);
|
||
|
|
||
|
assert.equal(await hints[0].getText(), 'A');
|
||
|
assert.equal(await hints[1].getText(), 'B');
|
||
|
assert.equal(await hints[2].getText(), 'C');
|
||
|
assert.equal(await hints[3].getText(), 'AA');
|
||
|
assert.equal(await hints[4].getText(), 'AB');
|
||
|
});
|
||
6 years ago
|
|
||
6 years ago
|
await body.sendKeys('a');
|
||
|
await eventually(async() => {
|
||
5 years ago
|
let hints = await webdriver.findElements(By.css(`.vimvixen-hint`));
|
||
6 years ago
|
|
||
5 years ago
|
assert.equal(await hints[0].getCssValue('display'), 'block');
|
||
|
assert.equal(await hints[1].getCssValue('display'), 'none');
|
||
|
assert.equal(await hints[2].getCssValue('display'), 'none');
|
||
|
assert.equal(await hints[3].getCssValue('display'), 'block');
|
||
|
assert.equal(await hints[4].getCssValue('display'), 'block');
|
||
6 years ago
|
});
|
||
|
});
|
||
|
});
|