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.
126 lines
3.6 KiB
126 lines
3.6 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 * as clipboard from './lib/clipboard';
|
||
|
import settings from './settings';
|
||
|
import { Builder, Lanthan } from 'lanthan';
|
||
|
import { WebDriver, By, Key } from 'selenium-webdriver';
|
||
6 years ago
|
|
||
|
const newApp = () => {
|
||
|
let app = express();
|
||
5 years ago
|
app.get('/', (_req, res) => {
|
||
6 years ago
|
res.status(200).send(`<html lang="en"></html">`);
|
||
|
});
|
||
|
return app;
|
||
|
};
|
||
|
|
||
|
describe("navigate test", () => {
|
||
|
|
||
|
const port = 12321;
|
||
5 years ago
|
let http: http.Server;
|
||
|
let lanthan: Lanthan;
|
||
|
let webdriver: WebDriver;
|
||
|
let browser: any;
|
||
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,
|
||
|
});
|
||
|
});
|
||
|
|
||
|
after(async() => {
|
||
5 years ago
|
if (lanthan) {
|
||
|
await lanthan.quit();
|
||
6 years ago
|
}
|
||
|
http.close();
|
||
|
});
|
||
|
|
||
|
beforeEach(async() => {
|
||
|
let tabs = await browser.tabs.query({});
|
||
|
for (let tab of tabs.slice(1)) {
|
||
|
await browser.tabs.remove(tab.id);
|
||
|
}
|
||
|
})
|
||
|
|
||
|
it('should copy current URL by y', async () => {
|
||
5 years ago
|
await webdriver.navigate().to(`http://127.0.0.1:${port}/#should_copy_url`);
|
||
|
let body = await webdriver.findElement(By.css('body'));
|
||
6 years ago
|
|
||
|
await body.sendKeys('y');
|
||
|
await eventually(async() => {
|
||
|
let data = await clipboard.read();
|
||
|
assert.equal(data, `http://127.0.0.1:${port}/#should_copy_url`);
|
||
|
});
|
||
|
});
|
||
|
|
||
|
it('should open an URL from clipboard by p', async () => {
|
||
5 years ago
|
await webdriver.navigate().to(`http://127.0.0.1:${port}/`);
|
||
|
let body = await webdriver.findElement(By.css('body'));
|
||
6 years ago
|
|
||
|
await clipboard.write(`http://127.0.0.1:${port}/#open_from_clipboard`);
|
||
|
await body.sendKeys('p');
|
||
|
|
||
|
await eventually(async() => {
|
||
|
let tabs = await browser.tabs.query({ active: true });
|
||
|
assert.equal(tabs[0].url, `http://127.0.0.1:${port}/#open_from_clipboard`);
|
||
|
});
|
||
|
});
|
||
|
|
||
|
it('should open an URL from clipboard to new tab by P', async () => {
|
||
5 years ago
|
await webdriver.navigate().to(`http://127.0.0.1:${port}/`);
|
||
|
let body = await webdriver.findElement(By.css('body'));
|
||
6 years ago
|
|
||
|
await clipboard.write(`http://127.0.0.1:${port}/#open_to_new_tab`);
|
||
5 years ago
|
await body.sendKeys(Key.SHIFT, 'p');
|
||
6 years ago
|
|
||
|
await eventually(async() => {
|
||
|
let tabs = await browser.tabs.query({});
|
||
5 years ago
|
assert.deepEqual(tabs.map((t: any) => t.url), [
|
||
6 years ago
|
`http://127.0.0.1:${port}/`,
|
||
|
`http://127.0.0.1:${port}/#open_to_new_tab`,
|
||
|
]);
|
||
|
});
|
||
|
});
|
||
|
|
||
|
it('should open search result with keywords in clipboard by p', async () => {
|
||
5 years ago
|
await webdriver.navigate().to(`http://127.0.0.1:${port}/`);
|
||
|
let body = await webdriver.findElement(By.css('body'));
|
||
6 years ago
|
|
||
|
await clipboard.write(`an apple`);
|
||
|
await body.sendKeys('p');
|
||
|
|
||
|
await eventually(async() => {
|
||
|
let tabs = await browser.tabs.query({});
|
||
|
assert.equal(tabs[0].url, `http://127.0.0.1:${port}/google?q=an%20apple`);
|
||
|
});
|
||
|
});
|
||
|
|
||
|
it('should open search result with keywords in clipboard to new tabby P', async () => {
|
||
5 years ago
|
await webdriver.navigate().to(`http://127.0.0.1:${port}/`);
|
||
|
let body = await webdriver.findElement(By.css('body'));
|
||
6 years ago
|
|
||
|
await clipboard.write(`an apple`);
|
||
5 years ago
|
await body.sendKeys(Key.SHIFT, 'p');
|
||
6 years ago
|
|
||
|
await eventually(async() => {
|
||
|
let tabs = await browser.tabs.query({});
|
||
5 years ago
|
assert.deepEqual(tabs.map((t: any) => t.url), [
|
||
6 years ago
|
`http://127.0.0.1:${port}/`,
|
||
|
`http://127.0.0.1:${port}/google?q=an%20apple`,
|
||
|
]);
|
||
|
});
|
||
|
});
|
||
|
});
|