Add e2e tests for bdelete/bdeletes command

jh-changes
Shin'ya Ueoka 5 years ago
parent 659edc0ef3
commit c14822cf4f
  1. 9
      QA.md
  2. 203
      e2e/command_bdelete.test.js

@ -37,15 +37,6 @@ The behaviors of the console are tested in [Console section](#consoles).
#### Exec a command
- [ ] `<EMPTY>`: do nothing
<br>
- [ ] `bdelete`: delete a not-pinned tab matches with keywords
- [ ] `bdelete`: show errors no-tabs or more than 1 tabs matched
- [ ] `bdelete`: can not delete pinned tab
- [ ] `bdelete!`: delete a tab matches with keywords
- [ ] `bdelete!`: delete a pinned tab matches with keywords
- [ ] `bdeletes`: delete tabs with matched with keywords excluding pinned
- [ ] `bdeletes!`: delete tabs with matched with keywords including pinned
### Completions

@ -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);
});
});
});