electron/spec-main/api-web-frame-spec.ts

41 lines
1.4 KiB
TypeScript
Raw Normal View History

2020-03-20 20:28:31 +00:00
import { expect } from 'chai';
import * as path from 'path';
import { BrowserWindow, ipcMain } from 'electron/main';
2020-03-20 20:28:31 +00:00
import { closeAllWindows } from './window-helpers';
describe('webFrame module', () => {
2020-03-20 20:28:31 +00:00
const fixtures = path.resolve(__dirname, '..', 'spec', 'fixtures');
2020-03-20 20:28:31 +00:00
afterEach(closeAllWindows);
it('calls a spellcheck provider', async () => {
const w = new BrowserWindow({
show: false,
webPreferences: {
nodeIntegration: true
}
2020-03-20 20:28:31 +00:00
});
await w.loadFile(path.join(fixtures, 'pages', 'webframe-spell-check.html'));
w.focus();
await w.webContents.executeJavaScript('document.querySelector("input").focus()', true);
const spellCheckerFeedback =
new Promise<[string[], boolean]>(resolve => {
ipcMain.on('spec-spell-check', (e, words, callbackDefined) => {
if (words.length === 5) {
// The API calls the provider after every completed word.
// The promise is resolved only after this event is received with all words.
2020-03-20 20:28:31 +00:00
resolve([words, callbackDefined]);
}
2020-03-20 20:28:31 +00:00
});
});
const inputText = 'spleling test you\'re ';
for (const keyCode of inputText) {
2020-03-20 20:28:31 +00:00
w.webContents.sendInputEvent({ type: 'char', keyCode });
}
2020-03-20 20:28:31 +00:00
const [words, callbackDefined] = await spellCheckerFeedback;
expect(words.sort()).to.deep.equal(['spleling', 'test', 'you\'re', 'you', 're'].sort());
expect(callbackDefined).to.be.true();
});
});