aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--QA.md3
-rw-r--r--e2e/command_addbookmark.test.js67
2 files changed, 67 insertions, 3 deletions
diff --git a/QA.md b/QA.md
index e194277..0b47f34 100644
--- a/QA.md
+++ b/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
diff --git a/e2e/command_addbookmark.test.js b/e2e/command_addbookmark.test.js
new file mode 100644
index 0000000..e8995bc
--- /dev/null
+++ b/e2e/command_addbookmark.test.js
@@ -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`);
+ });
+ });
+});