2019-08-29 07:17:44 +00:00
|
|
|
import { expect } from 'chai'
|
|
|
|
import * as ChildProcess from 'child_process'
|
|
|
|
import * as path from 'path'
|
|
|
|
import { emittedOnce } from './events-helpers'
|
|
|
|
import { closeWindow } from './window-helpers'
|
2018-05-18 07:36:43 +00:00
|
|
|
|
2019-08-29 07:17:44 +00:00
|
|
|
import { webContents, TopLevelWindow, WebContentsView } from 'electron'
|
2018-05-18 07:36:43 +00:00
|
|
|
|
|
|
|
describe('WebContentsView', () => {
|
2019-08-29 07:17:44 +00:00
|
|
|
let w: TopLevelWindow
|
|
|
|
afterEach(() => closeWindow(w as any).then(() => { w = null as unknown as TopLevelWindow }))
|
2018-05-18 07:36:43 +00:00
|
|
|
|
|
|
|
it('can be used as content view', () => {
|
2019-08-29 07:17:44 +00:00
|
|
|
const web = (webContents as any).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', () => {
|
2019-08-29 07:17:44 +00:00
|
|
|
const web = (webContents as any).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))
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(() => {
|
2018-05-18 07:36:43 +00:00
|
|
|
w.setContentView(new WebContentsView(web))
|
2019-05-20 17:04:18 +00:00
|
|
|
}).to.throw('The WebContents has already been added to a View')
|
2018-05-18 07:36:43 +00:00
|
|
|
})
|
2018-11-08 15:57:28 +00:00
|
|
|
|
|
|
|
describe('new WebContentsView()', () => {
|
|
|
|
it('does not crash on exit', async () => {
|
|
|
|
const appPath = path.join(__dirname, 'fixtures', 'api', 'leak-exit-webcontentsview.js')
|
2019-08-29 07:17:44 +00:00
|
|
|
const electronPath = process.execPath
|
2018-11-08 15:57:28 +00:00
|
|
|
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
|
|
|
})
|