diff --git a/QA.md b/QA.md index a6387f6..4d1a270 100644 --- a/QA.md +++ b/QA.md @@ -37,15 +37,6 @@ The behaviors of the console are tested in [Console section](#consoles). #### Exec a command - [ ] ``: do nothing -
- -- [ ] `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 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(` + + + my_${req.path.slice(1)} + +

${req.path}

+`); + }); + 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); + }); + }); +});