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.
67 lines
1.7 KiB
67 lines
1.7 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, By, Key } from 'selenium-webdriver';
|
||
6 years ago
|
|
||
|
const newApp = () => {
|
||
|
let app = express();
|
||
5 years ago
|
app.get('/happy', (_req, res) => {
|
||
6 years ago
|
res.send(`<!DOCTYPEhtml>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<title>how to be happy</title>
|
||
|
</head>
|
||
|
</html">`);
|
||
|
});
|
||
|
return app;
|
||
|
};
|
||
|
|
||
|
describe('addbookmark command 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
|
});
|
||
|
|
||
|
after(async() => {
|
||
|
http.close();
|
||
5 years ago
|
if (lanthan) {
|
||
|
await lanthan.quit();
|
||
6 years ago
|
}
|
||
|
});
|
||
|
|
||
|
beforeEach(async() => {
|
||
5 years ago
|
await webdriver.navigate().to(`http://127.0.0.1:${port}/happy`);
|
||
6 years ago
|
});
|
||
|
|
||
|
it('should add a bookmark from the current page', async() => {
|
||
5 years ago
|
let body = await webdriver.findElement(By.css('body'));
|
||
6 years ago
|
await body.sendKeys(':');
|
||
|
|
||
5 years ago
|
await webdriver.switchTo().frame(0);
|
||
|
let input = await webdriver.findElement(By.css('input'));
|
||
|
await input.sendKeys('addbookmark how to be happy', Key.ENTER);
|
||
6 years ago
|
|
||
|
await eventually(async() => {
|
||
|
var bookmarks = await browser.bookmarks.search({ title: 'how to be happy' });
|
||
|
assert.equal(bookmarks.length, 1);
|
||
|
assert.equal(bookmarks[0].url, `http://127.0.0.1:${port}/happy`);
|
||
|
});
|
||
|
});
|
||
|
});
|