123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- import { ipcMain, BrowserWindow } from 'electron/main';
- import { expect } from 'chai';
- import * as cp from 'node:child_process';
- import { once } from 'node:events';
- import * as path from 'node:path';
- import { defer } from './lib/spec-helpers';
- import { closeAllWindows } from './lib/window-helpers';
- describe('ipc main module', () => {
- const fixtures = path.join(__dirname, 'fixtures');
- afterEach(closeAllWindows);
- describe('ipc.sendSync', () => {
- afterEach(() => { ipcMain.removeAllListeners('send-sync-message'); });
- it('does not crash when reply is not sent and browser is destroyed', (done) => {
- const w = new BrowserWindow({
- show: false,
- webPreferences: {
- nodeIntegration: true,
- contextIsolation: false
- }
- });
- ipcMain.once('send-sync-message', (event) => {
- event.returnValue = null;
- done();
- });
- w.loadFile(path.join(fixtures, 'api', 'send-sync-message.html'));
- });
- it('does not crash when reply is sent by multiple listeners', (done) => {
- const w = new BrowserWindow({
- show: false,
- webPreferences: {
- nodeIntegration: true,
- contextIsolation: false
- }
- });
- ipcMain.on('send-sync-message', (event) => {
- event.returnValue = null;
- });
- ipcMain.on('send-sync-message', (event) => {
- event.returnValue = null;
- done();
- });
- w.loadFile(path.join(fixtures, 'api', 'send-sync-message.html'));
- });
- });
- describe('ipcMain.on', () => {
- it('is not used for internals', async () => {
- const appPath = path.join(fixtures, 'api', 'ipc-main-listeners');
- const electronPath = process.execPath;
- const appProcess = cp.spawn(electronPath, [appPath]);
- let output = '';
- appProcess.stdout.on('data', (data) => { output += data; });
- await once(appProcess.stdout, 'end');
- output = JSON.parse(output);
- expect(output).to.deep.equal(['error']);
- });
- it('can be replied to', async () => {
- ipcMain.on('test-echo', (e, arg) => {
- e.reply('test-echo', arg);
- });
- defer(() => {
- ipcMain.removeAllListeners('test-echo');
- });
- const w = new BrowserWindow({
- show: false,
- webPreferences: {
- nodeIntegration: true,
- contextIsolation: false
- }
- });
- w.loadURL('about:blank');
- const v = await w.webContents.executeJavaScript(`new Promise((resolve, reject) => {
- const { ipcRenderer } = require('electron')
- ipcRenderer.send('test-echo', 'hello')
- ipcRenderer.on('test-echo', (e, v) => {
- resolve(v)
- })
- })`);
- expect(v).to.equal('hello');
- });
- });
- describe('ipcMain.removeAllListeners', () => {
- beforeEach(() => { ipcMain.removeAllListeners(); });
- beforeEach(() => { ipcMain.removeAllListeners(); });
- it('removes only the given channel', () => {
- ipcMain.on('channel1', () => {});
- ipcMain.on('channel2', () => {});
- ipcMain.removeAllListeners('channel1');
- expect(ipcMain.eventNames()).to.deep.equal(['channel2']);
- });
- it('removes all channels if no channel is specified', () => {
- ipcMain.on('channel1', () => {});
- ipcMain.on('channel2', () => {});
- ipcMain.removeAllListeners();
- expect(ipcMain.eventNames()).to.deep.equal([]);
- });
- });
- });
|