aboutsummaryrefslogtreecommitdiff
path: root/e2e
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2019-04-14 18:42:56 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2019-04-14 20:43:16 +0900
commitc14822cf4f1e12d2c154d7926125905fb358620e (patch)
tree6f0bd646716653762603c70d043cbf6aadde8cb2 /e2e
parent659edc0ef3ab617b34fb4bf58f929a26ce48b630 (diff)
Add e2e tests for bdelete/bdeletes command
Diffstat (limited to 'e2e')
-rw-r--r--e2e/command_bdelete.test.js203
1 files changed, 203 insertions, 0 deletions
diff --git a/e2e/command_bdelete.test.js b/e2e/command_bdelete.test.js
new file mode 100644
index 0000000..1f416db
--- /dev/null
+++ b/e2e/command_bdelete.test.js
@@ -0,0 +1,203 @@
+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('/*', (req, res) => {
+ res.send(`<!DOCTYPEhtml>
+<html lang="en">
+ <head>
+ <title>my_${req.path.slice(1)}</title>
+ </head>
+ <body><h1>${req.path}</h1></body>
+</html">`);
+ });
+ return app;
+};
+
+describe('bdelete/bdeletes 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() => {
+ let tabs = await browser.tabs.query({});
+ for (let tab of tabs.slice(1)) {
+ await browser.tabs.remove(tab.id);
+ }
+ await browser.tabs.update(tabs[0].id, { url: `http://127.0.0.1:${port}/site1`, pinned: true });
+ await browser.tabs.create({ url: `http://127.0.0.1:${port}/site2`, pinned: true })
+ await browser.tabs.create({ url: `http://127.0.0.1:${port}/site3`, pinned: true })
+ await browser.tabs.create({ url: `http://127.0.0.1:${port}/site4` })
+ await browser.tabs.create({ url: `http://127.0.0.1:${port}/site5` })
+
+ await eventually(async() => {
+ let handles = await session.getWindowHandles();
+ assert.equal(handles.length, 5);
+ await session.switchToWindow(handles[2]);
+ await session.findElementByCSS('iframe');
+ });
+
+ await new Promise((resolve) => setTimeout(resolve, 100));
+ });
+
+ it('should delete an unpinned tab by bdelete command', async() => {
+ let body = await session.findElementByCSS('body');
+ await body.sendKeys(':');
+
+ await session.switchToFrame(0);
+ let input = await session.findElementByCSS('input');
+ await input.sendKeys('bdelete site5', Key.Enter);
+
+ await eventually(async() => {
+ let tabs = await browser.tabs.query({});
+ assert.deepEqual(tabs.map(t => t.url), [
+ `http://127.0.0.1:${port}/site1`,
+ `http://127.0.0.1:${port}/site2`,
+ `http://127.0.0.1:${port}/site3`,
+ `http://127.0.0.1:${port}/site4`,
+ ])
+ });
+ });
+
+ it('should not delete an pinned tab by bdelete command by bdelete command', async() => {
+ let body = await session.findElementByCSS('body');
+ await body.sendKeys(':');
+
+ await session.switchToFrame(0);
+ let input = await session.findElementByCSS('input');
+ await input.sendKeys('bdelete site1', Key.Enter);
+
+ await eventually(async() => {
+ let tabs = await browser.tabs.query({});
+ assert.equal(tabs.length, 5);
+ });
+ });
+
+ it('should show an error when no tabs are matched by bdelete command', async() => {
+ let body = await session.findElementByCSS('body');
+ await body.sendKeys(':');
+
+ await session.switchToFrame(0);
+ let input = await session.findElementByCSS('input');
+ await input.sendKeys('bdelete xyz', Key.Enter);
+
+ await eventually(async() => {
+ let p = await session.findElementByCSS('.vimvixen-console-error');
+ let text = await p.getText();
+ assert.equal(text, 'No matching buffer for xyz');
+ });
+ });
+
+ it('should show an error when more than one tabs are matched by bdelete command', async() => {
+ let body = await session.findElementByCSS('body');
+ await body.sendKeys(':');
+
+ await session.switchToFrame(0);
+ let input = await session.findElementByCSS('input');
+ await input.sendKeys('bdelete site', Key.Enter);
+
+ await eventually(async() => {
+ let p = await session.findElementByCSS('.vimvixen-console-error');
+ let text = await p.getText();
+ assert.equal(text, 'More than one match for site');
+ });
+ });
+
+ it('should delete an unpinned tab by bdelete! command', async() => {
+ let body = await session.findElementByCSS('body');
+ await body.sendKeys(':');
+
+ await session.switchToFrame(0);
+ let input = await session.findElementByCSS('input');
+ await input.sendKeys('bdelete! site5', Key.Enter);
+
+ await eventually(async() => {
+ let tabs = await browser.tabs.query({});
+ assert.deepEqual(tabs.map(t => t.url), [
+ `http://127.0.0.1:${port}/site1`,
+ `http://127.0.0.1:${port}/site2`,
+ `http://127.0.0.1:${port}/site3`,
+ `http://127.0.0.1:${port}/site4`,
+ ])
+ });
+ });
+
+ it('should delete an pinned tab by bdelete! command', async() => {
+ let body = await session.findElementByCSS('body');
+ await body.sendKeys(':');
+
+ await session.switchToFrame(0);
+ let input = await session.findElementByCSS('input');
+ await input.sendKeys('bdelete! site1', Key.Enter);
+
+ await eventually(async() => {
+ let tabs = await browser.tabs.query({});
+ assert.deepEqual(tabs.map(t => t.url), [
+ `http://127.0.0.1:${port}/site2`,
+ `http://127.0.0.1:${port}/site3`,
+ `http://127.0.0.1:${port}/site4`,
+ `http://127.0.0.1:${port}/site5`,
+ ])
+ });
+ });
+
+ it('should delete unpinned tabs by bdeletes command', async() => {
+ let body = await session.findElementByCSS('body');
+ await body.sendKeys(':');
+
+ await session.switchToFrame(0);
+ let input = await session.findElementByCSS('input');
+ await input.sendKeys('bdeletes site', Key.Enter);
+
+ await eventually(async() => {
+ let tabs = await browser.tabs.query({});
+ assert.deepEqual(tabs.map(t => t.url), [
+ `http://127.0.0.1:${port}/site1`,
+ `http://127.0.0.1:${port}/site2`,
+ `http://127.0.0.1:${port}/site3`,
+ ])
+ });
+ });
+
+ it('should delete both pinned and unpinned tabs by bdeletes! command', async() => {
+ let body = await session.findElementByCSS('body');
+ await body.sendKeys(':');
+
+ await session.switchToFrame(0);
+ let input = await session.findElementByCSS('input');
+ await input.sendKeys('bdeletes! site', Key.Enter);
+
+ await eventually(async() => {
+ let tabs = await browser.tabs.query({});
+ assert.equal(tabs.length, 1);
+ });
+ });
+});