Add e2e tests for quit/quitall commands

jh-changes
Shin'ya Ueoka 5 years ago
parent cd34ed60b3
commit 659edc0ef3
  1. 2
      QA.md
  2. 125
      e2e/command_quit.test.js

@ -39,8 +39,6 @@ The behaviors of the console are tested in [Console section](#consoles).
- [ ] `<EMPTY>`: do nothing
<br>
- [ ] `q`, `quit`: close current tab
- [ ] `qa`, `quitall`: close all tabs
- [ ] `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

@ -0,0 +1,125 @@
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('quit/quitall 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` });
for (let i = 2; i <= 5; ++i) {
await browser.tabs.create({ url: `http://127.0.0.1:${port}/site${i}`})
}
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 current tab by q command', async() => {
let body = await session.findElementByCSS('body');
await body.sendKeys(':');
await session.switchToFrame(0);
let input = await session.findElementByCSS('input');
await input.sendKeys('q', Key.Enter);
await eventually(async() => {
let tabs = await browser.tabs.query({});
assert.equal(tabs.length, 4)
});
});
it('should current tab by quit command', async() => {
let body = await session.findElementByCSS('body');
await body.sendKeys(':');
await session.switchToFrame(0);
let input = await session.findElementByCSS('input');
await input.sendKeys('quit', Key.Enter);
await eventually(async() => {
let tabs = await browser.tabs.query({});
assert.equal(tabs.length, 4)
});
});
it('should current tab by qa command', async() => {
let body = await session.findElementByCSS('body');
await body.sendKeys(':');
await session.switchToFrame(0);
let input = await session.findElementByCSS('input');
await input.sendKeys('qa', Key.Enter);
await eventually(async() => {
let tabs = await browser.tabs.query({});
assert.equal(tabs.length, 1)
});
});
it('should current tab by quitall command', async() => {
let body = await session.findElementByCSS('body');
await body.sendKeys(':');
await session.switchToFrame(0);
let input = await session.findElementByCSS('input');
await input.sendKeys('quitall', Key.Enter);
await eventually(async() => {
let tabs = await browser.tabs.query({});
assert.equal(tabs.length, 1)
});
});
});