electron/spec/api-web-contents-view-spec.js

45 lines
1.4 KiB
JavaScript
Raw Normal View History

2018-05-18 07:36:43 +00:00
'use strict'
const chai = require('chai')
const ChildProcess = require('child_process')
const dirtyChai = require('dirty-chai')
const path = require('path')
const { emittedOnce } = require('./events-helpers')
2018-09-13 16:10:51 +00:00
const { closeWindow } = require('./window-helpers')
const { remote } = require('electron')
const { webContents, TopLevelWindow, WebContentsView } = remote
const { expect } = chai
chai.use(dirtyChai)
2018-05-18 07:36:43 +00:00
describe('WebContentsView', () => {
let w = null
afterEach(() => closeWindow(w).then(() => { w = null }))
it('can be used as content view', () => {
const web = webContents.create({})
2018-09-13 16:10:51 +00:00
w = new TopLevelWindow({ show: false })
2018-05-18 07:36:43 +00:00
w.setContentView(new WebContentsView(web))
})
it('prevents adding same WebContents', () => {
const web = webContents.create({})
2018-09-13 16:10:51 +00:00
w = new TopLevelWindow({ show: false })
2018-05-18 07:36:43 +00:00
w.setContentView(new WebContentsView(web))
expect(() => {
2018-05-18 07:36:43 +00:00
w.setContentView(new WebContentsView(web))
}).to.throw('The WebContents has already been added to a View')
2018-05-18 07:36:43 +00:00
})
describe('new WebContentsView()', () => {
it('does not crash on exit', async () => {
const appPath = path.join(__dirname, 'fixtures', 'api', 'leak-exit-webcontentsview.js')
const electronPath = remote.getGlobal('process').execPath
const appProcess = ChildProcess.spawn(electronPath, [appPath])
const [code] = await emittedOnce(appProcess, 'close')
expect(code).to.equal(0)
})
})
2018-05-18 07:36:43 +00:00
})