2019-09-19 23:35:05 +03:00
|
|
|
import { expect } from 'chai';
|
2023-08-28 17:29:27 +03:00
|
|
|
import { ipcMain, BrowserWindow } from 'electron/main';
|
2023-01-26 00:01:25 +03:00
|
|
|
import { closeWindow } from './lib/window-helpers';
|
2023-06-15 17:42:27 +03:00
|
|
|
import { once } from 'node:events';
|
2019-09-19 23:35:05 +03:00
|
|
|
|
|
|
|
describe('ipcRenderer module', () => {
|
|
|
|
let w: BrowserWindow;
|
|
|
|
before(async () => {
|
2023-07-24 15:27:30 +03:00
|
|
|
w = new BrowserWindow({
|
|
|
|
show: false,
|
|
|
|
webPreferences: {
|
|
|
|
nodeIntegration: true,
|
|
|
|
nodeIntegrationInSubFrames: true,
|
|
|
|
contextIsolation: false
|
|
|
|
}
|
|
|
|
});
|
2019-09-19 23:35:05 +03:00
|
|
|
await w.loadURL('about:blank');
|
|
|
|
});
|
|
|
|
after(async () => {
|
|
|
|
await closeWindow(w);
|
|
|
|
w = null as unknown as BrowserWindow;
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('send()', () => {
|
|
|
|
it('should work when sending an object containing id property', async () => {
|
|
|
|
const obj = {
|
|
|
|
id: 1,
|
|
|
|
name: 'ly'
|
|
|
|
};
|
|
|
|
w.webContents.executeJavaScript(`{
|
|
|
|
const { ipcRenderer } = require('electron')
|
|
|
|
ipcRenderer.send('message', ${JSON.stringify(obj)})
|
|
|
|
}`);
|
2023-02-24 02:53:53 +03:00
|
|
|
const [, received] = await once(ipcMain, 'message');
|
2019-09-19 23:35:05 +03:00
|
|
|
expect(received).to.deep.equal(obj);
|
|
|
|
});
|
|
|
|
|
2019-10-09 20:59:08 +03:00
|
|
|
it('can send instances of Date as Dates', async () => {
|
2019-09-19 23:35:05 +03:00
|
|
|
const isoDate = new Date().toISOString();
|
|
|
|
w.webContents.executeJavaScript(`{
|
|
|
|
const { ipcRenderer } = require('electron')
|
|
|
|
ipcRenderer.send('message', new Date(${JSON.stringify(isoDate)}))
|
|
|
|
}`);
|
2023-02-24 02:53:53 +03:00
|
|
|
const [, received] = await once(ipcMain, 'message');
|
2019-10-09 20:59:08 +03:00
|
|
|
expect(received.toISOString()).to.equal(isoDate);
|
2019-09-19 23:35:05 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
it('can send instances of Buffer', async () => {
|
|
|
|
const data = 'hello';
|
|
|
|
w.webContents.executeJavaScript(`{
|
|
|
|
const { ipcRenderer } = require('electron')
|
|
|
|
ipcRenderer.send('message', Buffer.from(${JSON.stringify(data)}))
|
|
|
|
}`);
|
2023-02-24 02:53:53 +03:00
|
|
|
const [, received] = await once(ipcMain, 'message');
|
2019-10-09 20:59:08 +03:00
|
|
|
expect(received).to.be.an.instanceOf(Uint8Array);
|
2019-09-19 23:35:05 +03:00
|
|
|
expect(Buffer.from(data).equals(received)).to.be.true();
|
|
|
|
});
|
|
|
|
|
2019-12-18 09:24:50 +03:00
|
|
|
it('throws when sending objects with DOM class prototypes', async () => {
|
|
|
|
await expect(w.webContents.executeJavaScript(`{
|
2019-09-19 23:35:05 +03:00
|
|
|
const { ipcRenderer } = require('electron')
|
|
|
|
ipcRenderer.send('message', document.location)
|
2019-12-18 09:24:50 +03:00
|
|
|
}`)).to.eventually.be.rejected();
|
2019-09-19 23:35:05 +03:00
|
|
|
});
|
|
|
|
|
2019-10-09 20:59:08 +03:00
|
|
|
it('does not crash when sending external objects', async () => {
|
2019-12-18 09:24:50 +03:00
|
|
|
await expect(w.webContents.executeJavaScript(`{
|
2019-09-19 23:35:05 +03:00
|
|
|
const { ipcRenderer } = require('electron')
|
2023-06-15 17:42:27 +03:00
|
|
|
const http = require('node:http')
|
2019-09-19 23:35:05 +03:00
|
|
|
|
|
|
|
const request = http.request({ port: 5000, hostname: '127.0.0.1', method: 'GET', path: '/' })
|
|
|
|
const stream = request.agent.sockets['127.0.0.1:5000:'][0]._handle._externalStream
|
|
|
|
|
2019-10-09 20:59:08 +03:00
|
|
|
ipcRenderer.send('message', stream)
|
2019-12-18 09:24:50 +03:00
|
|
|
}`)).to.eventually.be.rejected();
|
2019-09-19 23:35:05 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
it('can send objects that both reference the same object', async () => {
|
|
|
|
w.webContents.executeJavaScript(`{
|
|
|
|
const { ipcRenderer } = require('electron')
|
2023-02-01 14:59:16 +03:00
|
|
|
|
2019-09-19 23:35:05 +03:00
|
|
|
const child = { hello: 'world' }
|
|
|
|
const foo = { name: 'foo', child: child }
|
|
|
|
const bar = { name: 'bar', child: child }
|
|
|
|
const array = [foo, bar]
|
|
|
|
|
|
|
|
ipcRenderer.send('message', array, foo, bar, child)
|
|
|
|
}`);
|
|
|
|
|
|
|
|
const child = { hello: 'world' };
|
|
|
|
const foo = { name: 'foo', child: child };
|
|
|
|
const bar = { name: 'bar', child: child };
|
|
|
|
const array = [foo, bar];
|
|
|
|
|
2023-02-24 02:53:53 +03:00
|
|
|
const [, arrayValue, fooValue, barValue, childValue] = await once(ipcMain, 'message');
|
2019-09-19 23:35:05 +03:00
|
|
|
expect(arrayValue).to.deep.equal(array);
|
|
|
|
expect(fooValue).to.deep.equal(foo);
|
|
|
|
expect(barValue).to.deep.equal(bar);
|
|
|
|
expect(childValue).to.deep.equal(child);
|
|
|
|
});
|
|
|
|
|
2019-10-09 20:59:08 +03:00
|
|
|
it('can handle cyclic references', async () => {
|
2019-09-19 23:35:05 +03:00
|
|
|
w.webContents.executeJavaScript(`{
|
|
|
|
const { ipcRenderer } = require('electron')
|
|
|
|
const array = [5]
|
|
|
|
array.push(array)
|
|
|
|
|
|
|
|
const child = { hello: 'world' }
|
|
|
|
child.child = child
|
|
|
|
ipcRenderer.send('message', array, child)
|
|
|
|
}`);
|
|
|
|
|
2023-02-24 02:53:53 +03:00
|
|
|
const [, arrayValue, childValue] = await once(ipcMain, 'message');
|
2019-09-19 23:35:05 +03:00
|
|
|
expect(arrayValue[0]).to.equal(5);
|
2019-10-09 20:59:08 +03:00
|
|
|
expect(arrayValue[1]).to.equal(arrayValue);
|
2019-09-19 23:35:05 +03:00
|
|
|
|
|
|
|
expect(childValue.hello).to.equal('world');
|
2019-10-09 20:59:08 +03:00
|
|
|
expect(childValue.child).to.equal(childValue);
|
2019-09-19 23:35:05 +03:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('sendSync()', () => {
|
|
|
|
it('can be replied to by setting event.returnValue', async () => {
|
|
|
|
ipcMain.once('echo', (event, msg) => {
|
|
|
|
event.returnValue = msg;
|
|
|
|
});
|
|
|
|
const msg = await w.webContents.executeJavaScript(`new Promise(resolve => {
|
|
|
|
const { ipcRenderer } = require('electron')
|
|
|
|
resolve(ipcRenderer.sendSync('echo', 'test'))
|
|
|
|
})`);
|
|
|
|
expect(msg).to.equal('test');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('ipcRenderer.on', () => {
|
|
|
|
it('is not used for internals', async () => {
|
|
|
|
const result = await w.webContents.executeJavaScript(`
|
|
|
|
require('electron').ipcRenderer.eventNames()
|
|
|
|
`);
|
|
|
|
expect(result).to.deep.equal([]);
|
|
|
|
});
|
|
|
|
});
|
2020-06-05 02:25:25 +03:00
|
|
|
|
|
|
|
describe('after context is released', () => {
|
|
|
|
it('throws an exception', async () => {
|
|
|
|
const error = await w.webContents.executeJavaScript(`(${() => {
|
|
|
|
const child = window.open('', 'child', 'show=no,nodeIntegration=yes')! as any;
|
|
|
|
const childIpc = child.require('electron').ipcRenderer;
|
|
|
|
child.close();
|
|
|
|
return new Promise(resolve => {
|
2020-06-06 02:51:42 +03:00
|
|
|
setInterval(() => {
|
2020-06-05 02:25:25 +03:00
|
|
|
try {
|
|
|
|
childIpc.send('hello');
|
|
|
|
} catch (e) {
|
|
|
|
resolve(e);
|
|
|
|
}
|
2020-06-06 02:51:42 +03:00
|
|
|
}, 16);
|
2020-06-05 02:25:25 +03:00
|
|
|
});
|
|
|
|
}})()`);
|
|
|
|
expect(error).to.have.property('message', 'IPC method called after context was released');
|
|
|
|
});
|
|
|
|
});
|
2019-09-19 23:35:05 +03:00
|
|
|
});
|