test: move ipcMain spec (#19230)
This commit is contained in:
parent
3957a791b7
commit
8a57fe5466
1 changed files with 14 additions and 37 deletions
|
@ -1,30 +1,20 @@
|
||||||
'use strict'
|
import { expect } from 'chai'
|
||||||
|
import * as path from 'path'
|
||||||
const chai = require('chai')
|
import * as cp from 'child_process'
|
||||||
const dirtyChai = require('dirty-chai')
|
import { closeAllWindows } from './window-helpers'
|
||||||
const path = require('path')
|
import { emittedOnce } from './events-helpers'
|
||||||
const cp = require('child_process')
|
import { ipcMain, BrowserWindow } from 'electron'
|
||||||
const { closeWindow } = require('./window-helpers')
|
|
||||||
const { emittedOnce } = require('./events-helpers')
|
|
||||||
|
|
||||||
const { expect } = chai
|
|
||||||
chai.use(dirtyChai)
|
|
||||||
|
|
||||||
const { remote } = require('electron')
|
|
||||||
const { ipcMain, BrowserWindow } = remote
|
|
||||||
|
|
||||||
describe('ipc main module', () => {
|
describe('ipc main module', () => {
|
||||||
const fixtures = path.join(__dirname, 'fixtures')
|
const fixtures = path.join(__dirname, '..', 'spec', 'fixtures')
|
||||||
|
|
||||||
let w = null
|
afterEach(closeAllWindows)
|
||||||
|
|
||||||
afterEach(() => closeWindow(w).then(() => { w = null }))
|
|
||||||
|
|
||||||
describe('ipc.sendSync', () => {
|
describe('ipc.sendSync', () => {
|
||||||
afterEach(() => { ipcMain.removeAllListeners('send-sync-message') })
|
afterEach(() => { ipcMain.removeAllListeners('send-sync-message') })
|
||||||
|
|
||||||
it('does not crash when reply is not sent and browser is destroyed', (done) => {
|
it('does not crash when reply is not sent and browser is destroyed', (done) => {
|
||||||
w = new BrowserWindow({
|
const w = new BrowserWindow({
|
||||||
show: false,
|
show: false,
|
||||||
webPreferences: {
|
webPreferences: {
|
||||||
nodeIntegration: true
|
nodeIntegration: true
|
||||||
|
@ -38,7 +28,7 @@ describe('ipc main module', () => {
|
||||||
})
|
})
|
||||||
|
|
||||||
it('does not crash when reply is sent by multiple listeners', (done) => {
|
it('does not crash when reply is sent by multiple listeners', (done) => {
|
||||||
w = new BrowserWindow({
|
const w = new BrowserWindow({
|
||||||
show: false,
|
show: false,
|
||||||
webPreferences: {
|
webPreferences: {
|
||||||
nodeIntegration: true
|
nodeIntegration: true
|
||||||
|
@ -55,21 +45,9 @@ describe('ipc main module', () => {
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
describe('remote listeners', () => {
|
|
||||||
it('can be added and removed correctly', () => {
|
|
||||||
w = new BrowserWindow({ show: false })
|
|
||||||
const listener = () => {}
|
|
||||||
|
|
||||||
w.on('test', listener)
|
|
||||||
expect(w.listenerCount('test')).to.equal(1)
|
|
||||||
w.removeListener('test', listener)
|
|
||||||
expect(w.listenerCount('test')).to.equal(0)
|
|
||||||
})
|
|
||||||
})
|
|
||||||
|
|
||||||
describe('remote objects registry', () => {
|
describe('remote objects registry', () => {
|
||||||
it('does not dereference until the render view is deleted (regression)', (done) => {
|
it('does not dereference until the render view is deleted (regression)', (done) => {
|
||||||
w = new BrowserWindow({
|
const w = new BrowserWindow({
|
||||||
show: false,
|
show: false,
|
||||||
webPreferences: {
|
webPreferences: {
|
||||||
nodeIntegration: true
|
nodeIntegration: true
|
||||||
|
@ -77,8 +55,7 @@ describe('ipc main module', () => {
|
||||||
})
|
})
|
||||||
|
|
||||||
ipcMain.once('error-message', (event, message) => {
|
ipcMain.once('error-message', (event, message) => {
|
||||||
const correctMsgStart = message.startsWith('Cannot call method \'getURL\' on missing remote object')
|
expect(message).to.match(/^Cannot call method 'getURL' on missing remote object/)
|
||||||
expect(correctMsgStart).to.be.true()
|
|
||||||
done()
|
done()
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -88,8 +65,8 @@ describe('ipc main module', () => {
|
||||||
|
|
||||||
describe('ipcMain.on', () => {
|
describe('ipcMain.on', () => {
|
||||||
it('is not used for internals', async () => {
|
it('is not used for internals', async () => {
|
||||||
const appPath = path.join(__dirname, 'fixtures', 'api', 'ipc-main-listeners')
|
const appPath = path.join(fixtures, 'api', 'ipc-main-listeners')
|
||||||
const electronPath = remote.getGlobal('process').execPath
|
const electronPath = process.execPath
|
||||||
const appProcess = cp.spawn(electronPath, [appPath])
|
const appProcess = cp.spawn(electronPath, [appPath])
|
||||||
|
|
||||||
let output = ''
|
let output = ''
|
Loading…
Reference in a new issue