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

80 lines
2 KiB
JavaScript
Raw Normal View History

2016-07-14 16:10:40 +00:00
'use strict'
const assert = require('assert')
const path = require('path')
const {remote} = require('electron')
2016-07-14 16:25:59 +00:00
const {BrowserWindow, webContents} = remote
2016-07-14 16:33:16 +00:00
const isCi = remote.getGlobal('isCi')
2016-07-14 16:10:40 +00:00
describe('webContents module', function () {
2016-07-14 16:33:16 +00:00
const fixtures = path.resolve(__dirname, 'fixtures')
let w
2016-07-14 16:10:40 +00:00
beforeEach(function () {
if (w != null) {
w.destroy()
}
w = new BrowserWindow({
show: false,
width: 400,
height: 400,
webPreferences: {
backgroundThrottling: false
}
})
})
afterEach(function () {
if (w != null) {
w.destroy()
}
w = null
})
describe('getAllWebContents() API', function () {
it('returns an array of web contents', function (done) {
w.webContents.on('devtools-opened', function () {
const all = webContents.getAllWebContents().sort(function (a, b) {
return a.getId() - b.getId()
})
2016-07-14 16:10:40 +00:00
assert.equal(all.length, 4)
assert.equal(all[0].getType(), 'window')
assert.equal(all[1].getType(), 'window')
assert.equal(all[2].getType(), 'remote')
assert.equal(all[3].getType(), 'webview')
2016-07-14 16:10:40 +00:00
done()
})
w.loadURL('file://' + path.join(fixtures, 'pages', 'webview-zoom-factor.html'))
w.webContents.openDevTools()
})
})
describe('getFocusedWebContents() API', function () {
if (isCi) {
return
}
it('returns the focused web contents', function (done) {
2016-07-14 16:33:16 +00:00
const specWebContents = remote.getCurrentWebContents()
assert.equal(specWebContents.getId(), webContents.getFocusedWebContents().getId())
specWebContents.once('devtools-opened', function () {
assert.equal(specWebContents.devToolsWebContents.getId(), webContents.getFocusedWebContents().getId())
specWebContents.closeDevTools()
})
specWebContents.once('devtools-closed', function () {
assert.equal(specWebContents.getId(), webContents.getFocusedWebContents().getId())
done()
})
specWebContents.openDevTools()
})
})
2016-07-14 16:10:40 +00:00
})