2018-06-19 11:25:26 +00:00
|
|
|
const chai = require('chai')
|
|
|
|
const dirtyChai = require('dirty-chai')
|
2016-03-25 20:03:49 +00:00
|
|
|
const path = require('path')
|
|
|
|
const http = require('http')
|
|
|
|
const url = require('url')
|
2018-09-13 16:10:51 +00:00
|
|
|
const { ipcRenderer, remote } = require('electron')
|
|
|
|
const { app, session, ipcMain, BrowserWindow } = remote
|
|
|
|
const { closeWindow } = require('./window-helpers')
|
|
|
|
const { emittedOnce, waitForEvent } = require('./events-helpers')
|
2018-06-19 11:25:26 +00:00
|
|
|
|
2018-09-13 16:10:51 +00:00
|
|
|
const { expect } = chai
|
2018-06-19 11:25:26 +00:00
|
|
|
chai.use(dirtyChai)
|
2016-03-30 17:33:15 +00:00
|
|
|
|
2019-03-18 19:37:06 +00:00
|
|
|
const features = process.electronBinding('features')
|
2017-07-11 11:12:57 +00:00
|
|
|
const isCI = remote.getGlobal('isCi')
|
2017-05-25 23:40:15 +00:00
|
|
|
const nativeModulesEnabled = remote.getGlobal('nativeModulesEnabled')
|
2017-01-16 20:56:39 +00:00
|
|
|
|
2017-11-23 22:22:43 +00:00
|
|
|
/* Most of the APIs here don't use standard callbacks */
|
|
|
|
/* eslint-disable standard/no-callback-literal */
|
|
|
|
|
2017-05-07 05:14:52 +00:00
|
|
|
describe('<webview> tag', function () {
|
2016-12-22 21:31:30 +00:00
|
|
|
this.timeout(3 * 60 * 1000)
|
2016-02-05 18:27:05 +00:00
|
|
|
|
2017-10-27 20:45:58 +00:00
|
|
|
const fixtures = path.join(__dirname, 'fixtures')
|
|
|
|
let webview = null
|
2016-05-17 08:04:13 +00:00
|
|
|
let w = null
|
2016-02-05 18:27:05 +00:00
|
|
|
|
2018-06-01 08:56:48 +00:00
|
|
|
const openTheWindow = async (...args) => {
|
|
|
|
await closeTheWindow()
|
|
|
|
w = new BrowserWindow(...args)
|
|
|
|
return w
|
|
|
|
}
|
|
|
|
|
|
|
|
const closeTheWindow = async () => {
|
|
|
|
await closeWindow(w)
|
|
|
|
w = null
|
|
|
|
}
|
|
|
|
|
2018-06-19 11:25:26 +00:00
|
|
|
const loadWebView = async (webview, attributes = {}) => {
|
2018-05-14 22:00:49 +00:00
|
|
|
for (const [name, value] of Object.entries(attributes)) {
|
|
|
|
webview.setAttribute(name, value)
|
|
|
|
}
|
|
|
|
document.body.appendChild(webview)
|
2018-06-19 11:25:26 +00:00
|
|
|
await waitForEvent(webview, 'did-finish-load')
|
|
|
|
return webview
|
2018-05-14 22:00:49 +00:00
|
|
|
}
|
|
|
|
|
2018-06-19 11:25:26 +00:00
|
|
|
const startLoadingWebViewAndWaitForMessage = async (webview, attributes = {}) => {
|
2018-09-13 16:10:51 +00:00
|
|
|
loadWebView(webview, attributes) // Don't wait for load to be finished.
|
2018-06-19 11:25:26 +00:00
|
|
|
const event = await waitForEvent(webview, 'console-message')
|
|
|
|
return event.message
|
2018-05-14 22:00:49 +00:00
|
|
|
}
|
|
|
|
|
2017-10-27 20:45:58 +00:00
|
|
|
beforeEach(() => {
|
2016-03-28 20:47:31 +00:00
|
|
|
webview = new WebView()
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
2016-02-05 18:27:05 +00:00
|
|
|
|
2017-10-27 20:45:58 +00:00
|
|
|
afterEach(() => {
|
2016-09-30 16:55:24 +00:00
|
|
|
if (!document.body.contains(webview)) {
|
|
|
|
document.body.appendChild(webview)
|
2016-01-12 02:40:23 +00:00
|
|
|
}
|
2016-09-30 16:55:24 +00:00
|
|
|
webview.remove()
|
2018-06-01 08:56:48 +00:00
|
|
|
|
|
|
|
return closeTheWindow()
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
|
|
|
|
2018-08-16 22:57:40 +00:00
|
|
|
it('works without script tag in page', async () => {
|
2018-12-14 06:38:35 +00:00
|
|
|
const w = await openTheWindow({
|
|
|
|
show: false,
|
|
|
|
webPreferences: {
|
|
|
|
webviewTag: true,
|
2019-01-07 19:19:27 +00:00
|
|
|
nodeIntegration: true
|
2018-12-14 06:38:35 +00:00
|
|
|
}
|
|
|
|
})
|
2019-03-12 22:50:28 +00:00
|
|
|
const pong = emittedOnce(ipcMain, 'pong')
|
2019-01-07 19:19:27 +00:00
|
|
|
w.loadFile(path.join(fixtures, 'pages', 'webview-no-script.html'))
|
2019-03-12 22:50:28 +00:00
|
|
|
await pong
|
2018-12-14 06:38:35 +00:00
|
|
|
})
|
|
|
|
|
2019-01-22 01:08:16 +00:00
|
|
|
it('works with sandbox', async () => {
|
|
|
|
const w = await openTheWindow({
|
|
|
|
show: false,
|
|
|
|
webPreferences: {
|
|
|
|
webviewTag: true,
|
|
|
|
nodeIntegration: true,
|
|
|
|
sandbox: true
|
|
|
|
}
|
|
|
|
})
|
2019-03-12 22:50:28 +00:00
|
|
|
const pong = emittedOnce(ipcMain, 'pong')
|
2019-01-22 01:08:16 +00:00
|
|
|
w.loadFile(path.join(fixtures, 'pages', 'webview-isolated.html'))
|
2019-03-12 22:50:28 +00:00
|
|
|
await pong
|
2019-01-22 01:08:16 +00:00
|
|
|
})
|
|
|
|
|
2019-01-07 19:19:27 +00:00
|
|
|
it('works with contextIsolation', async () => {
|
2018-06-01 08:56:48 +00:00
|
|
|
const w = await openTheWindow({
|
2017-05-07 05:10:42 +00:00
|
|
|
show: false,
|
|
|
|
webPreferences: {
|
2019-01-07 19:19:27 +00:00
|
|
|
webviewTag: true,
|
|
|
|
nodeIntegration: true,
|
|
|
|
contextIsolation: true
|
2017-05-07 05:10:42 +00:00
|
|
|
}
|
|
|
|
})
|
2019-03-12 22:50:28 +00:00
|
|
|
const pong = emittedOnce(ipcMain, 'pong')
|
2019-01-07 19:19:27 +00:00
|
|
|
w.loadFile(path.join(fixtures, 'pages', 'webview-isolated.html'))
|
2019-03-12 22:50:28 +00:00
|
|
|
await pong
|
2017-05-07 05:10:42 +00:00
|
|
|
})
|
|
|
|
|
2019-01-22 01:08:16 +00:00
|
|
|
it('works with contextIsolation + sandbox', async () => {
|
|
|
|
const w = await openTheWindow({
|
|
|
|
show: false,
|
|
|
|
webPreferences: {
|
|
|
|
webviewTag: true,
|
|
|
|
nodeIntegration: true,
|
|
|
|
contextIsolation: true,
|
|
|
|
sandbox: true
|
|
|
|
}
|
|
|
|
})
|
2019-03-12 22:50:28 +00:00
|
|
|
const pong = emittedOnce(ipcMain, 'pong')
|
2019-01-22 01:08:16 +00:00
|
|
|
w.loadFile(path.join(fixtures, 'pages', 'webview-isolated.html'))
|
2019-03-12 22:50:28 +00:00
|
|
|
await pong
|
2019-01-22 01:08:16 +00:00
|
|
|
})
|
|
|
|
|
2019-01-07 19:19:27 +00:00
|
|
|
it('is disabled by default', async () => {
|
2018-06-01 08:56:48 +00:00
|
|
|
const w = await openTheWindow({
|
2017-05-07 05:10:42 +00:00
|
|
|
show: false,
|
|
|
|
webPreferences: {
|
|
|
|
preload: path.join(fixtures, 'module', 'preload-webview.js'),
|
2019-01-07 19:19:27 +00:00
|
|
|
nodeIntegration: true
|
2017-05-07 05:10:42 +00:00
|
|
|
}
|
|
|
|
})
|
2018-06-01 08:56:48 +00:00
|
|
|
|
2019-03-12 22:50:28 +00:00
|
|
|
const webview = emittedOnce(ipcMain, 'webview')
|
2018-09-04 14:50:53 +00:00
|
|
|
w.loadFile(path.join(fixtures, 'pages', 'webview-no-script.html'))
|
2019-03-12 22:50:28 +00:00
|
|
|
const [, type] = await webview
|
2018-06-01 08:56:48 +00:00
|
|
|
|
2019-01-07 19:19:27 +00:00
|
|
|
expect(type).to.equal('undefined', 'WebView still exists')
|
2016-04-12 06:10:26 +00:00
|
|
|
})
|
|
|
|
|
2017-10-27 20:45:58 +00:00
|
|
|
describe('src attribute', () => {
|
2018-05-14 22:00:49 +00:00
|
|
|
it('specifies the page to load', async () => {
|
2018-06-19 11:25:26 +00:00
|
|
|
const message = await startLoadingWebViewAndWaitForMessage(webview, {
|
2018-05-14 22:00:49 +00:00
|
|
|
src: `file://${fixtures}/pages/a.html`
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
2018-06-01 08:56:48 +00:00
|
|
|
expect(message).to.equal('a')
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
|
|
|
|
2018-05-14 22:00:49 +00:00
|
|
|
it('navigates to new page when changed', async () => {
|
|
|
|
await loadWebView(webview, {
|
|
|
|
src: `file://${fixtures}/pages/a.html`
|
|
|
|
})
|
|
|
|
|
|
|
|
webview.src = `file://${fixtures}/pages/b.html`
|
|
|
|
|
2018-09-13 16:10:51 +00:00
|
|
|
const { message } = await waitForEvent(webview, 'console-message')
|
2018-06-01 08:56:48 +00:00
|
|
|
expect(message).to.equal('b')
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
2016-09-08 23:40:31 +00:00
|
|
|
|
2018-05-14 22:00:49 +00:00
|
|
|
it('resolves relative URLs', async () => {
|
2018-06-19 11:25:26 +00:00
|
|
|
const message = await startLoadingWebViewAndWaitForMessage(webview, {
|
2018-05-14 22:00:49 +00:00
|
|
|
src: '../fixtures/pages/e.html'
|
|
|
|
})
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(message).to.equal('Window script is loaded before preload script')
|
2016-09-08 23:56:29 +00:00
|
|
|
})
|
|
|
|
|
2017-10-27 20:45:58 +00:00
|
|
|
it('ignores empty values', () => {
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(webview.src).to.equal('')
|
2018-05-14 22:00:49 +00:00
|
|
|
|
|
|
|
for (const emptyValue of ['', null, undefined]) {
|
|
|
|
webview.src = emptyValue
|
2018-06-01 08:56:48 +00:00
|
|
|
expect(webview.src).to.equal('')
|
2018-05-14 22:00:49 +00:00
|
|
|
}
|
2016-09-08 23:40:31 +00:00
|
|
|
})
|
2019-07-10 13:20:28 +00:00
|
|
|
|
|
|
|
it('does not wait until loadURL is resolved', async () => {
|
|
|
|
await loadWebView(webview, { src: 'about:blank' })
|
|
|
|
|
|
|
|
const before = Date.now()
|
|
|
|
webview.src = 'https://github.com'
|
|
|
|
const now = Date.now()
|
|
|
|
|
|
|
|
// Setting src is essentially sending a sync IPC message, which should
|
|
|
|
// not exceed more than a few ms.
|
|
|
|
//
|
|
|
|
// This is for testing #18638.
|
|
|
|
expect(now - before).to.be.below(100)
|
|
|
|
})
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
|
|
|
|
2017-10-27 20:45:58 +00:00
|
|
|
describe('nodeintegration attribute', () => {
|
2018-05-14 22:00:49 +00:00
|
|
|
it('inserts no node symbols when not set', async () => {
|
2018-06-19 11:25:26 +00:00
|
|
|
const message = await startLoadingWebViewAndWaitForMessage(webview, {
|
2018-05-14 22:00:49 +00:00
|
|
|
src: `file://${fixtures}/pages/c.html`
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
2018-05-14 22:00:49 +00:00
|
|
|
|
2018-06-01 08:56:48 +00:00
|
|
|
const types = JSON.parse(message)
|
|
|
|
expect(types).to.include({
|
|
|
|
require: 'undefined',
|
|
|
|
module: 'undefined',
|
|
|
|
process: 'undefined',
|
|
|
|
global: 'undefined'
|
|
|
|
})
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
|
|
|
|
2018-05-14 22:00:49 +00:00
|
|
|
it('inserts node symbols when set', async () => {
|
2018-06-19 11:25:26 +00:00
|
|
|
const message = await startLoadingWebViewAndWaitForMessage(webview, {
|
2018-05-14 22:00:49 +00:00
|
|
|
nodeintegration: 'on',
|
|
|
|
src: `file://${fixtures}/pages/d.html`
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
2018-05-14 22:00:49 +00:00
|
|
|
|
2018-06-01 08:56:48 +00:00
|
|
|
const types = JSON.parse(message)
|
|
|
|
expect(types).to.include({
|
|
|
|
require: 'function',
|
|
|
|
module: 'object',
|
|
|
|
process: 'object'
|
|
|
|
})
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
|
|
|
|
2018-05-14 22:00:49 +00:00
|
|
|
it('loads node symbols after POST navigation when set', async function () {
|
2017-03-27 16:15:40 +00:00
|
|
|
// FIXME Figure out why this is timing out on AppVeyor
|
2017-11-15 21:05:46 +00:00
|
|
|
if (process.env.APPVEYOR === 'True') {
|
2018-05-14 22:00:49 +00:00
|
|
|
this.skip()
|
|
|
|
return
|
2017-11-15 21:05:46 +00:00
|
|
|
}
|
2017-03-27 16:15:40 +00:00
|
|
|
|
2018-06-19 11:25:26 +00:00
|
|
|
const message = await startLoadingWebViewAndWaitForMessage(webview, {
|
2018-05-14 22:00:49 +00:00
|
|
|
nodeintegration: 'on',
|
|
|
|
src: `file://${fixtures}/pages/post.html`
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
2018-05-14 22:00:49 +00:00
|
|
|
|
2018-06-01 08:56:48 +00:00
|
|
|
const types = JSON.parse(message)
|
|
|
|
expect(types).to.include({
|
|
|
|
require: 'function',
|
|
|
|
module: 'object',
|
|
|
|
process: 'object'
|
|
|
|
})
|
2016-03-30 17:33:15 +00:00
|
|
|
})
|
|
|
|
|
2017-10-27 20:45:58 +00:00
|
|
|
it('disables node integration on child windows when it is disabled on the webview', (done) => {
|
|
|
|
app.once('browser-window-created', (event, window) => {
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(window.webContents.getWebPreferences().nodeIntegration).to.be.false()
|
2016-03-30 17:33:15 +00:00
|
|
|
done()
|
|
|
|
})
|
|
|
|
|
2018-05-14 22:00:49 +00:00
|
|
|
const src = url.format({
|
2016-03-30 17:33:15 +00:00
|
|
|
pathname: `${fixtures}/pages/webview-opener-no-node-integration.html`,
|
|
|
|
protocol: 'file',
|
|
|
|
query: {
|
|
|
|
p: `${fixtures}/pages/window-opener-node.html`
|
|
|
|
},
|
|
|
|
slashes: true
|
|
|
|
})
|
2018-05-14 22:00:49 +00:00
|
|
|
loadWebView(webview, {
|
|
|
|
allowpopups: 'on',
|
|
|
|
src
|
|
|
|
})
|
2018-08-24 21:24:24 +00:00
|
|
|
});
|
2018-05-14 22:00:49 +00:00
|
|
|
|
2018-08-24 21:24:24 +00:00
|
|
|
(nativeModulesEnabled ? it : it.skip)('loads native modules when navigation happens', async function () {
|
2018-05-14 22:00:49 +00:00
|
|
|
await loadWebView(webview, {
|
|
|
|
nodeintegration: 'on',
|
|
|
|
src: `file://${fixtures}/pages/native-module.html`
|
|
|
|
})
|
|
|
|
|
|
|
|
webview.reload()
|
|
|
|
|
2018-09-13 16:10:51 +00:00
|
|
|
const { message } = await waitForEvent(webview, 'console-message')
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(message).to.equal('function')
|
2017-05-25 23:40:15 +00:00
|
|
|
})
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
|
|
|
|
2018-10-13 17:50:07 +00:00
|
|
|
describe('enableremotemodule attribute', () => {
|
|
|
|
const generateSpecs = (description, sandbox) => {
|
|
|
|
describe(description, () => {
|
|
|
|
const preload = `${fixtures}/module/preload-disable-remote.js`
|
|
|
|
const src = `file://${fixtures}/api/blank.html`
|
|
|
|
|
|
|
|
it('enables the remote module by default', async () => {
|
|
|
|
const message = await startLoadingWebViewAndWaitForMessage(webview, {
|
|
|
|
preload,
|
|
|
|
src,
|
|
|
|
sandbox
|
|
|
|
})
|
|
|
|
|
|
|
|
const typeOfRemote = JSON.parse(message)
|
|
|
|
expect(typeOfRemote).to.equal('object')
|
|
|
|
})
|
|
|
|
|
|
|
|
it('disables the remote module when false', async () => {
|
|
|
|
const message = await startLoadingWebViewAndWaitForMessage(webview, {
|
|
|
|
preload,
|
|
|
|
src,
|
|
|
|
sandbox,
|
|
|
|
enableremotemodule: false
|
|
|
|
})
|
|
|
|
|
|
|
|
const typeOfRemote = JSON.parse(message)
|
|
|
|
expect(typeOfRemote).to.equal('undefined')
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
generateSpecs('without sandbox', false)
|
|
|
|
generateSpecs('with sandbox', true)
|
|
|
|
})
|
|
|
|
|
2017-10-27 20:45:58 +00:00
|
|
|
describe('preload attribute', () => {
|
2018-05-14 22:00:49 +00:00
|
|
|
it('loads the script before other scripts in window', async () => {
|
2018-06-19 11:25:26 +00:00
|
|
|
const message = await startLoadingWebViewAndWaitForMessage(webview, {
|
2018-05-14 22:00:49 +00:00
|
|
|
preload: `${fixtures}/module/preload.js`,
|
|
|
|
src: `file://${fixtures}/pages/e.html`
|
|
|
|
})
|
|
|
|
|
|
|
|
expect(message).to.be.a('string')
|
|
|
|
expect(message).to.be.not.equal('Window script is loaded before preload script')
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
|
|
|
|
2018-05-14 22:00:49 +00:00
|
|
|
it('preload script can still use "process" and "Buffer" when nodeintegration is off', async () => {
|
2018-06-19 11:25:26 +00:00
|
|
|
const message = await startLoadingWebViewAndWaitForMessage(webview, {
|
2018-05-14 22:00:49 +00:00
|
|
|
preload: `${fixtures}/module/preload-node-off.js`,
|
|
|
|
src: `file://${fixtures}/api/blank.html`
|
|
|
|
})
|
|
|
|
|
|
|
|
const types = JSON.parse(message)
|
|
|
|
expect(types).to.include({
|
|
|
|
process: 'object',
|
|
|
|
Buffer: 'function'
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2018-07-13 02:17:11 +00:00
|
|
|
it('runs in the correct scope when sandboxed', async () => {
|
|
|
|
const message = await startLoadingWebViewAndWaitForMessage(webview, {
|
|
|
|
preload: `${fixtures}/module/preload-context.js`,
|
|
|
|
src: `file://${fixtures}/api/blank.html`,
|
|
|
|
webpreferences: 'sandbox=yes'
|
|
|
|
})
|
|
|
|
|
|
|
|
const types = JSON.parse(message)
|
|
|
|
expect(types).to.include({
|
|
|
|
require: 'function', // arguments passed to it should be availale
|
|
|
|
electron: 'undefined', // objects from the scope it is called from should not be available
|
|
|
|
window: 'object', // the window object should be available
|
|
|
|
localVar: 'undefined' // but local variables should not be exposed to the window
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2018-05-14 22:00:49 +00:00
|
|
|
it('preload script can require modules that still use "process" and "Buffer" when nodeintegration is off', async () => {
|
2018-06-19 11:25:26 +00:00
|
|
|
const message = await startLoadingWebViewAndWaitForMessage(webview, {
|
2018-05-14 22:00:49 +00:00
|
|
|
preload: `${fixtures}/module/preload-node-off-wrapper.js`,
|
|
|
|
src: `file://${fixtures}/api/blank.html`
|
|
|
|
})
|
|
|
|
|
|
|
|
const types = JSON.parse(message)
|
|
|
|
expect(types).to.include({
|
|
|
|
process: 'object',
|
|
|
|
Buffer: 'function'
|
2017-02-23 19:26:37 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2018-05-14 22:00:49 +00:00
|
|
|
it('receives ipc message in preload script', async () => {
|
2018-06-01 08:56:48 +00:00
|
|
|
await loadWebView(webview, {
|
|
|
|
preload: `${fixtures}/module/preload-ipc.js`,
|
|
|
|
src: `file://${fixtures}/pages/e.html`
|
|
|
|
})
|
2018-05-14 22:00:49 +00:00
|
|
|
|
2018-06-01 08:56:48 +00:00
|
|
|
const message = 'boom!'
|
2018-05-14 22:00:49 +00:00
|
|
|
webview.send('ping', message)
|
|
|
|
|
2018-09-13 16:10:51 +00:00
|
|
|
const { channel, args } = await waitForEvent(webview, 'ipc-message')
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(channel).to.equal('pong')
|
|
|
|
expect(args).to.deep.equal([message])
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
2016-04-12 05:57:40 +00:00
|
|
|
|
2018-05-14 22:00:49 +00:00
|
|
|
it('works without script tag in page', async () => {
|
2018-06-19 11:25:26 +00:00
|
|
|
const message = await startLoadingWebViewAndWaitForMessage(webview, {
|
2018-05-14 22:00:49 +00:00
|
|
|
preload: `${fixtures}/module/preload.js`,
|
|
|
|
src: `file://${fixtures}pages/base-page.html`
|
|
|
|
})
|
|
|
|
|
|
|
|
const types = JSON.parse(message)
|
|
|
|
expect(types).to.include({
|
|
|
|
require: 'function',
|
|
|
|
module: 'object',
|
|
|
|
process: 'object',
|
|
|
|
Buffer: 'function'
|
|
|
|
})
|
2016-04-12 05:57:40 +00:00
|
|
|
})
|
2016-09-08 23:40:31 +00:00
|
|
|
|
2018-05-14 22:00:49 +00:00
|
|
|
it('resolves relative URLs', async () => {
|
2018-06-19 11:25:26 +00:00
|
|
|
const message = await startLoadingWebViewAndWaitForMessage(webview, {
|
2018-05-14 22:00:49 +00:00
|
|
|
preload: '../fixtures/module/preload.js',
|
|
|
|
src: `file://${fixtures}/pages/e.html`
|
|
|
|
})
|
|
|
|
|
|
|
|
const types = JSON.parse(message)
|
|
|
|
expect(types).to.include({
|
|
|
|
require: 'function',
|
|
|
|
module: 'object',
|
|
|
|
process: 'object',
|
|
|
|
Buffer: 'function'
|
|
|
|
})
|
2016-09-08 23:56:29 +00:00
|
|
|
})
|
|
|
|
|
2017-10-27 20:45:58 +00:00
|
|
|
it('ignores empty values', () => {
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(webview.preload).to.equal('')
|
2018-05-14 22:00:49 +00:00
|
|
|
|
|
|
|
for (const emptyValue of ['', null, undefined]) {
|
|
|
|
webview.preload = emptyValue
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(webview.preload).to.equal('')
|
2018-05-14 22:00:49 +00:00
|
|
|
}
|
2016-09-08 23:40:31 +00:00
|
|
|
})
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
|
|
|
|
2017-10-27 20:45:58 +00:00
|
|
|
describe('httpreferrer attribute', () => {
|
|
|
|
it('sets the referrer url', (done) => {
|
|
|
|
const referrer = 'http://github.com/'
|
2018-04-06 07:22:52 +00:00
|
|
|
const server = http.createServer((req, res) => {
|
|
|
|
res.end()
|
|
|
|
server.close()
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(req.headers.referer).to.equal(referrer)
|
2018-04-06 07:22:52 +00:00
|
|
|
done()
|
|
|
|
}).listen(0, '127.0.0.1', () => {
|
|
|
|
const port = server.address().port
|
2018-05-14 22:00:49 +00:00
|
|
|
loadWebView(webview, {
|
|
|
|
httpreferrer: referrer,
|
|
|
|
src: `http://127.0.0.1:${port}`
|
|
|
|
})
|
2018-04-06 07:22:52 +00:00
|
|
|
})
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2017-10-27 20:45:58 +00:00
|
|
|
describe('useragent attribute', () => {
|
2018-05-14 22:00:49 +00:00
|
|
|
it('sets the user agent', async () => {
|
2017-10-27 20:45:58 +00:00
|
|
|
const referrer = 'Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; AS; rv:11.0) like Gecko'
|
2018-06-19 11:25:26 +00:00
|
|
|
const message = await startLoadingWebViewAndWaitForMessage(webview, {
|
2018-05-14 22:00:49 +00:00
|
|
|
src: `file://${fixtures}/pages/useragent.html`,
|
|
|
|
useragent: referrer
|
|
|
|
})
|
2018-06-01 08:56:48 +00:00
|
|
|
expect(message).to.equal(referrer)
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2017-10-27 20:45:58 +00:00
|
|
|
describe('disablewebsecurity attribute', () => {
|
2018-05-14 22:00:49 +00:00
|
|
|
it('does not disable web security when not set', async () => {
|
2017-10-27 20:45:58 +00:00
|
|
|
const jqueryPath = path.join(__dirname, '/static/jquery-2.0.3.min.js')
|
|
|
|
const src = `<script src='file://${jqueryPath}'></script> <script>console.log('ok');</script>`
|
|
|
|
const encoded = btoa(unescape(encodeURIComponent(src)))
|
2018-05-14 22:00:49 +00:00
|
|
|
|
2018-06-19 11:25:26 +00:00
|
|
|
const message = await startLoadingWebViewAndWaitForMessage(webview, {
|
2018-05-14 22:00:49 +00:00
|
|
|
src: `data:text/html;base64,${encoded}`
|
|
|
|
})
|
|
|
|
expect(message).to.be.a('string')
|
|
|
|
expect(message).to.contain('Not allowed to load local resource')
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
|
|
|
|
2018-05-14 22:00:49 +00:00
|
|
|
it('disables web security when set', async () => {
|
2017-10-27 20:45:58 +00:00
|
|
|
const jqueryPath = path.join(__dirname, '/static/jquery-2.0.3.min.js')
|
|
|
|
const src = `<script src='file://${jqueryPath}'></script> <script>console.log('ok');</script>`
|
|
|
|
const encoded = btoa(unescape(encodeURIComponent(src)))
|
2018-05-14 22:00:49 +00:00
|
|
|
|
2018-06-19 11:25:26 +00:00
|
|
|
const message = await startLoadingWebViewAndWaitForMessage(webview, {
|
2018-05-14 22:00:49 +00:00
|
|
|
disablewebsecurity: '',
|
|
|
|
src: `data:text/html;base64,${encoded}`
|
|
|
|
})
|
2018-06-01 08:56:48 +00:00
|
|
|
expect(message).to.equal('ok')
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
2016-05-30 06:20:53 +00:00
|
|
|
|
2018-05-14 22:00:49 +00:00
|
|
|
it('does not break node integration', async () => {
|
2018-06-19 11:25:26 +00:00
|
|
|
const message = await startLoadingWebViewAndWaitForMessage(webview, {
|
2018-05-14 22:00:49 +00:00
|
|
|
disablewebsecurity: '',
|
|
|
|
nodeintegration: 'on',
|
|
|
|
src: `file://${fixtures}/pages/d.html`
|
2016-05-30 06:20:53 +00:00
|
|
|
})
|
2018-06-01 08:56:48 +00:00
|
|
|
|
|
|
|
const types = JSON.parse(message)
|
|
|
|
expect(types).to.include({
|
|
|
|
require: 'function',
|
|
|
|
module: 'object',
|
|
|
|
process: 'object'
|
|
|
|
})
|
2016-05-30 06:20:53 +00:00
|
|
|
})
|
|
|
|
|
2018-05-14 22:00:49 +00:00
|
|
|
it('does not break preload script', async () => {
|
2018-06-19 11:25:26 +00:00
|
|
|
const message = await startLoadingWebViewAndWaitForMessage(webview, {
|
2018-05-14 22:00:49 +00:00
|
|
|
disablewebsecurity: '',
|
|
|
|
preload: `${fixtures}/module/preload.js`,
|
|
|
|
src: `file://${fixtures}/pages/e.html`
|
|
|
|
})
|
2018-06-01 08:56:48 +00:00
|
|
|
|
|
|
|
const types = JSON.parse(message)
|
|
|
|
expect(types).to.include({
|
|
|
|
require: 'function',
|
|
|
|
module: 'object',
|
|
|
|
process: 'object',
|
|
|
|
Buffer: 'function'
|
|
|
|
})
|
2016-05-30 06:20:53 +00:00
|
|
|
})
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
|
|
|
|
2017-10-27 20:45:58 +00:00
|
|
|
describe('partition attribute', () => {
|
2018-05-14 22:00:49 +00:00
|
|
|
it('inserts no node symbols when not set', async () => {
|
2018-06-19 11:25:26 +00:00
|
|
|
const message = await startLoadingWebViewAndWaitForMessage(webview, {
|
2018-05-14 22:00:49 +00:00
|
|
|
partition: 'test1',
|
|
|
|
src: `file://${fixtures}/pages/c.html`
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
2018-06-01 08:56:48 +00:00
|
|
|
|
|
|
|
const types = JSON.parse(message)
|
|
|
|
expect(types).to.include({
|
|
|
|
require: 'undefined',
|
|
|
|
module: 'undefined',
|
|
|
|
process: 'undefined',
|
|
|
|
global: 'undefined'
|
|
|
|
})
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
|
|
|
|
2018-05-14 22:00:49 +00:00
|
|
|
it('inserts node symbols when set', async () => {
|
2018-06-19 11:25:26 +00:00
|
|
|
const message = await startLoadingWebViewAndWaitForMessage(webview, {
|
2018-05-14 22:00:49 +00:00
|
|
|
nodeintegration: 'on',
|
|
|
|
partition: 'test2',
|
|
|
|
src: `file://${fixtures}/pages/d.html`
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
2018-06-01 08:56:48 +00:00
|
|
|
|
|
|
|
const types = JSON.parse(message)
|
|
|
|
expect(types).to.include({
|
|
|
|
require: 'function',
|
|
|
|
module: 'object',
|
|
|
|
process: 'object'
|
|
|
|
})
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
|
|
|
|
2018-05-14 22:00:49 +00:00
|
|
|
it('isolates storage for different id', async () => {
|
2016-03-25 20:03:49 +00:00
|
|
|
window.localStorage.setItem('test', 'one')
|
2018-05-14 22:00:49 +00:00
|
|
|
|
2018-06-19 11:25:26 +00:00
|
|
|
const message = await startLoadingWebViewAndWaitForMessage(webview, {
|
2018-05-14 22:00:49 +00:00
|
|
|
partition: 'test3',
|
|
|
|
src: `file://${fixtures}/pages/partition/one.html`
|
|
|
|
})
|
|
|
|
|
|
|
|
const parsedMessage = JSON.parse(message)
|
|
|
|
expect(parsedMessage).to.include({
|
|
|
|
numberOfEntries: 0,
|
|
|
|
testValue: null
|
|
|
|
})
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
|
|
|
|
2018-05-14 22:00:49 +00:00
|
|
|
it('uses current session storage when no id is provided', async () => {
|
|
|
|
const testValue = 'one'
|
|
|
|
window.localStorage.setItem('test', testValue)
|
|
|
|
|
2018-06-19 11:25:26 +00:00
|
|
|
const message = await startLoadingWebViewAndWaitForMessage(webview, {
|
2018-05-14 22:00:49 +00:00
|
|
|
src: `file://${fixtures}/pages/partition/one.html`
|
|
|
|
})
|
|
|
|
|
|
|
|
const parsedMessage = JSON.parse(message)
|
|
|
|
expect(parsedMessage).to.include({
|
|
|
|
numberOfEntries: 1,
|
|
|
|
testValue
|
|
|
|
})
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2017-10-27 20:45:58 +00:00
|
|
|
describe('allowpopups attribute', () => {
|
2019-05-27 00:44:54 +00:00
|
|
|
const generateSpecs = (description, webpreferences = '') => {
|
|
|
|
describe(description, () => {
|
|
|
|
it('can not open new window when not set', async () => {
|
|
|
|
const message = await startLoadingWebViewAndWaitForMessage(webview, {
|
|
|
|
webpreferences,
|
|
|
|
src: `file://${fixtures}/pages/window-open-hide.html`
|
|
|
|
})
|
|
|
|
expect(message).to.equal('null')
|
|
|
|
})
|
2016-03-25 20:03:49 +00:00
|
|
|
|
2019-05-27 00:44:54 +00:00
|
|
|
it('can open new window when set', async () => {
|
|
|
|
const message = await startLoadingWebViewAndWaitForMessage(webview, {
|
|
|
|
webpreferences,
|
|
|
|
allowpopups: 'on',
|
|
|
|
src: `file://${fixtures}/pages/window-open-hide.html`
|
|
|
|
})
|
|
|
|
expect(message).to.equal('window')
|
|
|
|
})
|
2018-05-14 22:00:49 +00:00
|
|
|
})
|
2019-05-27 00:44:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
generateSpecs('without sandbox')
|
|
|
|
generateSpecs('with sandbox', 'sandbox=yes')
|
|
|
|
generateSpecs('with nativeWindowOpen', 'nativeWindowOpen=yes')
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
|
|
|
|
2017-10-27 20:45:58 +00:00
|
|
|
describe('webpreferences attribute', () => {
|
2018-05-14 22:00:49 +00:00
|
|
|
it('can enable nodeintegration', async () => {
|
2018-06-19 11:25:26 +00:00
|
|
|
const message = await startLoadingWebViewAndWaitForMessage(webview, {
|
2018-05-14 22:00:49 +00:00
|
|
|
src: `file://${fixtures}/pages/d.html`,
|
|
|
|
webpreferences: 'nodeIntegration'
|
2016-10-14 23:04:33 +00:00
|
|
|
})
|
2018-06-01 08:56:48 +00:00
|
|
|
|
|
|
|
const types = JSON.parse(message)
|
|
|
|
expect(types).to.include({
|
|
|
|
require: 'function',
|
|
|
|
module: 'object',
|
|
|
|
process: 'object'
|
|
|
|
})
|
2016-10-14 23:04:33 +00:00
|
|
|
})
|
|
|
|
|
2018-10-13 17:50:07 +00:00
|
|
|
it('can disable the remote module', async () => {
|
|
|
|
const message = await startLoadingWebViewAndWaitForMessage(webview, {
|
|
|
|
preload: `${fixtures}/module/preload-disable-remote.js`,
|
|
|
|
src: `file://${fixtures}/api/blank.html`,
|
|
|
|
webpreferences: 'enableRemoteModule=no'
|
|
|
|
})
|
|
|
|
|
|
|
|
const typeOfRemote = JSON.parse(message)
|
|
|
|
expect(typeOfRemote).to.equal('undefined')
|
|
|
|
})
|
|
|
|
|
2018-05-14 22:00:49 +00:00
|
|
|
it('can disables web security and enable nodeintegration', async () => {
|
2017-10-27 20:45:58 +00:00
|
|
|
const jqueryPath = path.join(__dirname, '/static/jquery-2.0.3.min.js')
|
2018-05-14 22:00:49 +00:00
|
|
|
const src = `<script src='file://${jqueryPath}'></script> <script>console.log(typeof require);</script>`
|
2017-10-27 20:45:58 +00:00
|
|
|
const encoded = btoa(unescape(encodeURIComponent(src)))
|
2018-05-14 22:00:49 +00:00
|
|
|
|
2018-06-19 11:25:26 +00:00
|
|
|
const message = await startLoadingWebViewAndWaitForMessage(webview, {
|
2018-05-14 22:00:49 +00:00
|
|
|
src: `data:text/html;base64,${encoded}`,
|
|
|
|
webpreferences: 'webSecurity=no, nodeIntegration=yes'
|
|
|
|
})
|
|
|
|
|
2018-06-01 08:56:48 +00:00
|
|
|
expect(message).to.equal('function')
|
2016-10-14 23:04:33 +00:00
|
|
|
})
|
2017-01-05 18:17:06 +00:00
|
|
|
|
2018-06-01 08:56:48 +00:00
|
|
|
it('can enable context isolation', async () => {
|
2018-05-14 22:00:49 +00:00
|
|
|
loadWebView(webview, {
|
|
|
|
allowpopups: 'yes',
|
|
|
|
preload: path.join(fixtures, 'api', 'isolated-preload.js'),
|
|
|
|
src: `file://${fixtures}/api/isolated.html`,
|
|
|
|
webpreferences: 'contextIsolation=yes'
|
|
|
|
})
|
2018-06-01 08:56:48 +00:00
|
|
|
|
2018-06-19 11:25:26 +00:00
|
|
|
const [, data] = await emittedOnce(ipcMain, 'isolated-world')
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(data).to.deep.equal({
|
2018-06-01 08:56:48 +00:00
|
|
|
preloadContext: {
|
|
|
|
preloadProperty: 'number',
|
|
|
|
pageProperty: 'undefined',
|
|
|
|
typeofRequire: 'function',
|
|
|
|
typeofProcess: 'object',
|
|
|
|
typeofArrayPush: 'function',
|
2018-08-31 20:51:29 +00:00
|
|
|
typeofFunctionApply: 'function',
|
|
|
|
typeofPreloadExecuteJavaScriptProperty: 'undefined'
|
2018-06-01 08:56:48 +00:00
|
|
|
},
|
|
|
|
pageContext: {
|
|
|
|
preloadProperty: 'undefined',
|
|
|
|
pageProperty: 'string',
|
|
|
|
typeofRequire: 'undefined',
|
|
|
|
typeofProcess: 'undefined',
|
|
|
|
typeofArrayPush: 'number',
|
|
|
|
typeofFunctionApply: 'boolean',
|
|
|
|
typeofPreloadExecuteJavaScriptProperty: 'number',
|
|
|
|
typeofOpenedWindow: 'object'
|
|
|
|
}
|
|
|
|
})
|
2017-01-05 18:17:06 +00:00
|
|
|
})
|
2016-10-14 23:04:33 +00:00
|
|
|
})
|
|
|
|
|
2017-10-27 20:45:58 +00:00
|
|
|
describe('new-window event', () => {
|
2018-05-14 22:00:49 +00:00
|
|
|
it('emits when window.open is called', async () => {
|
|
|
|
loadWebView(webview, {
|
|
|
|
src: `file://${fixtures}/pages/window-open.html`
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
2018-09-13 16:10:51 +00:00
|
|
|
const { url, frameName } = await waitForEvent(webview, 'new-window')
|
2018-05-14 22:00:49 +00:00
|
|
|
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(url).to.equal('http://host/')
|
|
|
|
expect(frameName).to.equal('host')
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
|
|
|
|
2018-05-14 22:00:49 +00:00
|
|
|
it('emits when link with target is called', async () => {
|
|
|
|
loadWebView(webview, {
|
|
|
|
src: `file://${fixtures}/pages/target-name.html`
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
2018-09-13 16:10:51 +00:00
|
|
|
const { url, frameName } = await waitForEvent(webview, 'new-window')
|
2018-05-14 22:00:49 +00:00
|
|
|
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(url).to.equal('http://host/')
|
|
|
|
expect(frameName).to.equal('target')
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2017-10-27 20:45:58 +00:00
|
|
|
describe('ipc-message event', () => {
|
2019-01-22 16:47:58 +00:00
|
|
|
it('emits when guest sends an ipc message to browser', async () => {
|
2018-05-14 22:00:49 +00:00
|
|
|
loadWebView(webview, {
|
|
|
|
nodeintegration: 'on',
|
|
|
|
src: `file://${fixtures}/pages/ipc-message.html`
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
2018-09-13 16:10:51 +00:00
|
|
|
const { channel, args } = await waitForEvent(webview, 'ipc-message')
|
2018-05-14 22:00:49 +00:00
|
|
|
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(channel).to.equal('channel')
|
|
|
|
expect(args).to.deep.equal(['arg1', 'arg2'])
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2017-10-27 20:45:58 +00:00
|
|
|
describe('page-title-set event', () => {
|
2018-05-14 22:00:49 +00:00
|
|
|
it('emits when title is set', async () => {
|
|
|
|
loadWebView(webview, {
|
|
|
|
src: `file://${fixtures}/pages/a.html`
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
2018-09-13 16:10:51 +00:00
|
|
|
const { title, explicitSet } = await waitForEvent(webview, 'page-title-set')
|
2018-05-14 22:00:49 +00:00
|
|
|
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(title).to.equal('test')
|
|
|
|
expect(explicitSet).to.be.true()
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2017-10-27 20:45:58 +00:00
|
|
|
describe('page-favicon-updated event', () => {
|
2018-05-14 22:00:49 +00:00
|
|
|
it('emits when favicon urls are received', async () => {
|
|
|
|
loadWebView(webview, {
|
|
|
|
src: `file://${fixtures}/pages/a.html`
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
2018-09-13 16:10:51 +00:00
|
|
|
const { favicons } = await waitForEvent(webview, 'page-favicon-updated')
|
2018-05-14 22:00:49 +00:00
|
|
|
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(favicons).to.be.an('array').of.length(2)
|
2018-05-14 22:00:49 +00:00
|
|
|
if (process.platform === 'win32') {
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(favicons[0]).to.match(/^file:\/\/\/[A-Z]:\/favicon.png$/i)
|
2018-05-14 22:00:49 +00:00
|
|
|
} else {
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(favicons[0]).to.equal('file:///favicon.png')
|
2018-05-14 22:00:49 +00:00
|
|
|
}
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2017-10-27 20:45:58 +00:00
|
|
|
describe('will-navigate event', () => {
|
2018-05-14 22:00:49 +00:00
|
|
|
it('emits when a url that leads to oustide of the page is clicked', async () => {
|
|
|
|
loadWebView(webview, {
|
|
|
|
src: `file://${fixtures}/pages/webview-will-navigate.html`
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
2018-09-13 16:10:51 +00:00
|
|
|
const { url } = await waitForEvent(webview, 'will-navigate')
|
2018-05-14 22:00:49 +00:00
|
|
|
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(url).to.equal('http://host/')
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2017-10-27 20:45:58 +00:00
|
|
|
describe('did-navigate event', () => {
|
|
|
|
let p = path.join(fixtures, 'pages', 'webview-will-navigate.html')
|
2016-03-25 20:03:49 +00:00
|
|
|
p = p.replace(/\\/g, '/')
|
2017-10-27 20:45:58 +00:00
|
|
|
const pageUrl = url.format({
|
2016-01-12 02:40:23 +00:00
|
|
|
protocol: 'file',
|
|
|
|
slashes: true,
|
|
|
|
pathname: p
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
|
|
|
|
2018-05-14 22:00:49 +00:00
|
|
|
it('emits when a url that leads to outside of the page is clicked', async () => {
|
2018-09-13 16:10:51 +00:00
|
|
|
loadWebView(webview, { src: pageUrl })
|
|
|
|
const { url } = await waitForEvent(webview, 'did-navigate')
|
2018-05-14 22:00:49 +00:00
|
|
|
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(url).to.equal(pageUrl)
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2017-10-27 20:45:58 +00:00
|
|
|
describe('did-navigate-in-page event', () => {
|
2018-05-14 22:00:49 +00:00
|
|
|
it('emits when an anchor link is clicked', async () => {
|
2017-10-27 20:45:58 +00:00
|
|
|
let p = path.join(fixtures, 'pages', 'webview-did-navigate-in-page.html')
|
2016-03-25 20:03:49 +00:00
|
|
|
p = p.replace(/\\/g, '/')
|
2017-10-27 20:45:58 +00:00
|
|
|
const pageUrl = url.format({
|
2016-01-12 02:40:23 +00:00
|
|
|
protocol: 'file',
|
|
|
|
slashes: true,
|
|
|
|
pathname: p
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
2018-09-13 16:10:51 +00:00
|
|
|
loadWebView(webview, { src: pageUrl })
|
2018-05-14 22:00:49 +00:00
|
|
|
const event = await waitForEvent(webview, 'did-navigate-in-page')
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(event.url).to.equal(`${pageUrl}#test_content`)
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
|
|
|
|
2018-05-14 22:00:49 +00:00
|
|
|
it('emits when window.history.replaceState is called', async () => {
|
|
|
|
loadWebView(webview, {
|
|
|
|
src: `file://${fixtures}/pages/webview-did-navigate-in-page-with-history.html`
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
2018-09-13 16:10:51 +00:00
|
|
|
const { url } = await waitForEvent(webview, 'did-navigate-in-page')
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(url).to.equal('http://host/')
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
|
|
|
|
2018-05-14 22:00:49 +00:00
|
|
|
it('emits when window.location.hash is changed', async () => {
|
2017-10-27 20:45:58 +00:00
|
|
|
let p = path.join(fixtures, 'pages', 'webview-did-navigate-in-page-with-hash.html')
|
2016-03-25 20:03:49 +00:00
|
|
|
p = p.replace(/\\/g, '/')
|
2017-10-27 20:45:58 +00:00
|
|
|
const pageUrl = url.format({
|
2016-01-12 02:40:23 +00:00
|
|
|
protocol: 'file',
|
|
|
|
slashes: true,
|
|
|
|
pathname: p
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
2018-09-13 16:10:51 +00:00
|
|
|
loadWebView(webview, { src: pageUrl })
|
2018-05-14 22:00:49 +00:00
|
|
|
const event = await waitForEvent(webview, 'did-navigate-in-page')
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(event.url).to.equal(`${pageUrl}#test`)
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2017-10-27 20:45:58 +00:00
|
|
|
describe('close event', () => {
|
2018-05-14 22:00:49 +00:00
|
|
|
it('should fire when interior page calls window.close', async () => {
|
2018-09-13 16:10:51 +00:00
|
|
|
loadWebView(webview, { src: `file://${fixtures}/pages/close.html` })
|
2018-05-14 22:00:49 +00:00
|
|
|
await waitForEvent(webview, 'close')
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2018-08-16 22:57:40 +00:00
|
|
|
// FIXME(zcbenz): Disabled because of moving to OOPIF webview.
|
|
|
|
xdescribe('setDevToolsWebContents() API', () => {
|
2018-05-14 22:00:49 +00:00
|
|
|
it('sets webContents of webview as devtools', async () => {
|
2017-11-30 12:04:50 +00:00
|
|
|
const webview2 = new WebView()
|
2018-05-14 22:00:49 +00:00
|
|
|
loadWebView(webview2)
|
|
|
|
|
|
|
|
// Setup an event handler for further usage.
|
|
|
|
const waitForDomReady = waitForEvent(webview2, 'dom-ready')
|
|
|
|
|
2018-09-13 16:10:51 +00:00
|
|
|
loadWebView(webview, { src: 'about:blank' })
|
2018-05-14 22:00:49 +00:00
|
|
|
await waitForEvent(webview, 'dom-ready')
|
|
|
|
webview.getWebContents().setDevToolsWebContents(webview2.getWebContents())
|
|
|
|
webview.getWebContents().openDevTools()
|
|
|
|
|
|
|
|
await waitForDomReady
|
|
|
|
|
|
|
|
// Its WebContents should be a DevTools.
|
|
|
|
const devtools = webview2.getWebContents()
|
2019-05-21 17:07:17 +00:00
|
|
|
expect(devtools.getURL().startsWith('devtools://devtools')).to.be.true()
|
2018-05-14 22:00:49 +00:00
|
|
|
|
2019-03-14 19:08:54 +00:00
|
|
|
const name = await devtools.executeJavaScript('InspectorFrontendHost.constructor.name')
|
2018-06-01 08:56:48 +00:00
|
|
|
document.body.removeChild(webview2)
|
|
|
|
|
|
|
|
expect(name).to.be.equal('InspectorFrontendHostImpl')
|
2017-11-30 12:04:50 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2018-05-29 16:01:31 +00:00
|
|
|
describe('devtools-opened event', () => {
|
2018-05-14 22:00:49 +00:00
|
|
|
it('should fire when webview.openDevTools() is called', async () => {
|
|
|
|
loadWebView(webview, {
|
|
|
|
src: `file://${fixtures}/pages/base-page.html`
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
2018-05-14 22:00:49 +00:00
|
|
|
await waitForEvent(webview, 'dom-ready')
|
|
|
|
|
|
|
|
webview.openDevTools()
|
|
|
|
await waitForEvent(webview, 'devtools-opened')
|
|
|
|
|
|
|
|
webview.closeDevTools()
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2018-05-29 16:01:31 +00:00
|
|
|
describe('devtools-closed event', () => {
|
2018-05-14 22:00:49 +00:00
|
|
|
it('should fire when webview.closeDevTools() is called', async () => {
|
|
|
|
loadWebView(webview, {
|
|
|
|
src: `file://${fixtures}/pages/base-page.html`
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
2018-05-14 22:00:49 +00:00
|
|
|
await waitForEvent(webview, 'dom-ready')
|
|
|
|
|
|
|
|
webview.openDevTools()
|
|
|
|
await waitForEvent(webview, 'devtools-opened')
|
|
|
|
|
|
|
|
webview.closeDevTools()
|
|
|
|
await waitForEvent(webview, 'devtools-closed')
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2018-05-29 16:01:31 +00:00
|
|
|
describe('devtools-focused event', () => {
|
2018-05-14 22:00:49 +00:00
|
|
|
it('should fire when webview.openDevTools() is called', async () => {
|
|
|
|
loadWebView(webview, {
|
|
|
|
src: `file://${fixtures}/pages/base-page.html`
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
2018-05-14 22:00:49 +00:00
|
|
|
|
|
|
|
const waitForDevToolsFocused = waitForEvent(webview, 'devtools-focused')
|
|
|
|
|
|
|
|
await waitForEvent(webview, 'dom-ready')
|
|
|
|
webview.openDevTools()
|
|
|
|
|
|
|
|
await waitForDevToolsFocused
|
|
|
|
webview.closeDevTools()
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2017-10-27 20:45:58 +00:00
|
|
|
describe('<webview>.reload()', () => {
|
2018-05-14 22:00:49 +00:00
|
|
|
it('should emit beforeunload handler', async () => {
|
|
|
|
await loadWebView(webview, {
|
|
|
|
nodeintegration: 'on',
|
|
|
|
src: `file://${fixtures}/pages/beforeunload-false.html`
|
|
|
|
})
|
|
|
|
|
|
|
|
// Event handler has to be added before reload.
|
|
|
|
const waitForOnbeforeunload = waitForEvent(webview, 'ipc-message')
|
|
|
|
|
|
|
|
webview.reload()
|
|
|
|
|
2018-09-13 16:10:51 +00:00
|
|
|
const { channel } = await waitForOnbeforeunload
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(channel).to.equal('onbeforeunload')
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2017-10-27 20:45:58 +00:00
|
|
|
describe('<webview>.goForward()', () => {
|
|
|
|
it('should work after a replaced history entry', (done) => {
|
|
|
|
let loadCount = 1
|
|
|
|
const listener = (e) => {
|
2016-09-17 00:06:16 +00:00
|
|
|
if (loadCount === 1) {
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(e.channel).to.equal('history')
|
|
|
|
expect(e.args[0]).to.equal(1)
|
|
|
|
expect(webview.canGoBack()).to.be.false()
|
|
|
|
expect(webview.canGoForward()).to.be.false()
|
2016-09-17 00:06:16 +00:00
|
|
|
} else if (loadCount === 2) {
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(e.channel).to.equal('history')
|
|
|
|
expect(e.args[0]).to.equal(2)
|
|
|
|
expect(webview.canGoBack()).to.be.false()
|
|
|
|
expect(webview.canGoForward()).to.be.true()
|
2016-09-17 00:06:16 +00:00
|
|
|
webview.removeEventListener('ipc-message', listener)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-14 22:00:49 +00:00
|
|
|
const loadListener = () => {
|
2016-09-17 00:06:16 +00:00
|
|
|
if (loadCount === 1) {
|
2017-10-27 20:45:58 +00:00
|
|
|
webview.src = `file://${fixtures}/pages/base-page.html`
|
2016-09-17 00:06:16 +00:00
|
|
|
} else if (loadCount === 2) {
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(webview.canGoBack()).to.be.true()
|
|
|
|
expect(webview.canGoForward()).to.be.false()
|
2016-09-17 00:06:16 +00:00
|
|
|
|
|
|
|
webview.goBack()
|
|
|
|
} else if (loadCount === 3) {
|
|
|
|
webview.goForward()
|
|
|
|
} else if (loadCount === 4) {
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(webview.canGoBack()).to.be.true()
|
|
|
|
expect(webview.canGoForward()).to.be.false()
|
2016-09-17 00:06:16 +00:00
|
|
|
|
|
|
|
webview.removeEventListener('did-finish-load', loadListener)
|
|
|
|
done()
|
|
|
|
}
|
|
|
|
|
2017-10-27 20:45:58 +00:00
|
|
|
loadCount += 1
|
2016-09-17 00:06:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
webview.addEventListener('ipc-message', listener)
|
|
|
|
webview.addEventListener('did-finish-load', loadListener)
|
2018-05-14 22:00:49 +00:00
|
|
|
|
|
|
|
loadWebView(webview, {
|
|
|
|
nodeintegration: 'on',
|
|
|
|
src: `file://${fixtures}/pages/history-replace.html`
|
|
|
|
})
|
2016-09-17 00:06:16 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2019-07-23 23:54:41 +00:00
|
|
|
// FIXME: https://github.com/electron/electron/issues/19397
|
|
|
|
xdescribe('<webview>.clearHistory()', () => {
|
2018-05-14 22:00:49 +00:00
|
|
|
it('should clear the navigation history', async () => {
|
2019-07-02 20:48:26 +00:00
|
|
|
const message = waitForEvent(webview, 'ipc-message')
|
|
|
|
await loadWebView(webview, {
|
2018-05-14 22:00:49 +00:00
|
|
|
nodeintegration: 'on',
|
|
|
|
src: `file://${fixtures}/pages/history.html`
|
|
|
|
})
|
2019-07-02 20:48:26 +00:00
|
|
|
const event = await message
|
2018-05-14 22:00:49 +00:00
|
|
|
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(event.channel).to.equal('history')
|
|
|
|
expect(event.args[0]).to.equal(2)
|
|
|
|
expect(webview.canGoBack()).to.be.true()
|
2018-05-14 22:00:49 +00:00
|
|
|
|
|
|
|
webview.clearHistory()
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(webview.canGoBack()).to.be.false()
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2017-10-27 20:45:58 +00:00
|
|
|
describe('basic auth', () => {
|
|
|
|
const auth = require('basic-auth')
|
2016-03-25 20:03:49 +00:00
|
|
|
|
2017-10-27 20:45:58 +00:00
|
|
|
it('should authenticate with correct credentials', (done) => {
|
|
|
|
const message = 'Authenticated'
|
|
|
|
const server = http.createServer((req, res) => {
|
|
|
|
const credentials = auth(req)
|
2016-01-12 02:40:23 +00:00
|
|
|
if (credentials.name === 'test' && credentials.pass === 'test') {
|
2016-03-25 20:03:49 +00:00
|
|
|
res.end(message)
|
2016-01-12 02:40:23 +00:00
|
|
|
} else {
|
2016-03-25 20:03:49 +00:00
|
|
|
res.end('failed')
|
2016-01-12 02:40:23 +00:00
|
|
|
}
|
2016-03-25 20:03:49 +00:00
|
|
|
server.close()
|
|
|
|
})
|
2017-10-27 20:45:58 +00:00
|
|
|
server.listen(0, '127.0.0.1', () => {
|
|
|
|
const port = server.address().port
|
|
|
|
webview.addEventListener('ipc-message', (e) => {
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(e.channel).to.equal(message)
|
2016-03-25 20:03:49 +00:00
|
|
|
done()
|
|
|
|
})
|
2018-05-14 22:00:49 +00:00
|
|
|
loadWebView(webview, {
|
|
|
|
nodeintegration: 'on',
|
|
|
|
src: `file://${fixtures}/pages/basic-auth.html?port=${port}`
|
|
|
|
})
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2017-10-27 20:45:58 +00:00
|
|
|
describe('dom-ready event', () => {
|
|
|
|
it('emits when document is loaded', (done) => {
|
|
|
|
const server = http.createServer(() => {})
|
|
|
|
server.listen(0, '127.0.0.1', () => {
|
|
|
|
const port = server.address().port
|
|
|
|
webview.addEventListener('dom-ready', () => {
|
2016-03-25 20:03:49 +00:00
|
|
|
done()
|
|
|
|
})
|
2018-05-14 22:00:49 +00:00
|
|
|
loadWebView(webview, {
|
|
|
|
src: `file://${fixtures}/pages/dom-ready.html?port=${port}`
|
|
|
|
})
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2017-10-27 20:45:58 +00:00
|
|
|
it('throws a custom error when an API method is called before the event is emitted', () => {
|
2018-05-14 18:17:31 +00:00
|
|
|
const expectedErrorMessage =
|
|
|
|
'The WebView must be attached to the DOM ' +
|
|
|
|
'and the dom-ready event emitted before this method can be called.'
|
|
|
|
expect(() => { webview.stop() }).to.throw(expectedErrorMessage)
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
|
|
|
})
|
2016-02-05 18:27:05 +00:00
|
|
|
|
2017-10-27 20:45:58 +00:00
|
|
|
describe('executeJavaScript', () => {
|
2018-05-14 22:00:49 +00:00
|
|
|
it('should support user gesture', async () => {
|
|
|
|
await loadWebView(webview, {
|
|
|
|
src: `file://${fixtures}/pages/fullscreen.html`
|
|
|
|
})
|
|
|
|
|
|
|
|
// Event handler has to be added before js execution.
|
|
|
|
const waitForEnterHtmlFullScreen = waitForEvent(webview, 'enter-html-full-screen')
|
|
|
|
|
|
|
|
const jsScript = "document.querySelector('video').webkitRequestFullscreen()"
|
|
|
|
webview.executeJavaScript(jsScript, true)
|
|
|
|
|
|
|
|
return waitForEnterHtmlFullScreen
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
|
|
|
|
2018-05-14 22:00:49 +00:00
|
|
|
it('can return the result of the executed script', async () => {
|
|
|
|
await loadWebView(webview, {
|
|
|
|
src: 'about:blank'
|
|
|
|
})
|
|
|
|
|
|
|
|
const jsScript = "'4'+2"
|
|
|
|
const expectedResult = '42'
|
|
|
|
|
2019-03-14 19:08:54 +00:00
|
|
|
const result = await webview.executeJavaScript(jsScript)
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(result).to.equal(expectedResult)
|
2019-03-14 19:08:54 +00:00
|
|
|
})
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
|
|
|
|
2019-06-17 15:39:36 +00:00
|
|
|
it('supports inserting CSS', async () => {
|
|
|
|
await loadWebView(webview, { src: `file://${fixtures}/pages/base-page.html` })
|
|
|
|
await webview.insertCSS('body { background-repeat: round; }')
|
|
|
|
const result = await webview.executeJavaScript('window.getComputedStyle(document.body).getPropertyValue("background-repeat")')
|
|
|
|
expect(result).to.equal('round')
|
|
|
|
})
|
|
|
|
|
|
|
|
it('supports removing inserted CSS', async () => {
|
|
|
|
await loadWebView(webview, { src: `file://${fixtures}/pages/base-page.html` })
|
|
|
|
const key = await webview.insertCSS('body { background-repeat: round; }')
|
|
|
|
await webview.removeInsertedCSS(key)
|
|
|
|
const result = await webview.executeJavaScript('window.getComputedStyle(document.body).getPropertyValue("background-repeat")')
|
|
|
|
expect(result).to.equal('repeat')
|
|
|
|
})
|
|
|
|
|
2017-10-27 20:45:58 +00:00
|
|
|
describe('sendInputEvent', () => {
|
2018-05-14 22:00:49 +00:00
|
|
|
it('can send keyboard event', async () => {
|
|
|
|
loadWebView(webview, {
|
|
|
|
nodeintegration: 'on',
|
|
|
|
src: `file://${fixtures}/pages/onkeyup.html`
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
2018-05-14 22:00:49 +00:00
|
|
|
await waitForEvent(webview, 'dom-ready')
|
|
|
|
|
|
|
|
const waitForIpcMessage = waitForEvent(webview, 'ipc-message')
|
|
|
|
webview.sendInputEvent({
|
|
|
|
type: 'keyup',
|
|
|
|
keyCode: 'c',
|
|
|
|
modifiers: ['shift']
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
2018-05-14 22:00:49 +00:00
|
|
|
|
2018-09-13 16:10:51 +00:00
|
|
|
const { channel, args } = await waitForIpcMessage
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(channel).to.equal('keyup')
|
|
|
|
expect(args).to.deep.equal(['C', 'KeyC', 67, true, false])
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
|
|
|
|
2018-05-14 22:00:49 +00:00
|
|
|
it('can send mouse event', async () => {
|
|
|
|
loadWebView(webview, {
|
|
|
|
nodeintegration: 'on',
|
|
|
|
src: `file://${fixtures}/pages/onmouseup.html`
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
2018-05-14 22:00:49 +00:00
|
|
|
await waitForEvent(webview, 'dom-ready')
|
|
|
|
|
|
|
|
const waitForIpcMessage = waitForEvent(webview, 'ipc-message')
|
|
|
|
webview.sendInputEvent({
|
|
|
|
type: 'mouseup',
|
|
|
|
modifiers: ['ctrl'],
|
|
|
|
x: 10,
|
|
|
|
y: 20
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
2018-05-14 22:00:49 +00:00
|
|
|
|
2018-09-13 16:10:51 +00:00
|
|
|
const { channel, args } = await waitForIpcMessage
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(channel).to.equal('mouseup')
|
|
|
|
expect(args).to.deep.equal([10, 20, false, true])
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2018-05-30 11:50:08 +00:00
|
|
|
describe('media-started-playing media-paused events', () => {
|
2018-05-14 22:00:49 +00:00
|
|
|
it('emits when audio starts and stops playing', async () => {
|
2018-10-09 00:59:40 +00:00
|
|
|
await loadWebView(webview, { src: `file://${fixtures}/pages/base-page.html` })
|
|
|
|
|
|
|
|
// With the new autoplay policy, audio elements must be unmuted
|
|
|
|
// see https://goo.gl/xX8pDD.
|
|
|
|
const source = `
|
|
|
|
const audio = document.createElement("audio")
|
|
|
|
audio.src = "../assets/tone.wav"
|
|
|
|
document.body.appendChild(audio);
|
|
|
|
audio.play()
|
|
|
|
`
|
|
|
|
webview.executeJavaScript(source, true)
|
2018-05-14 22:00:49 +00:00
|
|
|
await waitForEvent(webview, 'media-started-playing')
|
2018-05-30 11:50:08 +00:00
|
|
|
|
|
|
|
webview.executeJavaScript('document.querySelector("audio").pause()', true)
|
2018-05-14 22:00:49 +00:00
|
|
|
await waitForEvent(webview, 'media-paused')
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2018-08-16 22:57:40 +00:00
|
|
|
describe('found-in-page event', () => {
|
2017-10-27 20:45:58 +00:00
|
|
|
it('emits when a request is made', (done) => {
|
2016-09-08 05:27:10 +00:00
|
|
|
let requestId = null
|
2018-10-02 01:56:31 +00:00
|
|
|
const activeMatchOrdinal = []
|
2017-10-27 20:45:58 +00:00
|
|
|
const listener = (e) => {
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(e.result.requestId).to.equal(requestId)
|
|
|
|
expect(e.result.matches).to.equal(3)
|
2016-09-08 05:27:10 +00:00
|
|
|
activeMatchOrdinal.push(e.result.activeMatchOrdinal)
|
|
|
|
if (e.result.activeMatchOrdinal === e.result.matches) {
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(activeMatchOrdinal).to.deep.equal([1, 2, 3])
|
2016-09-08 05:27:10 +00:00
|
|
|
webview.stopFindInPage('clearSelection')
|
|
|
|
done()
|
2016-03-14 01:19:45 +00:00
|
|
|
} else {
|
2016-09-08 05:27:10 +00:00
|
|
|
listener2()
|
2016-01-12 02:40:23 +00:00
|
|
|
}
|
2016-03-25 20:03:49 +00:00
|
|
|
}
|
2017-10-27 20:45:58 +00:00
|
|
|
const listener2 = () => {
|
2016-03-25 20:03:49 +00:00
|
|
|
requestId = webview.findInPage('virtual')
|
|
|
|
}
|
|
|
|
webview.addEventListener('found-in-page', listener)
|
|
|
|
webview.addEventListener('did-finish-load', listener2)
|
2018-09-13 16:10:51 +00:00
|
|
|
loadWebView(webview, { src: `file://${fixtures}/pages/content.html` })
|
2017-11-25 14:48:01 +00:00
|
|
|
// TODO(deepak1556): With https://codereview.chromium.org/2836973002
|
|
|
|
// focus of the webContents is required when triggering the api.
|
|
|
|
// Remove this workaround after determining the cause for
|
|
|
|
// incorrect focus.
|
|
|
|
webview.focus()
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2017-10-27 20:45:58 +00:00
|
|
|
describe('did-change-theme-color event', () => {
|
2018-05-14 22:00:49 +00:00
|
|
|
it('emits when theme color changes', async () => {
|
|
|
|
loadWebView(webview, {
|
|
|
|
src: `file://${fixtures}/pages/theme-color.html`
|
|
|
|
})
|
|
|
|
await waitForEvent(webview, 'did-change-theme-color')
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2017-10-27 20:45:58 +00:00
|
|
|
describe('permission-request event', () => {
|
2016-06-29 16:37:10 +00:00
|
|
|
function setUpRequestHandler (webview, requestedPermission, completed) {
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(webview.partition).to.be.a('string').that.is.not.empty()
|
2018-05-14 22:00:49 +00:00
|
|
|
|
2017-10-27 20:45:58 +00:00
|
|
|
const listener = function (webContents, permission, callback) {
|
2019-03-26 01:57:27 +00:00
|
|
|
if (webContents.id === webview.getWebContentsId()) {
|
2016-12-19 23:11:17 +00:00
|
|
|
// requestMIDIAccess with sysex requests both midi and midiSysex so
|
|
|
|
// grant the first midi one and then reject the midiSysex one
|
2016-12-20 00:27:38 +00:00
|
|
|
if (requestedPermission === 'midiSysex' && permission === 'midi') {
|
2016-12-19 23:11:17 +00:00
|
|
|
return callback(true)
|
|
|
|
}
|
|
|
|
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(permission).to.equal(requestedPermission)
|
2016-03-25 20:03:49 +00:00
|
|
|
callback(false)
|
2016-06-29 16:37:10 +00:00
|
|
|
if (completed) completed()
|
2016-01-31 21:35:34 +00:00
|
|
|
}
|
2016-03-25 20:03:49 +00:00
|
|
|
}
|
|
|
|
session.fromPartition(webview.partition).setPermissionRequestHandler(listener)
|
2016-01-31 21:35:34 +00:00
|
|
|
}
|
|
|
|
|
2017-10-27 20:45:58 +00:00
|
|
|
it('emits when using navigator.getUserMedia api', (done) => {
|
|
|
|
if (isCI) return done()
|
2017-07-11 11:12:57 +00:00
|
|
|
|
2017-10-27 20:45:58 +00:00
|
|
|
webview.addEventListener('ipc-message', (e) => {
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(e.channel).to.equal('message')
|
|
|
|
expect(e.args).to.deep.equal(['PermissionDeniedError'])
|
2016-03-25 20:03:49 +00:00
|
|
|
done()
|
|
|
|
})
|
2017-10-27 20:45:58 +00:00
|
|
|
webview.src = `file://${fixtures}/pages/permissions/media.html`
|
2016-03-25 20:03:49 +00:00
|
|
|
webview.partition = 'permissionTest'
|
|
|
|
webview.setAttribute('nodeintegration', 'on')
|
|
|
|
setUpRequestHandler(webview, 'media')
|
|
|
|
document.body.appendChild(webview)
|
|
|
|
})
|
|
|
|
|
2017-10-27 20:45:58 +00:00
|
|
|
it('emits when using navigator.geolocation api', (done) => {
|
|
|
|
webview.addEventListener('ipc-message', (e) => {
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(e.channel).to.equal('message')
|
|
|
|
expect(e.args).to.deep.equal(['User denied Geolocation'])
|
2016-03-25 20:03:49 +00:00
|
|
|
done()
|
|
|
|
})
|
2017-10-27 20:45:58 +00:00
|
|
|
webview.src = `file://${fixtures}/pages/permissions/geolocation.html`
|
2016-03-25 20:03:49 +00:00
|
|
|
webview.partition = 'permissionTest'
|
|
|
|
webview.setAttribute('nodeintegration', 'on')
|
|
|
|
setUpRequestHandler(webview, 'geolocation')
|
|
|
|
document.body.appendChild(webview)
|
|
|
|
})
|
|
|
|
|
2017-10-27 20:45:58 +00:00
|
|
|
it('emits when using navigator.requestMIDIAccess without sysex api', (done) => {
|
|
|
|
webview.addEventListener('ipc-message', (e) => {
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(e.channel).to.equal('message')
|
|
|
|
expect(e.args).to.deep.equal(['SecurityError'])
|
2016-03-25 20:03:49 +00:00
|
|
|
done()
|
|
|
|
})
|
2017-10-27 20:45:58 +00:00
|
|
|
webview.src = `file://${fixtures}/pages/permissions/midi.html`
|
2016-03-25 20:03:49 +00:00
|
|
|
webview.partition = 'permissionTest'
|
|
|
|
webview.setAttribute('nodeintegration', 'on')
|
2016-12-19 23:11:17 +00:00
|
|
|
setUpRequestHandler(webview, 'midi')
|
|
|
|
document.body.appendChild(webview)
|
|
|
|
})
|
|
|
|
|
2017-10-27 20:45:58 +00:00
|
|
|
it('emits when using navigator.requestMIDIAccess with sysex api', (done) => {
|
|
|
|
webview.addEventListener('ipc-message', (e) => {
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(e.channel).to.equal('message')
|
|
|
|
expect(e.args).to.deep.equal(['SecurityError'])
|
2016-12-19 23:11:17 +00:00
|
|
|
done()
|
|
|
|
})
|
2017-10-27 20:45:58 +00:00
|
|
|
webview.src = `file://${fixtures}/pages/permissions/midi-sysex.html`
|
2016-12-19 23:11:17 +00:00
|
|
|
webview.partition = 'permissionTest'
|
|
|
|
webview.setAttribute('nodeintegration', 'on')
|
2016-03-25 20:03:49 +00:00
|
|
|
setUpRequestHandler(webview, 'midiSysex')
|
|
|
|
document.body.appendChild(webview)
|
|
|
|
})
|
2016-04-20 16:55:15 +00:00
|
|
|
|
2017-10-27 20:45:58 +00:00
|
|
|
it('emits when accessing external protocol', (done) => {
|
2016-04-20 16:55:15 +00:00
|
|
|
webview.src = 'magnet:test'
|
|
|
|
webview.partition = 'permissionTest'
|
|
|
|
setUpRequestHandler(webview, 'openExternal', done)
|
|
|
|
document.body.appendChild(webview)
|
|
|
|
})
|
2016-10-28 17:34:11 +00:00
|
|
|
|
2017-10-27 20:45:58 +00:00
|
|
|
it('emits when using Notification.requestPermission', (done) => {
|
|
|
|
webview.addEventListener('ipc-message', (e) => {
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(e.channel).to.equal('message')
|
|
|
|
expect(e.args).to.deep.equal(['granted'])
|
2016-10-28 17:34:11 +00:00
|
|
|
done()
|
|
|
|
})
|
2017-10-27 20:45:58 +00:00
|
|
|
webview.src = `file://${fixtures}/pages/permissions/notification.html`
|
2016-10-28 17:34:11 +00:00
|
|
|
webview.partition = 'permissionTest'
|
|
|
|
webview.setAttribute('nodeintegration', 'on')
|
2017-10-27 20:45:58 +00:00
|
|
|
session.fromPartition(webview.partition).setPermissionRequestHandler((webContents, permission, callback) => {
|
2019-03-26 01:57:27 +00:00
|
|
|
if (webContents.id === webview.getWebContentsId()) {
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(permission).to.equal('notifications')
|
2017-10-27 20:45:58 +00:00
|
|
|
setTimeout(() => { callback(true) }, 10)
|
2016-10-28 17:34:11 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
document.body.appendChild(webview)
|
|
|
|
})
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
|
|
|
|
2019-03-26 01:57:27 +00:00
|
|
|
describe('<webview>.getWebContentsId', () => {
|
|
|
|
it('can return the WebContents ID', async () => {
|
|
|
|
const src = 'about:blank'
|
|
|
|
await loadWebView(webview, { src })
|
|
|
|
|
|
|
|
expect(webview.getWebContentsId()).to.be.equal(webview.getWebContents().id)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2017-10-27 20:45:58 +00:00
|
|
|
describe('<webview>.getWebContents', () => {
|
2018-05-14 22:00:49 +00:00
|
|
|
it('can return the webcontents associated', async () => {
|
|
|
|
const src = 'about:blank'
|
2018-09-13 16:10:51 +00:00
|
|
|
await loadWebView(webview, { src })
|
2018-05-14 22:00:49 +00:00
|
|
|
|
|
|
|
const webviewContents = webview.getWebContents()
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(webviewContents).to.be.an('object')
|
2018-06-01 08:56:48 +00:00
|
|
|
expect(webviewContents.getURL()).to.equal(src)
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
|
|
|
})
|
2016-04-08 19:55:20 +00:00
|
|
|
|
2019-01-08 22:27:56 +00:00
|
|
|
describe('<webview>.getWebContents filtering', () => {
|
|
|
|
it('can return custom value', async () => {
|
|
|
|
const src = 'about:blank'
|
|
|
|
await loadWebView(webview, { src })
|
|
|
|
|
|
|
|
ipcRenderer.send('handle-next-remote-get-guest-web-contents', 'Hello World!')
|
|
|
|
expect(webview.getWebContents()).to.be.equal('Hello World!')
|
|
|
|
})
|
|
|
|
|
|
|
|
it('throws when no returnValue set', async () => {
|
|
|
|
const src = 'about:blank'
|
|
|
|
await loadWebView(webview, { src })
|
|
|
|
|
|
|
|
ipcRenderer.send('handle-next-remote-get-guest-web-contents')
|
|
|
|
expect(() => webview.getWebContents()).to.throw('Blocked remote.getGuestForWebContents()')
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2019-02-11 19:20:04 +00:00
|
|
|
describe('<webview>.printToPDF()', () => {
|
|
|
|
before(function () {
|
|
|
|
if (!features.isPrintingEnabled()) {
|
|
|
|
this.skip()
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
it('can print to PDF', async () => {
|
|
|
|
const src = 'data:text/html,%3Ch1%3EHello%2C%20World!%3C%2Fh1%3E'
|
|
|
|
await loadWebView(webview, { src })
|
|
|
|
|
|
|
|
const data = await webview.printToPDF({})
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(data).to.be.an.instanceof(Buffer).that.is.not.empty()
|
2019-02-11 19:20:04 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2018-10-09 01:13:20 +00:00
|
|
|
// FIXME(deepak1556): Ch69 follow up.
|
|
|
|
xdescribe('document.visibilityState/hidden', () => {
|
2017-10-27 20:45:58 +00:00
|
|
|
afterEach(() => {
|
2017-06-12 19:51:27 +00:00
|
|
|
ipcMain.removeAllListeners('pong')
|
2016-05-24 19:37:26 +00:00
|
|
|
})
|
|
|
|
|
2018-06-01 08:56:48 +00:00
|
|
|
it('updates when the window is shown after the ready-to-show event', async () => {
|
|
|
|
const w = await openTheWindow({ show: false })
|
2018-08-16 22:57:40 +00:00
|
|
|
const readyToShowSignal = emittedOnce(w, 'ready-to-show')
|
|
|
|
const pongSignal1 = emittedOnce(ipcMain, 'pong')
|
2018-09-04 14:50:53 +00:00
|
|
|
w.loadFile(path.join(fixtures, 'pages', 'webview-visibilitychange.html'))
|
2018-08-16 22:57:40 +00:00
|
|
|
await pongSignal1
|
|
|
|
const pongSignal2 = emittedOnce(ipcMain, 'pong')
|
|
|
|
await readyToShowSignal
|
2018-06-01 08:56:48 +00:00
|
|
|
w.show()
|
2017-06-12 19:51:27 +00:00
|
|
|
|
2018-08-16 22:57:40 +00:00
|
|
|
const [, visibilityState, hidden] = await pongSignal2
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(visibilityState).to.equal('visible')
|
|
|
|
expect(hidden).to.be.false()
|
2016-05-24 19:37:26 +00:00
|
|
|
})
|
|
|
|
|
2018-06-01 08:56:48 +00:00
|
|
|
it('inherits the parent window visibility state and receives visibilitychange events', async () => {
|
|
|
|
const w = await openTheWindow({ show: false })
|
2018-09-04 14:50:53 +00:00
|
|
|
w.loadFile(path.join(fixtures, 'pages', 'webview-visibilitychange.html'))
|
2018-10-02 01:56:31 +00:00
|
|
|
const [, visibilityState, hidden] = await emittedOnce(ipcMain, 'pong')
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(visibilityState).to.equal('hidden')
|
|
|
|
expect(hidden).to.be.true()
|
2017-06-12 19:51:27 +00:00
|
|
|
|
2018-06-01 08:56:48 +00:00
|
|
|
// We have to start waiting for the event
|
|
|
|
// before we ask the webContents to resize.
|
2018-06-19 11:25:26 +00:00
|
|
|
const getResponse = emittedOnce(ipcMain, 'pong')
|
2018-06-01 08:56:48 +00:00
|
|
|
w.webContents.emit('-window-visibility-change', 'visible')
|
|
|
|
|
|
|
|
return getResponse.then(([, visibilityState, hidden]) => {
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(visibilityState).to.equal('visible')
|
|
|
|
expect(hidden).to.be.false()
|
2017-06-12 19:51:27 +00:00
|
|
|
})
|
|
|
|
})
|
2016-05-24 19:37:26 +00:00
|
|
|
})
|
2016-06-07 16:50:06 +00:00
|
|
|
|
2017-02-09 19:49:14 +00:00
|
|
|
describe('will-attach-webview event', () => {
|
2018-07-21 02:11:28 +00:00
|
|
|
it('does not emit when src is not changed', (done) => {
|
|
|
|
loadWebView(webview)
|
|
|
|
setTimeout(() => {
|
|
|
|
const expectedErrorMessage =
|
|
|
|
'The WebView must be attached to the DOM ' +
|
|
|
|
'and the dom-ready event emitted before this method can be called.'
|
|
|
|
expect(() => { webview.stop() }).to.throw(expectedErrorMessage)
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2018-05-14 22:00:49 +00:00
|
|
|
it('supports changing the web preferences', async () => {
|
2017-02-03 20:55:37 +00:00
|
|
|
ipcRenderer.send('disable-node-on-next-will-attach-webview')
|
2018-06-19 11:25:26 +00:00
|
|
|
const message = await startLoadingWebViewAndWaitForMessage(webview, {
|
2018-05-14 22:00:49 +00:00
|
|
|
nodeintegration: 'yes',
|
|
|
|
src: `file://${fixtures}/pages/a.html`
|
2017-02-03 20:21:46 +00:00
|
|
|
})
|
2018-05-14 22:00:49 +00:00
|
|
|
|
2018-06-01 08:56:48 +00:00
|
|
|
const types = JSON.parse(message)
|
|
|
|
expect(types).to.include({
|
|
|
|
require: 'undefined',
|
|
|
|
module: 'undefined',
|
|
|
|
process: 'undefined',
|
|
|
|
global: 'undefined'
|
|
|
|
})
|
2017-02-03 20:21:46 +00:00
|
|
|
})
|
|
|
|
|
2018-05-14 22:00:49 +00:00
|
|
|
it('supports preventing a webview from being created', async () => {
|
2017-02-03 20:55:37 +00:00
|
|
|
ipcRenderer.send('prevent-next-will-attach-webview')
|
2018-05-14 22:00:49 +00:00
|
|
|
|
|
|
|
loadWebView(webview, {
|
|
|
|
src: `file://${fixtures}/pages/c.html`
|
2017-02-03 20:21:46 +00:00
|
|
|
})
|
2018-05-14 22:00:49 +00:00
|
|
|
await waitForEvent(webview, 'destroyed')
|
2017-02-03 20:21:46 +00:00
|
|
|
})
|
2017-05-17 20:47:00 +00:00
|
|
|
|
2018-05-14 22:00:49 +00:00
|
|
|
it('supports removing the preload script', async () => {
|
2017-05-17 20:47:00 +00:00
|
|
|
ipcRenderer.send('disable-preload-on-next-will-attach-webview')
|
2018-05-14 22:00:49 +00:00
|
|
|
|
2018-06-19 11:25:26 +00:00
|
|
|
const message = await startLoadingWebViewAndWaitForMessage(webview, {
|
2018-05-14 22:00:49 +00:00
|
|
|
nodeintegration: 'yes',
|
|
|
|
preload: path.join(fixtures, 'module', 'preload-set-global.js'),
|
|
|
|
src: `file://${fixtures}/pages/a.html`
|
2017-05-17 20:47:00 +00:00
|
|
|
})
|
2018-05-14 22:00:49 +00:00
|
|
|
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(message).to.equal('undefined')
|
2017-05-17 20:47:00 +00:00
|
|
|
})
|
2017-02-03 20:21:46 +00:00
|
|
|
})
|
|
|
|
|
2017-10-06 16:31:41 +00:00
|
|
|
describe('did-attach-webview event', () => {
|
2018-06-01 08:56:48 +00:00
|
|
|
it('is emitted when a webview has been attached', async () => {
|
2019-01-07 19:19:27 +00:00
|
|
|
const w = await openTheWindow({
|
|
|
|
show: false,
|
|
|
|
webPreferences: {
|
|
|
|
webviewTag: true,
|
|
|
|
nodeIntegration: true
|
|
|
|
}
|
|
|
|
})
|
2019-01-15 21:22:24 +00:00
|
|
|
const didAttachWebview = emittedOnce(w.webContents, 'did-attach-webview')
|
|
|
|
const webviewDomReady = emittedOnce(ipcMain, 'webview-dom-ready')
|
2018-09-04 14:50:53 +00:00
|
|
|
w.loadFile(path.join(fixtures, 'pages', 'webview-did-attach-event.html'))
|
2018-06-01 08:56:48 +00:00
|
|
|
|
2019-01-15 21:22:24 +00:00
|
|
|
const [, webContents] = await didAttachWebview
|
|
|
|
const [, id] = await webviewDomReady
|
2018-06-01 08:56:48 +00:00
|
|
|
expect(webContents.id).to.equal(id)
|
2017-10-06 16:31:41 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2018-05-29 16:01:31 +00:00
|
|
|
it('loads devtools extensions registered on the parent window', async () => {
|
2019-01-07 19:19:27 +00:00
|
|
|
const w = await openTheWindow({
|
|
|
|
show: false,
|
|
|
|
webPreferences: {
|
|
|
|
webviewTag: true,
|
|
|
|
nodeIntegration: true
|
|
|
|
}
|
|
|
|
})
|
2016-06-07 16:50:06 +00:00
|
|
|
BrowserWindow.removeDevToolsExtension('foo')
|
|
|
|
|
2017-10-27 20:45:58 +00:00
|
|
|
const extensionPath = path.join(__dirname, 'fixtures', 'devtools-extensions', 'foo')
|
2016-06-07 16:50:06 +00:00
|
|
|
BrowserWindow.addDevToolsExtension(extensionPath)
|
|
|
|
|
2018-09-04 14:50:53 +00:00
|
|
|
w.loadFile(path.join(fixtures, 'pages', 'webview-devtools.html'))
|
2016-06-07 16:50:06 +00:00
|
|
|
|
2018-09-13 16:10:51 +00:00
|
|
|
const [, { runtimeId, tabId }] = await emittedOnce(ipcMain, 'answer')
|
2018-06-01 08:56:48 +00:00
|
|
|
expect(runtimeId).to.equal('foo')
|
|
|
|
expect(tabId).to.be.not.equal(w.webContents.id)
|
2016-06-07 16:50:06 +00:00
|
|
|
})
|
2016-09-08 17:01:01 +00:00
|
|
|
|
2017-10-27 20:45:58 +00:00
|
|
|
describe('DOM events', () => {
|
2016-11-03 22:12:54 +00:00
|
|
|
let div
|
|
|
|
|
2017-10-27 20:45:58 +00:00
|
|
|
beforeEach(() => {
|
2016-11-03 22:12:54 +00:00
|
|
|
div = document.createElement('div')
|
|
|
|
div.style.width = '100px'
|
|
|
|
div.style.height = '10px'
|
|
|
|
div.style.overflow = 'hidden'
|
|
|
|
webview.style.height = '100%'
|
|
|
|
webview.style.width = '100%'
|
|
|
|
})
|
|
|
|
|
2017-10-27 20:45:58 +00:00
|
|
|
afterEach(() => {
|
2016-11-03 22:12:54 +00:00
|
|
|
if (div != null) div.remove()
|
|
|
|
})
|
|
|
|
|
2019-01-22 01:08:16 +00:00
|
|
|
const generateSpecs = (description, sandbox) => {
|
|
|
|
describe(description, () => {
|
2019-07-03 01:22:09 +00:00
|
|
|
// TODO(nornagon): disabled during chromium roll 2019-06-11 due to a
|
|
|
|
// 'ResizeObserver loop limit exceeded' error on Windows
|
|
|
|
xit('emits resize events', async () => {
|
2019-01-22 01:08:16 +00:00
|
|
|
const firstResizeSignal = waitForEvent(webview, 'resize')
|
|
|
|
const domReadySignal = waitForEvent(webview, 'dom-ready')
|
2018-08-16 22:57:40 +00:00
|
|
|
|
2019-01-22 01:08:16 +00:00
|
|
|
webview.src = `file://${fixtures}/pages/a.html`
|
|
|
|
webview.webpreferences = `sandbox=${sandbox ? 'yes' : 'no'}`
|
|
|
|
div.appendChild(webview)
|
|
|
|
document.body.appendChild(div)
|
2018-06-18 14:47:17 +00:00
|
|
|
|
2019-01-22 01:08:16 +00:00
|
|
|
const firstResizeEvent = await firstResizeSignal
|
|
|
|
expect(firstResizeEvent.target).to.equal(webview)
|
|
|
|
expect(firstResizeEvent.newWidth).to.equal(100)
|
|
|
|
expect(firstResizeEvent.newHeight).to.equal(10)
|
2018-06-18 14:47:17 +00:00
|
|
|
|
2019-01-22 01:08:16 +00:00
|
|
|
await domReadySignal
|
2018-08-16 22:57:40 +00:00
|
|
|
|
2019-01-22 01:08:16 +00:00
|
|
|
const secondResizeSignal = waitForEvent(webview, 'resize')
|
2018-06-18 14:47:17 +00:00
|
|
|
|
2019-01-22 01:08:16 +00:00
|
|
|
const newWidth = 1234
|
|
|
|
const newHeight = 789
|
|
|
|
div.style.width = `${newWidth}px`
|
|
|
|
div.style.height = `${newHeight}px`
|
2018-06-18 14:47:17 +00:00
|
|
|
|
2019-01-22 01:08:16 +00:00
|
|
|
const secondResizeEvent = await secondResizeSignal
|
|
|
|
expect(secondResizeEvent.target).to.equal(webview)
|
|
|
|
expect(secondResizeEvent.newWidth).to.equal(newWidth)
|
|
|
|
expect(secondResizeEvent.newHeight).to.equal(newHeight)
|
|
|
|
})
|
2018-08-28 18:35:44 +00:00
|
|
|
|
2019-01-22 01:08:16 +00:00
|
|
|
it('emits focus event', async () => {
|
|
|
|
const domReadySignal = waitForEvent(webview, 'dom-ready')
|
|
|
|
webview.src = `file://${fixtures}/pages/a.html`
|
|
|
|
webview.webpreferences = `sandbox=${sandbox ? 'yes' : 'no'}`
|
|
|
|
document.body.appendChild(webview)
|
2018-08-28 18:35:44 +00:00
|
|
|
|
2019-01-22 01:08:16 +00:00
|
|
|
await domReadySignal
|
2018-08-28 18:35:44 +00:00
|
|
|
|
2019-01-22 01:08:16 +00:00
|
|
|
// If this test fails, check if webview.focus() still works.
|
|
|
|
const focusSignal = waitForEvent(webview, 'focus')
|
|
|
|
webview.focus()
|
2018-08-28 18:35:44 +00:00
|
|
|
|
2019-01-22 01:08:16 +00:00
|
|
|
await focusSignal
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
generateSpecs('without sandbox', false)
|
|
|
|
generateSpecs('with sandbox', true)
|
2016-11-03 22:12:54 +00:00
|
|
|
})
|
2016-10-25 05:17:38 +00:00
|
|
|
|
2017-02-17 15:48:30 +00:00
|
|
|
describe('zoom behavior', () => {
|
2017-02-17 17:58:29 +00:00
|
|
|
const zoomScheme = remote.getGlobal('zoomScheme')
|
|
|
|
const webviewSession = session.fromPartition('webview-temp')
|
|
|
|
|
|
|
|
before((done) => {
|
|
|
|
const protocol = webviewSession.protocol
|
|
|
|
protocol.registerStringProtocol(zoomScheme, (request, callback) => {
|
|
|
|
callback('hello')
|
|
|
|
}, (error) => done(error))
|
|
|
|
})
|
|
|
|
|
|
|
|
after((done) => {
|
|
|
|
const protocol = webviewSession.protocol
|
|
|
|
protocol.unregisterProtocol(zoomScheme, (error) => done(error))
|
|
|
|
})
|
|
|
|
|
2018-06-01 08:56:48 +00:00
|
|
|
it('inherits the zoomFactor of the parent window', async () => {
|
|
|
|
const w = await openTheWindow({
|
2017-02-17 15:48:30 +00:00
|
|
|
show: false,
|
|
|
|
webPreferences: {
|
2019-01-07 19:19:27 +00:00
|
|
|
webviewTag: true,
|
|
|
|
nodeIntegration: true,
|
2017-02-17 15:48:30 +00:00
|
|
|
zoomFactor: 1.2
|
|
|
|
}
|
|
|
|
})
|
2019-02-14 15:49:12 +00:00
|
|
|
const zoomEventPromise = emittedOnce(ipcMain, 'webview-parent-zoom-level')
|
2018-09-04 14:50:53 +00:00
|
|
|
w.loadFile(path.join(fixtures, 'pages', 'webview-zoom-factor.html'))
|
2018-06-01 08:56:48 +00:00
|
|
|
|
2019-02-14 15:49:12 +00:00
|
|
|
const [, zoomFactor, zoomLevel] = await zoomEventPromise
|
2018-06-01 08:56:48 +00:00
|
|
|
expect(zoomFactor).to.equal(1.2)
|
|
|
|
expect(zoomLevel).to.equal(1)
|
2017-02-17 15:48:30 +00:00
|
|
|
})
|
|
|
|
|
2018-06-01 08:56:48 +00:00
|
|
|
it('maintains zoom level on navigation', async () => {
|
|
|
|
return openTheWindow({
|
2017-02-17 15:48:30 +00:00
|
|
|
show: false,
|
|
|
|
webPreferences: {
|
2019-01-07 19:19:27 +00:00
|
|
|
webviewTag: true,
|
|
|
|
nodeIntegration: true,
|
2017-02-17 15:48:30 +00:00
|
|
|
zoomFactor: 1.2
|
|
|
|
}
|
2018-06-01 08:56:48 +00:00
|
|
|
}).then((w) => {
|
|
|
|
const promise = new Promise((resolve) => {
|
|
|
|
ipcMain.on('webview-zoom-level', (event, zoomLevel, zoomFactor, newHost, final) => {
|
|
|
|
if (!newHost) {
|
|
|
|
expect(zoomFactor).to.equal(1.44)
|
|
|
|
expect(zoomLevel).to.equal(2.0)
|
|
|
|
} else {
|
|
|
|
expect(zoomFactor).to.equal(1.2)
|
|
|
|
expect(zoomLevel).to.equal(1)
|
|
|
|
}
|
|
|
|
|
|
|
|
if (final) {
|
|
|
|
resolve()
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2018-09-04 14:50:53 +00:00
|
|
|
w.loadFile(path.join(fixtures, 'pages', 'webview-custom-zoom-level.html'))
|
2018-06-01 08:56:48 +00:00
|
|
|
|
|
|
|
return promise
|
2017-02-17 15:48:30 +00:00
|
|
|
})
|
|
|
|
})
|
2017-02-17 17:58:29 +00:00
|
|
|
|
2018-06-01 08:56:48 +00:00
|
|
|
it('maintains zoom level when navigating within same page', async () => {
|
|
|
|
return openTheWindow({
|
2017-02-17 17:58:29 +00:00
|
|
|
show: false,
|
|
|
|
webPreferences: {
|
2019-01-07 19:19:27 +00:00
|
|
|
webviewTag: true,
|
|
|
|
nodeIntegration: true,
|
2017-02-17 17:58:29 +00:00
|
|
|
zoomFactor: 1.2
|
|
|
|
}
|
2018-06-01 08:56:48 +00:00
|
|
|
}).then((w) => {
|
|
|
|
const promise = new Promise((resolve) => {
|
|
|
|
ipcMain.on('webview-zoom-in-page', (event, zoomLevel, zoomFactor, final) => {
|
|
|
|
expect(zoomFactor).to.equal(1.44)
|
|
|
|
expect(zoomLevel).to.equal(2.0)
|
|
|
|
|
|
|
|
if (final) {
|
|
|
|
resolve()
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2018-09-04 14:50:53 +00:00
|
|
|
w.loadFile(path.join(fixtures, 'pages', 'webview-in-page-navigate.html'))
|
2018-06-01 08:56:48 +00:00
|
|
|
|
|
|
|
return promise
|
2017-02-17 17:58:29 +00:00
|
|
|
})
|
|
|
|
})
|
2017-03-08 13:35:24 +00:00
|
|
|
|
2018-06-01 08:56:48 +00:00
|
|
|
it('inherits zoom level for the origin when available', async () => {
|
|
|
|
const w = await openTheWindow({
|
2017-03-08 13:35:24 +00:00
|
|
|
show: false,
|
|
|
|
webPreferences: {
|
2019-01-07 19:19:27 +00:00
|
|
|
webviewTag: true,
|
|
|
|
nodeIntegration: true,
|
2017-03-08 13:35:24 +00:00
|
|
|
zoomFactor: 1.2
|
|
|
|
}
|
|
|
|
})
|
2018-09-04 14:50:53 +00:00
|
|
|
w.loadFile(path.join(fixtures, 'pages', 'webview-origin-zoom-level.html'))
|
2018-06-01 08:56:48 +00:00
|
|
|
|
2018-06-19 11:25:26 +00:00
|
|
|
const [, zoomLevel] = await emittedOnce(ipcMain, 'webview-origin-zoom-level')
|
2018-06-01 08:56:48 +00:00
|
|
|
expect(zoomLevel).to.equal(2.0)
|
2017-03-08 13:35:24 +00:00
|
|
|
})
|
2017-02-17 15:48:30 +00:00
|
|
|
})
|
2017-05-23 20:24:51 +00:00
|
|
|
|
|
|
|
describe('nativeWindowOpen option', () => {
|
2017-10-27 20:45:58 +00:00
|
|
|
beforeEach(() => {
|
2017-05-23 21:22:09 +00:00
|
|
|
webview.setAttribute('allowpopups', 'on')
|
2017-05-23 20:59:13 +00:00
|
|
|
webview.setAttribute('nodeintegration', 'on')
|
|
|
|
webview.setAttribute('webpreferences', 'nativeWindowOpen=1')
|
|
|
|
})
|
|
|
|
|
2018-06-01 08:56:48 +00:00
|
|
|
it('opens window of about:blank with cross-scripting enabled', async () => {
|
|
|
|
// Don't wait for loading to finish.
|
2018-05-14 22:00:49 +00:00
|
|
|
loadWebView(webview, {
|
|
|
|
src: `file://${path.join(fixtures, 'api', 'native-window-open-blank.html')}`
|
|
|
|
})
|
2018-06-01 08:56:48 +00:00
|
|
|
|
2018-06-19 11:25:26 +00:00
|
|
|
const [, content] = await emittedOnce(ipcMain, 'answer')
|
2018-06-01 08:56:48 +00:00
|
|
|
expect(content).to.equal('Hello')
|
2017-05-23 20:24:51 +00:00
|
|
|
})
|
2017-05-23 20:28:24 +00:00
|
|
|
|
2018-06-01 08:56:48 +00:00
|
|
|
it('opens window of same domain with cross-scripting enabled', async () => {
|
|
|
|
// Don't wait for loading to finish.
|
2018-05-14 22:00:49 +00:00
|
|
|
loadWebView(webview, {
|
|
|
|
src: `file://${path.join(fixtures, 'api', 'native-window-open-file.html')}`
|
|
|
|
})
|
2018-06-01 08:56:48 +00:00
|
|
|
|
2018-06-19 11:25:26 +00:00
|
|
|
const [, content] = await emittedOnce(ipcMain, 'answer')
|
2018-06-01 08:56:48 +00:00
|
|
|
expect(content).to.equal('Hello')
|
2017-05-23 22:56:06 +00:00
|
|
|
})
|
|
|
|
|
2018-06-01 08:56:48 +00:00
|
|
|
it('returns null from window.open when allowpopups is not set', async () => {
|
2017-05-23 22:56:06 +00:00
|
|
|
webview.removeAttribute('allowpopups')
|
2018-06-01 08:56:48 +00:00
|
|
|
|
|
|
|
// Don't wait for loading to finish.
|
2018-05-14 22:00:49 +00:00
|
|
|
loadWebView(webview, {
|
|
|
|
src: `file://${path.join(fixtures, 'api', 'native-window-open-no-allowpopups.html')}`
|
|
|
|
})
|
2018-06-01 08:56:48 +00:00
|
|
|
|
2018-09-13 16:10:51 +00:00
|
|
|
const [, { windowOpenReturnedNull }] = await emittedOnce(ipcMain, 'answer')
|
2018-06-19 11:25:26 +00:00
|
|
|
expect(windowOpenReturnedNull).to.be.true()
|
2017-05-25 16:39:40 +00:00
|
|
|
})
|
|
|
|
|
2018-06-01 08:56:48 +00:00
|
|
|
it('blocks accessing cross-origin frames', async () => {
|
|
|
|
// Don't wait for loading to finish.
|
2018-05-14 22:00:49 +00:00
|
|
|
loadWebView(webview, {
|
|
|
|
src: `file://${path.join(fixtures, 'api', 'native-window-open-cross-origin.html')}`
|
|
|
|
})
|
2018-06-01 08:56:48 +00:00
|
|
|
|
2018-06-19 11:25:26 +00:00
|
|
|
const [, content] = await emittedOnce(ipcMain, 'answer')
|
2018-06-01 08:56:48 +00:00
|
|
|
const expectedContent =
|
|
|
|
'Blocked a frame with origin "file://" from accessing a cross-origin frame.'
|
|
|
|
|
|
|
|
expect(content).to.equal(expectedContent)
|
2017-05-23 20:28:24 +00:00
|
|
|
})
|
2017-05-23 20:59:13 +00:00
|
|
|
|
2018-05-14 22:00:49 +00:00
|
|
|
it('emits a new-window event', async () => {
|
2018-06-01 08:56:48 +00:00
|
|
|
// Don't wait for loading to finish.
|
2018-05-14 22:00:49 +00:00
|
|
|
loadWebView(webview, {
|
|
|
|
src: `file://${fixtures}/pages/window-open.html`
|
2017-05-23 20:59:13 +00:00
|
|
|
})
|
2018-09-13 16:10:51 +00:00
|
|
|
const { url, frameName } = await waitForEvent(webview, 'new-window')
|
2018-05-14 22:00:49 +00:00
|
|
|
|
2018-06-01 08:56:48 +00:00
|
|
|
expect(url).to.equal('http://host/')
|
|
|
|
expect(frameName).to.equal('host')
|
2017-05-23 20:59:13 +00:00
|
|
|
})
|
2017-05-23 21:31:20 +00:00
|
|
|
|
2018-06-01 08:56:48 +00:00
|
|
|
it('emits a browser-window-created event', async () => {
|
|
|
|
// Don't wait for loading to finish.
|
|
|
|
loadWebView(webview, {
|
|
|
|
src: `file://${fixtures}/pages/window-open.html`
|
|
|
|
})
|
|
|
|
|
2018-06-19 11:25:26 +00:00
|
|
|
await emittedOnce(app, 'browser-window-created')
|
2017-05-23 21:31:20 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
it('emits a web-contents-created event', (done) => {
|
|
|
|
app.on('web-contents-created', function listener (event, contents) {
|
|
|
|
if (contents.getType() === 'window') {
|
|
|
|
app.removeListener('web-contents-created', listener)
|
|
|
|
done()
|
|
|
|
}
|
|
|
|
})
|
2018-05-14 22:00:49 +00:00
|
|
|
loadWebView(webview, {
|
|
|
|
src: `file://${fixtures}/pages/window-open.html`
|
|
|
|
})
|
2017-05-23 21:31:20 +00:00
|
|
|
})
|
2017-05-23 20:24:51 +00:00
|
|
|
})
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|