|
|
@ -6,260 +6,161 @@ import { CLIENT_URL } from '../web-server/url'; |
|
|
|
describe("tab test", () => { |
|
|
|
describe("tab test", () => { |
|
|
|
let targetWindow; |
|
|
|
let targetWindow; |
|
|
|
|
|
|
|
|
|
|
|
beforeEach(() => { |
|
|
|
beforeEach(async () => { |
|
|
|
return windows.create(CLIENT_URL).then((win) => { |
|
|
|
targetWindow = await windows.create(CLIENT_URL); |
|
|
|
targetWindow = win; |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
afterEach(() => { |
|
|
|
afterEach(async () => { |
|
|
|
return windows.remove(targetWindow.id); |
|
|
|
await windows.remove(targetWindow.id); |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
it('deletes tab by d', () => { |
|
|
|
it('deletes tab by d', async () => { |
|
|
|
let before; |
|
|
|
let tab = await tabs.create(targetWindow.id, CLIENT_URL); |
|
|
|
let targetTab; |
|
|
|
let before = await windows.get(targetWindow.id); |
|
|
|
return tabs.create(targetWindow.id, CLIENT_URL).then((tab) => { |
|
|
|
await keys.press(tab.id, 'd'); |
|
|
|
targetTab = tab; |
|
|
|
|
|
|
|
return windows.get(targetWindow.id); |
|
|
|
let actual = await windows.get(targetWindow.id); |
|
|
|
}).then((win) => { |
|
|
|
expect(actual.tabs).to.have.lengthOf(before.tabs.length - 1); |
|
|
|
before = win; |
|
|
|
}); |
|
|
|
return keys.press(targetTab.id, 'd'); |
|
|
|
|
|
|
|
}).then(() => { |
|
|
|
it('duplicates tab by zd', async () => { |
|
|
|
return windows.get(targetWindow.id); |
|
|
|
let tab = await tabs.create(targetWindow.id, CLIENT_URL); |
|
|
|
}).then((actual) => { |
|
|
|
let before = await windows.get(targetWindow.id) |
|
|
|
expect(actual.tabs).to.have.lengthOf(before.tabs.length - 1); |
|
|
|
await keys.press(tab.id, 'z'); |
|
|
|
}); |
|
|
|
await keys.press(tab.id, 'd'); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let actual = await windows.get(targetWindow.id); |
|
|
|
|
|
|
|
expect(actual.tabs).to.have.lengthOf(before.tabs.length + 1); |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
it('makes pinned by zp', async () => { |
|
|
|
|
|
|
|
let tab = await tabs.create(targetWindow.id, CLIENT_URL); |
|
|
|
|
|
|
|
let before = await windows.get(targetWindow.id); |
|
|
|
|
|
|
|
await keys.press(tab.id, 'z'); |
|
|
|
|
|
|
|
await keys.press(tab.id, 'p'); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let actual = await windows.get(targetWindow.id); |
|
|
|
|
|
|
|
expect(actual.tabs[0].pinned).to.be.true; |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
it('duplicates tab by zd', () => { |
|
|
|
it('selects previous tab by K', async () => { |
|
|
|
let before; |
|
|
|
await tabs.create(targetWindow.id, CLIENT_URL + '#1'); |
|
|
|
let targetTab; |
|
|
|
await tabs.create(targetWindow.id, CLIENT_URL + '#2'); |
|
|
|
return tabs.create(targetWindow.id, CLIENT_URL).then((tab) => { |
|
|
|
await tabs.create(targetWindow.id, CLIENT_URL + '#3'); |
|
|
|
targetTab = tab; |
|
|
|
let tab = await tabs.selectAt(targetWindow.id, 2); |
|
|
|
return windows.get(targetWindow.id) |
|
|
|
await keys.press(tab.id, 'K', { shiftKey: true }); |
|
|
|
}).then((win) => {; |
|
|
|
|
|
|
|
before = win; |
|
|
|
let win = await windows.get(targetWindow.id); |
|
|
|
return keys.press(targetTab.id, 'z'); |
|
|
|
expect(win.tabs[1].active).to.be.true; |
|
|
|
}).then(() => { |
|
|
|
|
|
|
|
return keys.press(targetTab.id, 'd'); |
|
|
|
|
|
|
|
}).then(() => { |
|
|
|
|
|
|
|
return windows.get(targetWindow.id); |
|
|
|
|
|
|
|
}).then((actual) => { |
|
|
|
|
|
|
|
expect(actual.tabs).to.have.lengthOf(before.tabs.length + 1); |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
it('makes pinned by zp', () => { |
|
|
|
|
|
|
|
let before; |
|
|
|
|
|
|
|
let targetTab; |
|
|
|
|
|
|
|
return tabs.create(targetWindow.id, CLIENT_URL).then((tab) => { |
|
|
|
|
|
|
|
targetTab = tab; |
|
|
|
|
|
|
|
return windows.get(targetWindow.id) |
|
|
|
|
|
|
|
}).then((win) => {; |
|
|
|
|
|
|
|
before = win; |
|
|
|
|
|
|
|
return keys.press(targetTab.id, 'z'); |
|
|
|
|
|
|
|
}).then(() => { |
|
|
|
|
|
|
|
return keys.press(targetTab.id, 'p'); |
|
|
|
|
|
|
|
}).then(() => { |
|
|
|
|
|
|
|
return windows.get(targetWindow.id); |
|
|
|
|
|
|
|
}).then((actual) => { |
|
|
|
|
|
|
|
expect(actual.tabs[0].pinned).to.be.true; |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
it('selects previous tab by K', () => { |
|
|
|
|
|
|
|
return Promise.resolve().then(() => { |
|
|
|
|
|
|
|
return tabs.create(targetWindow.id, CLIENT_URL + '#1') |
|
|
|
|
|
|
|
}).then(() => { |
|
|
|
|
|
|
|
return tabs.create(targetWindow.id, CLIENT_URL + '#2') |
|
|
|
|
|
|
|
}).then(() => { |
|
|
|
|
|
|
|
return tabs.create(targetWindow.id, CLIENT_URL + '#3'); |
|
|
|
|
|
|
|
}).then(() => { |
|
|
|
|
|
|
|
return tabs.selectAt(targetWindow.id, 2); |
|
|
|
|
|
|
|
}).then((tab) => { |
|
|
|
|
|
|
|
return keys.press(tab.id, 'K', { shiftKey: true }); |
|
|
|
|
|
|
|
}).then(() => { |
|
|
|
|
|
|
|
return windows.get(targetWindow.id); |
|
|
|
|
|
|
|
}).then((win) => { |
|
|
|
|
|
|
|
expect(win.tabs[1].active).to.be.true; |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
it('selects previous tab by K rotatory', () => { |
|
|
|
it('selects previous tab by K rotatory', async () => { |
|
|
|
return Promise.resolve().then(() => { |
|
|
|
await tabs.create(targetWindow.id, CLIENT_URL + '#1'); |
|
|
|
return tabs.create(targetWindow.id, CLIENT_URL + '#1') |
|
|
|
await tabs.create(targetWindow.id, CLIENT_URL + '#2'); |
|
|
|
}).then(() => { |
|
|
|
await tabs.create(targetWindow.id, CLIENT_URL + '#3'); |
|
|
|
return tabs.create(targetWindow.id, CLIENT_URL + '#2') |
|
|
|
let tab = await tabs.selectAt(targetWindow.id, 0); |
|
|
|
}).then(() => { |
|
|
|
await keys.press(tab.id, 'K', { shiftKey: true }); |
|
|
|
return tabs.create(targetWindow.id, CLIENT_URL + '#3'); |
|
|
|
|
|
|
|
}).then(() => { |
|
|
|
let win = await windows.get(targetWindow.id); |
|
|
|
return tabs.selectAt(targetWindow.id, 0); |
|
|
|
expect(win.tabs[3].active).to.be.true; |
|
|
|
}).then((tab) => { |
|
|
|
|
|
|
|
return keys.press(tab.id, 'K', { shiftKey: true }); |
|
|
|
|
|
|
|
}).then(() => { |
|
|
|
|
|
|
|
return windows.get(targetWindow.id); |
|
|
|
|
|
|
|
}).then((win) => { |
|
|
|
|
|
|
|
expect(win.tabs[3].active).to.be.true; |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
it('selects next tab by J', () => { |
|
|
|
it('selects next tab by J', async () => { |
|
|
|
return Promise.resolve().then(() => { |
|
|
|
await tabs.create(targetWindow.id, CLIENT_URL + '#1'); |
|
|
|
return tabs.create(targetWindow.id, CLIENT_URL + '#1') |
|
|
|
await tabs.create(targetWindow.id, CLIENT_URL + '#2'); |
|
|
|
}).then(() => { |
|
|
|
await tabs.create(targetWindow.id, CLIENT_URL + '#3'); |
|
|
|
return tabs.create(targetWindow.id, CLIENT_URL + '#2') |
|
|
|
let tab = await tabs.selectAt(targetWindow.id, 2); |
|
|
|
}).then(() => { |
|
|
|
await keys.press(tab.id, 'J', { shiftKey: true }); |
|
|
|
return tabs.create(targetWindow.id, CLIENT_URL + '#3'); |
|
|
|
|
|
|
|
}).then(() => { |
|
|
|
let win = await windows.get(targetWindow.id); |
|
|
|
return tabs.selectAt(targetWindow.id, 2); |
|
|
|
expect(win.tabs[3].active).to.be.true; |
|
|
|
}).then((tab) => { |
|
|
|
|
|
|
|
return keys.press(tab.id, 'J', { shiftKey: true }); |
|
|
|
|
|
|
|
}).then(() => { |
|
|
|
|
|
|
|
return windows.get(targetWindow.id); |
|
|
|
|
|
|
|
}).then((win) => { |
|
|
|
|
|
|
|
expect(win.tabs[3].active).to.be.true; |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
it('selects previous tab by J rotatory', () => { |
|
|
|
it('selects previous tab by J rotatory', async () => { |
|
|
|
return Promise.resolve().then(() => { |
|
|
|
await tabs.create(targetWindow.id, CLIENT_URL + '#1'); |
|
|
|
return tabs.create(targetWindow.id, CLIENT_URL + '#1') |
|
|
|
await tabs.create(targetWindow.id, CLIENT_URL + '#2'); |
|
|
|
}).then(() => { |
|
|
|
await tabs.create(targetWindow.id, CLIENT_URL + '#3'); |
|
|
|
return tabs.create(targetWindow.id, CLIENT_URL + '#2') |
|
|
|
let tab = await tabs.selectAt(targetWindow.id, 3); |
|
|
|
}).then(() => { |
|
|
|
await keys.press(tab.id, 'J', { shiftKey: true }); |
|
|
|
return tabs.create(targetWindow.id, CLIENT_URL + '#3'); |
|
|
|
|
|
|
|
}).then(() => { |
|
|
|
let win = await windows.get(targetWindow.id); |
|
|
|
return tabs.selectAt(targetWindow.id, 3); |
|
|
|
expect(win.tabs[0].active).to.be.true; |
|
|
|
}).then((tab) => { |
|
|
|
|
|
|
|
return keys.press(tab.id, 'J', { shiftKey: true }); |
|
|
|
|
|
|
|
}).then(() => { |
|
|
|
|
|
|
|
return windows.get(targetWindow.id); |
|
|
|
|
|
|
|
}).then((win) => { |
|
|
|
|
|
|
|
expect(win.tabs[0].active).to.be.true; |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
it('selects first tab by g0', () => { |
|
|
|
it('selects first tab by g0', async () => { |
|
|
|
return Promise.resolve().then(() => { |
|
|
|
await tabs.create(targetWindow.id, CLIENT_URL + '#1'); |
|
|
|
return tabs.create(targetWindow.id, CLIENT_URL + '#1') |
|
|
|
await tabs.create(targetWindow.id, CLIENT_URL + '#2'); |
|
|
|
}).then(() => { |
|
|
|
await tabs.create(targetWindow.id, CLIENT_URL + '#3'); |
|
|
|
return tabs.create(targetWindow.id, CLIENT_URL + '#2') |
|
|
|
let tab = await tabs.selectAt(targetWindow.id, 2); |
|
|
|
}).then(() => { |
|
|
|
await keys.press(tab.id, 'g'); |
|
|
|
return tabs.create(targetWindow.id, CLIENT_URL + '#3'); |
|
|
|
await keys.press(tab.id, '0'); |
|
|
|
}).then(() => { |
|
|
|
|
|
|
|
return tabs.selectAt(targetWindow.id, 2); |
|
|
|
let win = await windows.get(targetWindow.id); |
|
|
|
}).then((tab) => { |
|
|
|
expect(win.tabs[0].active).to.be.true; |
|
|
|
return keys.press(tab.id, 'g').then(() => tab); |
|
|
|
|
|
|
|
}).then((tab) => { |
|
|
|
|
|
|
|
return keys.press(tab.id, '0'); |
|
|
|
|
|
|
|
}).then(() => { |
|
|
|
|
|
|
|
return windows.get(targetWindow.id); |
|
|
|
|
|
|
|
}).then((win) => { |
|
|
|
|
|
|
|
expect(win.tabs[0].active).to.be.true; |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
it('selects last tab by g$', () => { |
|
|
|
it('selects last tab by g$', async () => { |
|
|
|
return Promise.resolve().then(() => { |
|
|
|
await tabs.create(targetWindow.id, CLIENT_URL + '#1'); |
|
|
|
return tabs.create(targetWindow.id, CLIENT_URL + '#1') |
|
|
|
await tabs.create(targetWindow.id, CLIENT_URL + '#2'); |
|
|
|
}).then(() => { |
|
|
|
await tabs.create(targetWindow.id, CLIENT_URL + '#3'); |
|
|
|
return tabs.create(targetWindow.id, CLIENT_URL + '#2') |
|
|
|
let tab = await tabs.selectAt(targetWindow.id, 2); |
|
|
|
}).then(() => { |
|
|
|
await keys.press(tab.id, 'g'); |
|
|
|
return tabs.create(targetWindow.id, CLIENT_URL + '#3'); |
|
|
|
await keys.press(tab.id, '$'); |
|
|
|
}).then(() => { |
|
|
|
|
|
|
|
return tabs.selectAt(targetWindow.id, 2); |
|
|
|
let win = await windows.get(targetWindow.id); |
|
|
|
}).then((tab) => { |
|
|
|
expect(win.tabs[3].active).to.be.true; |
|
|
|
return keys.press(tab.id, 'g').then(() => tab); |
|
|
|
|
|
|
|
}).then((tab) => { |
|
|
|
|
|
|
|
return keys.press(tab.id, '$'); |
|
|
|
|
|
|
|
}).then(() => { |
|
|
|
|
|
|
|
return windows.get(targetWindow.id); |
|
|
|
|
|
|
|
}).then((win) => { |
|
|
|
|
|
|
|
expect(win.tabs[3].active).to.be.true; |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
it('selects last selected tab by <C-6>', () => { |
|
|
|
it('selects last selected tab by <C-6>', async () => { |
|
|
|
return Promise.resolve().then(() => { |
|
|
|
await tabs.create(targetWindow.id, CLIENT_URL + '#1'); |
|
|
|
return tabs.create(targetWindow.id, CLIENT_URL + '#1') |
|
|
|
await tabs.create(targetWindow.id, CLIENT_URL + '#2'); |
|
|
|
}).then(() => { |
|
|
|
await tabs.create(targetWindow.id, CLIENT_URL + '#3'); |
|
|
|
return tabs.create(targetWindow.id, CLIENT_URL + '#2') |
|
|
|
await tabs.selectAt(targetWindow.id, 1); |
|
|
|
}).then(() => { |
|
|
|
let tab = await tabs.selectAt(targetWindow.id, 3); |
|
|
|
return tabs.create(targetWindow.id, CLIENT_URL + '#3'); |
|
|
|
await keys.press(tab.id, '6', { ctrlKey: true }); |
|
|
|
}).then(() => { |
|
|
|
|
|
|
|
return tabs.selectAt(targetWindow.id, 1); |
|
|
|
let win = await windows.get(targetWindow.id); |
|
|
|
}).then(() => { |
|
|
|
expect(win.tabs[1].active).to.be.true; |
|
|
|
return tabs.selectAt(targetWindow.id, 3); |
|
|
|
|
|
|
|
}).then((tab) => { |
|
|
|
|
|
|
|
return keys.press(tab.id, '6', { ctrlKey: true }); |
|
|
|
|
|
|
|
}).then(() => { |
|
|
|
|
|
|
|
return windows.get(targetWindow.id); |
|
|
|
|
|
|
|
}).then((win) => { |
|
|
|
|
|
|
|
expect(win.tabs[1].active).to.be.true; |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
it('deletes tab by d', () => { |
|
|
|
it('deletes tab by d', async () => { |
|
|
|
return Promise.resolve().then(() => { |
|
|
|
let tab = await tabs.create(targetWindow.id, CLIENT_URL + '#1'); |
|
|
|
return tabs.create(targetWindow.id, CLIENT_URL + '#1'); |
|
|
|
await keys.press(tab.id, 'd'); |
|
|
|
}).then((tab) => { |
|
|
|
|
|
|
|
return keys.press(tab.id, 'd'); |
|
|
|
let win = await windows.get(targetWindow.id); |
|
|
|
}).then(() => { |
|
|
|
expect(win.tabs).to.have.lengthOf(1); |
|
|
|
return windows.get(targetWindow.id); |
|
|
|
|
|
|
|
}).then((win) => { |
|
|
|
|
|
|
|
expect(win.tabs).to.have.lengthOf(1); |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
it('reopen tab by u', () => { |
|
|
|
it('reopen tab by u', async () => { |
|
|
|
return Promise.resolve().then(() => { |
|
|
|
let tab = await tabs.create(targetWindow.id, CLIENT_URL + '#1'); |
|
|
|
return tabs.create(targetWindow.id, CLIENT_URL + '#1'); |
|
|
|
await keys.press(tab.id, 'd'); |
|
|
|
}).then((tab) => { |
|
|
|
|
|
|
|
return keys.press(tab.id, 'd'); |
|
|
|
let win = await windows.get(targetWindow.id); |
|
|
|
}).then(() => { |
|
|
|
expect(win.tabs).to.have.lengthOf(1); |
|
|
|
return windows.get(targetWindow.id); |
|
|
|
|
|
|
|
}).then((win) => { |
|
|
|
await keys.press(win.tabs[0].id, 'u'); |
|
|
|
expect(win.tabs).to.have.lengthOf(1); |
|
|
|
await new Promise((resolve) => setTimeout(resolve, 100)); |
|
|
|
return keys.press(win.tabs[0].id, 'u'); |
|
|
|
|
|
|
|
}).then(() => { |
|
|
|
win = await windows.get(targetWindow.id); |
|
|
|
return new Promise((resolve) => setTimeout(resolve, 100)); |
|
|
|
expect(win.tabs).to.have.lengthOf(2); |
|
|
|
}).then(() => { |
|
|
|
|
|
|
|
return windows.get(targetWindow.id); |
|
|
|
|
|
|
|
}).then((win) => { |
|
|
|
|
|
|
|
expect(win.tabs).to.have.lengthOf(2); |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
it('does not delete pinned tab by d', () => { |
|
|
|
it('does not delete pinned tab by d', async () => { |
|
|
|
return Promise.resolve().then(() => { |
|
|
|
let tab = await tabs.create(targetWindow.id, CLIENT_URL + '#1'); |
|
|
|
return tabs.create(targetWindow.id, CLIENT_URL + '#1'); |
|
|
|
tab = await tabs.update(tab.id, { pinned: true }); |
|
|
|
}).then((tab) => { |
|
|
|
await keys.press(tab.id, 'd'); |
|
|
|
return tabs.update(tab.id, { pinned: true }); |
|
|
|
|
|
|
|
}).then((tab) => { |
|
|
|
let win = await windows.get(targetWindow.id); |
|
|
|
return keys.press(tab.id, 'd'); |
|
|
|
expect(win.tabs).to.have.lengthOf(2); |
|
|
|
}).then(() => { |
|
|
|
|
|
|
|
return windows.get(targetWindow.id); |
|
|
|
|
|
|
|
}).then((win) => { |
|
|
|
|
|
|
|
expect(win.tabs).to.have.lengthOf(2); |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
it('deletes pinned tab by !d', () => { |
|
|
|
it('deletes pinned tab by !d', async () => { |
|
|
|
let target; |
|
|
|
let tab = await tabs.create(targetWindow.id, CLIENT_URL + '#1'); |
|
|
|
return Promise.resolve().then(() => { |
|
|
|
tab = await tabs.update(tab.id, { pinned: true }); |
|
|
|
return tabs.create(targetWindow.id, CLIENT_URL + '#1'); |
|
|
|
await keys.press(tab.id, '!'); |
|
|
|
}).then((tab) => { |
|
|
|
await keys.press(tab.id, 'd'); |
|
|
|
return tabs.update(tab.id, { pinned: true }); |
|
|
|
|
|
|
|
}).then((tab) => { |
|
|
|
let win = await windows.get(targetWindow.id); |
|
|
|
target = tab; |
|
|
|
expect(win.tabs).to.have.lengthOf(1); |
|
|
|
return keys.press(target.id, '!'); |
|
|
|
|
|
|
|
}).then(() => { |
|
|
|
|
|
|
|
return keys.press(target.id, 'd'); |
|
|
|
|
|
|
|
}).then(() => { |
|
|
|
|
|
|
|
return windows.get(targetWindow.id); |
|
|
|
|
|
|
|
}).then((win) => { |
|
|
|
|
|
|
|
expect(win.tabs).to.have.lengthOf(1); |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
}); |
|
|
|
}); |
|
|
|
}); |
|
|
|
}); |
|
|
|