Rewrite e2e tests with await/async
This commit is contained in:
parent
c884c2b0a7
commit
c91f8e4dcc
1 changed files with 62 additions and 100 deletions
|
@ -6,116 +6,78 @@ 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);
|
||||||
});
|
});return
|
||||||
|
|
||||||
it('follows link by `f`', () => {
|
it('follows link by `f`', async() => {
|
||||||
let targetTab;
|
let tab = await tabs.create(targetWindow.id, CLIENT_URL + '/follow');
|
||||||
return tabs.create(targetWindow.id, CLIENT_URL + '/follow').then((tab) => {
|
await keys.press(tab.id, 'f');
|
||||||
targetTab = tab;
|
await new Promise(resolve => { setTimeout(() => resolve(), 10) });
|
||||||
return keys.press(targetTab.id, 'f');
|
await keys.press(tab.id, 'a');
|
||||||
}).then(() => {
|
await new Promise(resolve => { setTimeout(() => resolve(), 10) });
|
||||||
return new Promise(resolve => { setTimeout(() => resolve(), 10) });
|
|
||||||
}).then(() => {
|
tab = tabs.get(tab.id);
|
||||||
return keys.press(targetTab.id, 'a');
|
|
||||||
}).then(() => {
|
|
||||||
return new Promise(resolve => { setTimeout(() => resolve(), 10) });
|
|
||||||
}).then(() => {
|
|
||||||
return tabs.get(targetTab.id);
|
|
||||||
}).then((tab) => {
|
|
||||||
expect(tab.url).to.be.equal(CLIENT_URL + '/follow#a');
|
expect(tab.url).to.be.equal(CLIENT_URL + '/follow#a');
|
||||||
});
|
});
|
||||||
});
|
|
||||||
|
|
||||||
it('follows link into new tab by `F`', () => {
|
it('follows link into new tab by `F`', async () => {
|
||||||
let targetTab;
|
let tab = await tabs.create(targetWindow.id, CLIENT_URL + '/follow');
|
||||||
return tabs.create(targetWindow.id, CLIENT_URL + '/follow').then((tab) => {
|
await keys.press(tab.id, 'F', { shiftKey: true });
|
||||||
targetTab = tab;
|
await new Promise(resolve => { setTimeout(() => resolve(), 10) });
|
||||||
return keys.press(targetTab.id, 'F', { shiftKey: true });
|
await keys.press(tab.id, 'a');
|
||||||
}).then(() => {
|
await new Promise(resolve => { setTimeout(() => resolve(), 500) });
|
||||||
return new Promise(resolve => { setTimeout(() => resolve(), 10) });
|
|
||||||
}).then(() => {
|
let win = await windows.get(targetWindow.id);
|
||||||
return keys.press(targetTab.id, 'a');
|
|
||||||
}).then(() => {
|
|
||||||
return new Promise(resolve => { setTimeout(() => resolve(), 500) });
|
|
||||||
}).then(() => {
|
|
||||||
return windows.get(targetWindow.id);
|
|
||||||
}).then((win) => {
|
|
||||||
let urls = win.tabs.map(t => t.url);
|
let urls = win.tabs.map(t => t.url);
|
||||||
expect(urls).to.have.lengthOf(3);
|
expect(urls).to.have.lengthOf(3);
|
||||||
expect(urls).to.include(CLIENT_URL + '/');
|
expect(urls).to.include(CLIENT_URL + '/');
|
||||||
expect(urls).to.include(CLIENT_URL + '/follow');
|
expect(urls).to.include(CLIENT_URL + '/follow');
|
||||||
expect(urls).to.include(CLIENT_URL + '/follow#a');
|
expect(urls).to.include(CLIENT_URL + '/follow#a');
|
||||||
});
|
});
|
||||||
});
|
|
||||||
|
|
||||||
it('follows link with target=_blank into new tab by `f`', () => {
|
it('follows link with target=_blank into new tab by `f`', async () => {
|
||||||
let targetTab;
|
let tab = await tabs.create(targetWindow.id, CLIENT_URL + '/follow');
|
||||||
return tabs.create(targetWindow.id, CLIENT_URL + '/follow').then((tab) => {
|
await keys.press(tab.id, 'f');
|
||||||
targetTab = tab;
|
await new Promise(resolve => { setTimeout(() => resolve(), 10) });
|
||||||
return keys.press(targetTab.id, 'f');
|
await keys.press(tab.id, 'b');
|
||||||
}).then(() => {
|
await new Promise(resolve => { setTimeout(() => resolve(), 500) });
|
||||||
return new Promise(resolve => { setTimeout(() => resolve(), 10) });
|
|
||||||
}).then(() => {
|
let win = await windows.get(targetWindow.id);
|
||||||
return keys.press(targetTab.id, 'b');
|
|
||||||
}).then(() => {
|
|
||||||
return new Promise(resolve => { setTimeout(() => resolve(), 500) });
|
|
||||||
}).then(() => {
|
|
||||||
return windows.get(targetWindow.id);
|
|
||||||
}).then((win) => {
|
|
||||||
let urls = win.tabs.map(t => t.url);
|
let urls = win.tabs.map(t => t.url);
|
||||||
expect(urls).to.have.lengthOf(3);
|
expect(urls).to.have.lengthOf(3);
|
||||||
expect(urls).to.include(CLIENT_URL + '/');
|
expect(urls).to.include(CLIENT_URL + '/');
|
||||||
expect(urls).to.include(CLIENT_URL + '/follow');
|
expect(urls).to.include(CLIENT_URL + '/follow');
|
||||||
expect(urls).to.include(CLIENT_URL + '/follow#external');
|
expect(urls).to.include(CLIENT_URL + '/follow#external');
|
||||||
});
|
});
|
||||||
});
|
|
||||||
|
|
||||||
it('follows link with target=_blank into new tab by `F`', () => {
|
it('follows link with target=_blank into new tab by `F`', async () => {
|
||||||
let targetTab;
|
let tab = await tabs.create(targetWindow.id, CLIENT_URL + '/follow');
|
||||||
return tabs.create(targetWindow.id, CLIENT_URL + '/follow').then((tab) => {
|
await keys.press(tab.id, 'F', { shiftKey: true });
|
||||||
targetTab = tab;
|
await new Promise(resolve => { setTimeout(() => resolve(), 10) });
|
||||||
return keys.press(targetTab.id, 'F', { shiftKey: true });
|
await keys.press(tab.id, 'b');
|
||||||
}).then(() => {
|
await new Promise(resolve => { setTimeout(() => resolve(), 500) });
|
||||||
}).then(() => {
|
|
||||||
return new Promise(resolve => { setTimeout(() => resolve(), 10) });
|
let win = await windows.get(targetWindow.id);
|
||||||
}).then(() => {
|
|
||||||
return keys.press(targetTab.id, 'b');
|
|
||||||
}).then(() => {
|
|
||||||
return new Promise(resolve => { setTimeout(() => resolve(), 500) });
|
|
||||||
}).then(() => {
|
|
||||||
return windows.get(targetWindow.id);
|
|
||||||
}).then((win) => {
|
|
||||||
let urls = win.tabs.map(t => t.url);
|
let urls = win.tabs.map(t => t.url);
|
||||||
expect(urls).to.have.lengthOf(3);
|
expect(urls).to.have.lengthOf(3);
|
||||||
expect(urls).to.include(CLIENT_URL + '/');
|
expect(urls).to.include(CLIENT_URL + '/');
|
||||||
expect(urls).to.include(CLIENT_URL + '/follow');
|
expect(urls).to.include(CLIENT_URL + '/follow');
|
||||||
expect(urls).to.include(CLIENT_URL + '/follow#external');
|
expect(urls).to.include(CLIENT_URL + '/follow#external');
|
||||||
});
|
});
|
||||||
});
|
|
||||||
|
|
||||||
it('follows area by `F`', () => {
|
it('follows area by `F`', async () => {
|
||||||
let targetTab;
|
let tab = await tabs.create(targetWindow.id, CLIENT_URL + '/follow');
|
||||||
return tabs.create(targetWindow.id, CLIENT_URL + '/follow').then((tab) => {
|
await keys.press(tab.id, 'f');
|
||||||
targetTab = tab;
|
await new Promise(resolve => { setTimeout(() => resolve(), 10) });
|
||||||
return keys.press(targetTab.id, 'f');
|
await keys.press(tab.id, 'c');
|
||||||
}).then(() => {
|
await new Promise(resolve => { setTimeout(() => resolve(), 10) });
|
||||||
return new Promise(resolve => { setTimeout(() => resolve(), 10) });
|
|
||||||
}).then(() => {
|
tab = await tabs.get(tab.id);
|
||||||
return keys.press(targetTab.id, 'c');
|
|
||||||
}).then(() => {
|
|
||||||
return new Promise(resolve => { setTimeout(() => resolve(), 10) });
|
|
||||||
}).then(() => {
|
|
||||||
return tabs.get(targetTab.id);
|
|
||||||
}).then((tab) => {
|
|
||||||
expect(tab.url).to.be.equal(CLIENT_URL + '/follow#area');
|
expect(tab.url).to.be.equal(CLIENT_URL + '/follow#area');
|
||||||
});
|
});
|
||||||
});
|
|
||||||
});
|
});
|
||||||
|
|
Reference in a new issue