123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- 'use strict'
- const assert = require('assert')
- const path = require('path')
- const {closeWindow} = require('./window-helpers')
- const {remote} = require('electron')
- const {BrowserWindow, webContents} = remote
- const isCi = remote.getGlobal('isCi')
- describe('webContents module', function () {
- const fixtures = path.resolve(__dirname, 'fixtures')
- let w
- beforeEach(function () {
- w = new BrowserWindow({
- show: false,
- width: 400,
- height: 400,
- webPreferences: {
- backgroundThrottling: false
- }
- })
- })
- afterEach(function () {
- return closeWindow(w).then(function () { 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()
- })
- assert.ok(all.length >= 4)
- assert.equal(all[0].getType(), 'window')
- assert.equal(all[all.length - 2].getType(), 'remote')
- assert.equal(all[all.length - 1].getType(), 'webview')
- done()
- })
- w.loadURL('file://' + path.join(fixtures, 'pages', 'webview-zoom-factor.html'))
- w.webContents.openDevTools()
- })
- })
- describe('getFocusedWebContents() API', function () {
- it('returns the focused web contents', function (done) {
- if (isCi) return done()
- 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()
- })
- it('does not crash when called on a detached dev tools window', function (done) {
- const specWebContents = w.webContents
- specWebContents.once('devtools-opened', function () {
- assert.doesNotThrow(function () {
- webContents.getFocusedWebContents()
- })
- specWebContents.closeDevTools()
- })
- specWebContents.once('devtools-closed', function () {
- assert.doesNotThrow(function () {
- webContents.getFocusedWebContents()
- })
- done()
- })
- specWebContents.openDevTools({mode: 'detach'})
- w.inspectElement(100, 100)
- })
- })
- describe('isFocused() API', function () {
- it('returns false when the window is hidden', function () {
- BrowserWindow.getAllWindows().forEach(function (window) {
- assert.equal(!window.isVisible() && window.webContents.isFocused(), false)
- })
- })
- })
- })
|