electron/spec/api-ipc-renderer-spec.js

239 строки
7.1 KiB
JavaScript
Исходник Обычный вид История

2017-12-01 23:57:41 +03:00
'use strict'
const chai = require('chai')
const dirtyChai = require('dirty-chai')
2017-12-01 23:57:41 +03:00
const http = require('http')
const path = require('path')
2018-09-13 19:10:51 +03:00
const { closeWindow } = require('./window-helpers')
2017-12-01 23:57:41 +03:00
2018-09-13 19:10:51 +03:00
const { expect } = chai
chai.use(dirtyChai)
2018-09-13 19:10:51 +03:00
const { ipcRenderer, remote } = require('electron')
const { ipcMain, webContents, BrowserWindow } = remote
2017-12-01 23:57:41 +03:00
2017-12-02 00:01:03 +03:00
describe('ipc renderer module', () => {
2017-12-01 23:57:41 +03:00
const fixtures = path.join(__dirname, 'fixtures')
let w = null
afterEach(() => closeWindow(w).then(() => { w = null }))
describe('ipc.sender.send', () => {
it('should work when sending an object containing id property', done => {
2017-12-01 23:57:41 +03:00
const obj = {
id: 1,
name: 'ly'
}
ipcRenderer.once('message', (event, message) => {
expect(message).to.deep.equal(obj)
2017-12-01 23:57:41 +03:00
done()
})
ipcRenderer.send('message', obj)
})
it('can send instances of Date', done => {
2017-12-01 23:57:41 +03:00
const currentDate = new Date()
ipcRenderer.once('message', (event, value) => {
expect(value).to.equal(currentDate.toISOString())
2017-12-01 23:57:41 +03:00
done()
})
ipcRenderer.send('message', currentDate)
})
it('can send instances of Buffer', done => {
2017-12-01 23:57:41 +03:00
const buffer = Buffer.from('hello')
ipcRenderer.once('message', (event, message) => {
expect(buffer.equals(message)).to.be.true()
2017-12-01 23:57:41 +03:00
done()
})
ipcRenderer.send('message', buffer)
})
it('can send objects with DOM class prototypes', done => {
ipcRenderer.once('message', (event, value) => {
expect(value.protocol).to.equal('file:')
expect(value.hostname).to.equal('')
2017-12-01 23:57:41 +03:00
done()
})
ipcRenderer.send('message', document.location)
})
it('can send Electron API objects', done => {
2017-12-01 23:57:41 +03:00
const webContents = remote.getCurrentWebContents()
ipcRenderer.once('message', (event, value) => {
expect(value.browserWindowOptions).to.deep.equal(webContents.browserWindowOptions)
2017-12-01 23:57:41 +03:00
done()
})
ipcRenderer.send('message', webContents)
})
it('does not crash on external objects (regression)', done => {
2018-09-13 19:10:51 +03:00
const request = http.request({ port: 5000, hostname: '127.0.0.1', method: 'GET', path: '/' })
2017-12-01 23:57:41 +03:00
const stream = request.agent.sockets['127.0.0.1:5000:'][0]._handle._externalStream
request.on('error', () => {})
ipcRenderer.once('message', (event, requestValue, externalStreamValue) => {
expect(requestValue.method).to.equal('GET')
expect(requestValue.path).to.equal('/')
expect(externalStreamValue).to.be.null()
2017-12-01 23:57:41 +03:00
done()
})
ipcRenderer.send('message', request, stream)
})
it('can send objects that both reference the same object', done => {
2018-09-13 19:10:51 +03:00
const child = { hello: 'world' }
const foo = { name: 'foo', child: child }
const bar = { name: 'bar', child: child }
2017-12-01 23:57:41 +03:00
const array = [foo, bar]
ipcRenderer.once('message', (event, arrayValue, fooValue, barValue, childValue) => {
expect(arrayValue).to.deep.equal(array)
expect(fooValue).to.deep.equal(foo)
expect(barValue).to.deep.equal(bar)
expect(childValue).to.deep.equal(child)
2017-12-01 23:57:41 +03:00
done()
})
ipcRenderer.send('message', array, foo, bar, child)
})
it('inserts null for cyclic references', done => {
2017-12-01 23:57:41 +03:00
const array = [5]
array.push(array)
2018-09-13 19:10:51 +03:00
const child = { hello: 'world' }
2017-12-01 23:57:41 +03:00
child.child = child
ipcRenderer.once('message', (event, arrayValue, childValue) => {
expect(arrayValue[0]).to.equal(5)
expect(arrayValue[1]).to.be.null()
2017-12-01 23:57:41 +03:00
expect(childValue.hello).to.equal('world')
expect(childValue.child).to.be.null()
2017-12-01 23:57:41 +03:00
done()
})
ipcRenderer.send('message', array, child)
})
})
describe('ipc.sendSync', () => {
afterEach(() => {
ipcMain.removeAllListeners('send-sync-message')
})
it('can be replied by setting event.returnValue', () => {
const msg = ipcRenderer.sendSync('echo', 'test')
expect(msg).to.equal('test')
2017-12-01 23:57:41 +03:00
})
})
describe('ipcRenderer.sendTo', () => {
let contents = null
afterEach(() => {
ipcRenderer.removeAllListeners('pong')
contents.destroy()
contents = null
})
it('sends message to WebContents', done => {
contents = webContents.create({
preload: path.join(fixtures, 'module', 'preload-inject-ipc.js')
})
const payload = 'Hello World!'
2017-12-01 23:57:41 +03:00
ipcRenderer.once('pong', (event, data) => {
expect(payload).to.equal(data)
2017-12-01 23:57:41 +03:00
done()
})
contents.once('did-finish-load', () => {
ipcRenderer.sendTo(contents.id, 'ping', payload)
})
contents.loadFile(path.join(fixtures, 'pages', 'ping-pong.html'))
})
it('sends message to WebContents (sanboxed renderer)', done => {
contents = webContents.create({
preload: path.join(fixtures, 'module', 'preload-inject-ipc.js'),
sandbox: true
})
const payload = 'Hello World!'
ipcRenderer.once('pong', (event, data) => {
expect(payload).to.equal(data)
done()
})
contents.once('did-finish-load', () => {
ipcRenderer.sendTo(contents.id, 'ping', payload)
2017-12-01 23:57:41 +03:00
})
contents.loadFile(path.join(fixtures, 'pages', 'ping-pong.html'))
2017-12-01 23:57:41 +03:00
})
it('sends message to WebContents (channel has special chars)', done => {
contents = webContents.create({
preload: path.join(fixtures, 'module', 'preload-inject-ipc.js')
})
const payload = 'Hello World!'
ipcRenderer.once('pong-æøåü', (event, data) => {
expect(payload).to.equal(data)
done()
})
contents.once('did-finish-load', () => {
ipcRenderer.sendTo(contents.id, 'ping-æøåü', payload)
})
contents.loadFile(path.join(fixtures, 'pages', 'ping-pong.html'))
})
2017-12-01 23:57:41 +03:00
})
describe('remote listeners', () => {
it('detaches listeners subscribed to destroyed renderers, and shows a warning', (done) => {
w = new BrowserWindow({ show: false })
w.webContents.once('did-finish-load', () => {
w.webContents.once('did-finish-load', () => {
const expectedMessage = [
'Attempting to call a function in a renderer window that has been closed or released.',
'Function provided here: remote-event-handler.html:11:33',
'Remote event names: remote-handler, other-remote-handler'
].join('\n')
2017-12-01 23:57:41 +03:00
const results = ipcRenderer.sendSync('try-emit-web-contents-event', w.webContents.id, 'remote-handler')
expect(results).to.deep.equal({
2017-12-01 23:57:41 +03:00
warningMessage: expectedMessage,
listenerCountBefore: 2,
listenerCountAfter: 1
})
done()
})
2017-12-01 23:57:41 +03:00
w.webContents.reload()
})
w.loadFile(path.join(fixtures, 'api', 'remote-event-handler.html'))
2017-12-01 23:57:41 +03:00
})
})
describe('ipcRenderer.on', () => {
it('is not used for internals', async () => {
w = new BrowserWindow({ show: false })
await w.loadURL('about:blank')
2017-12-01 23:57:41 +03:00
const script = `require('electron').ipcRenderer.eventNames()`
const result = await w.webContents.executeJavaScript(script)
expect(result).to.deep.equal([])
})
2017-12-01 23:57:41 +03:00
})
})