Add e2e tests for addbookmark command
This commit is contained in:
parent
b9605f045b
commit
cd34ed60b3
2 changed files with 67 additions and 3 deletions
3
QA.md
3
QA.md
|
@ -39,9 +39,6 @@ The behaviors of the console are tested in [Console section](#consoles).
|
|||
- [ ] `<EMPTY>`: do nothing
|
||||
<br>
|
||||
|
||||
- [ ] `addbookmark` creates a bookmark
|
||||
<br>
|
||||
|
||||
- [ ] `q`, `quit`: close current tab
|
||||
- [ ] `qa`, `quitall`: close all tabs
|
||||
- [ ] `bdelete`: delete a not-pinned tab matches with keywords
|
||||
|
|
67
e2e/command_addbookmark.test.js
Normal file
67
e2e/command_addbookmark.test.js
Normal file
|
@ -0,0 +1,67 @@
|
|||
const express = require('express');
|
||||
const lanthan = require('lanthan');
|
||||
const path = require('path');
|
||||
const assert = require('assert');
|
||||
const eventually = require('./eventually');
|
||||
|
||||
const Key = lanthan.Key;
|
||||
|
||||
const newApp = () => {
|
||||
let app = express();
|
||||
app.get('/happy', (req, res) => {
|
||||
res.send(`<!DOCTYPEhtml>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>how to be happy</title>
|
||||
</head>
|
||||
</html">`);
|
||||
});
|
||||
return app;
|
||||
};
|
||||
|
||||
describe('addbookmark command test', () => {
|
||||
const port = 12321;
|
||||
let http;
|
||||
let firefox;
|
||||
let session;
|
||||
let browser;
|
||||
|
||||
before(async() => {
|
||||
http = newApp().listen(port);
|
||||
|
||||
firefox = await lanthan.firefox({
|
||||
spy: path.join(__dirname, '..'),
|
||||
builderf: (builder) => {
|
||||
builder.addFile('build/settings.js');
|
||||
},
|
||||
});
|
||||
session = firefox.session;
|
||||
browser = firefox.browser;
|
||||
});
|
||||
|
||||
after(async() => {
|
||||
http.close();
|
||||
if (firefox) {
|
||||
await firefox.close();
|
||||
}
|
||||
});
|
||||
|
||||
beforeEach(async() => {
|
||||
await session.navigateTo(`http://127.0.0.1:${port}/happy`);
|
||||
});
|
||||
|
||||
it('should add a bookmark from the current page', async() => {
|
||||
let body = await session.findElementByCSS('body');
|
||||
await body.sendKeys(':');
|
||||
|
||||
await session.switchToFrame(0);
|
||||
let input = await session.findElementByCSS('input');
|
||||
await input.sendKeys('addbookmark how to be happy', Key.Enter);
|
||||
|
||||
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`);
|
||||
});
|
||||
});
|
||||
});
|
Reference in a new issue