2016-03-25 23:03:49 +03:00
|
|
|
'use strict'
|
2016-01-23 14:35:30 +03:00
|
|
|
|
2016-03-25 23:03:49 +03:00
|
|
|
const assert = require('assert')
|
|
|
|
const fs = require('fs')
|
|
|
|
const path = require('path')
|
|
|
|
const os = require('os')
|
2016-10-12 20:26:53 +03:00
|
|
|
const qs = require('querystring')
|
2016-04-18 20:33:56 +03:00
|
|
|
const http = require('http')
|
2016-08-03 22:47:53 +03:00
|
|
|
const {closeWindow} = require('./window-helpers')
|
2016-01-12 05:40:23 +03:00
|
|
|
|
2016-11-11 21:13:06 +03:00
|
|
|
const {ipcRenderer, remote, screen} = require('electron')
|
2016-12-06 03:12:15 +03:00
|
|
|
const {app, ipcMain, BrowserWindow, protocol, webContents} = remote
|
2016-01-12 05:40:23 +03:00
|
|
|
|
2016-03-25 23:03:49 +03:00
|
|
|
const isCI = remote.getGlobal('isCi')
|
2016-01-12 05:40:23 +03:00
|
|
|
|
2016-12-06 03:12:15 +03:00
|
|
|
describe('BrowserWindow module', function () {
|
2016-03-25 23:03:49 +03:00
|
|
|
var fixtures = path.resolve(__dirname, 'fixtures')
|
|
|
|
var w = null
|
2016-10-12 20:26:53 +03:00
|
|
|
var server, postData
|
2016-04-20 08:05:09 +03:00
|
|
|
|
|
|
|
before(function (done) {
|
2016-10-12 20:26:53 +03:00
|
|
|
const filePath = path.join(fixtures, 'pages', 'a.html')
|
|
|
|
const fileStats = fs.statSync(filePath)
|
|
|
|
postData = [
|
|
|
|
{
|
2016-11-11 20:22:45 +03:00
|
|
|
type: 'rawData',
|
|
|
|
bytes: new Buffer('username=test&file=')
|
2016-10-12 20:26:53 +03:00
|
|
|
},
|
|
|
|
{
|
2016-11-11 20:22:45 +03:00
|
|
|
type: 'file',
|
|
|
|
filePath: filePath,
|
|
|
|
offset: 0,
|
|
|
|
length: fileStats.size,
|
|
|
|
modificationTime: fileStats.mtime.getTime() / 1000
|
2016-10-12 20:26:53 +03:00
|
|
|
}
|
|
|
|
]
|
2016-04-20 08:05:09 +03:00
|
|
|
server = http.createServer(function (req, res) {
|
2016-10-12 20:26:53 +03:00
|
|
|
function respond () {
|
|
|
|
if (req.method === 'POST') {
|
|
|
|
let body = ''
|
|
|
|
req.on('data', (data) => {
|
|
|
|
if (data) {
|
|
|
|
body += data
|
|
|
|
}
|
|
|
|
})
|
|
|
|
req.on('end', () => {
|
|
|
|
let parsedData = qs.parse(body)
|
|
|
|
fs.readFile(filePath, (err, data) => {
|
|
|
|
if (err) return
|
|
|
|
if (parsedData.username === 'test' &&
|
|
|
|
parsedData.file === data.toString()) {
|
|
|
|
res.end()
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
res.end()
|
|
|
|
}
|
|
|
|
}
|
2016-04-20 08:05:09 +03:00
|
|
|
setTimeout(respond, req.url.includes('slow') ? 200 : 0)
|
2016-06-29 19:37:10 +03:00
|
|
|
})
|
2016-04-20 08:05:09 +03:00
|
|
|
server.listen(0, '127.0.0.1', function () {
|
|
|
|
server.url = 'http://127.0.0.1:' + server.address().port
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
after(function () {
|
|
|
|
server.close()
|
|
|
|
server = null
|
|
|
|
})
|
2016-02-09 21:12:45 +03:00
|
|
|
|
2016-03-25 23:03:49 +03:00
|
|
|
beforeEach(function () {
|
2016-02-09 21:12:45 +03:00
|
|
|
w = new BrowserWindow({
|
2016-01-12 05:40:23 +03:00
|
|
|
show: false,
|
|
|
|
width: 400,
|
2016-06-26 05:53:58 +03:00
|
|
|
height: 400,
|
|
|
|
webPreferences: {
|
|
|
|
backgroundThrottling: false
|
|
|
|
}
|
2016-03-25 23:03:49 +03:00
|
|
|
})
|
|
|
|
})
|
2016-02-09 21:12:45 +03:00
|
|
|
|
2016-03-25 23:03:49 +03:00
|
|
|
afterEach(function () {
|
2016-11-29 22:06:22 +03:00
|
|
|
return closeWindow(w).then(function () { w = null })
|
2016-03-25 23:03:49 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
describe('BrowserWindow.close()', function () {
|
|
|
|
it('should emit unload handler', function (done) {
|
|
|
|
w.webContents.on('did-finish-load', function () {
|
|
|
|
w.close()
|
|
|
|
})
|
2016-08-03 23:10:26 +03:00
|
|
|
w.once('closed', function () {
|
2016-03-25 23:03:49 +03:00
|
|
|
var test = path.join(fixtures, 'api', 'unload')
|
|
|
|
var content = fs.readFileSync(test)
|
|
|
|
fs.unlinkSync(test)
|
|
|
|
assert.equal(String(content), 'unload')
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
w.loadURL('file://' + path.join(fixtures, 'api', 'unload.html'))
|
|
|
|
})
|
|
|
|
|
|
|
|
it('should emit beforeunload handler', function (done) {
|
2016-08-03 23:10:26 +03:00
|
|
|
w.once('onbeforeunload', function () {
|
2016-03-25 23:03:49 +03:00
|
|
|
done()
|
|
|
|
})
|
|
|
|
w.webContents.on('did-finish-load', function () {
|
|
|
|
w.close()
|
|
|
|
})
|
|
|
|
w.loadURL('file://' + path.join(fixtures, 'api', 'beforeunload-false.html'))
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('window.close()', function () {
|
|
|
|
it('should emit unload handler', function (done) {
|
2016-08-03 23:10:26 +03:00
|
|
|
w.once('closed', function () {
|
2016-03-25 23:03:49 +03:00
|
|
|
var test = path.join(fixtures, 'api', 'close')
|
|
|
|
var content = fs.readFileSync(test)
|
|
|
|
fs.unlinkSync(test)
|
|
|
|
assert.equal(String(content), 'close')
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
w.loadURL('file://' + path.join(fixtures, 'api', 'close.html'))
|
|
|
|
})
|
|
|
|
|
|
|
|
it('should emit beforeunload handler', function (done) {
|
2016-08-03 23:10:26 +03:00
|
|
|
w.once('onbeforeunload', function () {
|
2016-03-25 23:03:49 +03:00
|
|
|
done()
|
|
|
|
})
|
|
|
|
w.loadURL('file://' + path.join(fixtures, 'api', 'close-beforeunload-false.html'))
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('BrowserWindow.destroy()', function () {
|
|
|
|
it('prevents users to access methods of webContents', function () {
|
2016-12-06 03:12:15 +03:00
|
|
|
const contents = w.webContents
|
2016-03-25 23:03:49 +03:00
|
|
|
w.destroy()
|
2016-03-29 03:16:08 +03:00
|
|
|
assert.throws(function () {
|
2016-12-06 03:12:15 +03:00
|
|
|
contents.getId()
|
2016-03-29 03:16:08 +03:00
|
|
|
}, /Object has been destroyed/)
|
2016-03-25 23:03:49 +03:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('BrowserWindow.loadURL(url)', function () {
|
|
|
|
it('should emit did-start-loading event', function (done) {
|
|
|
|
w.webContents.on('did-start-loading', function () {
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
w.loadURL('about:blank')
|
|
|
|
})
|
|
|
|
|
2016-10-31 22:40:49 +03:00
|
|
|
it('should emit ready-to-show event', function (done) {
|
|
|
|
w.on('ready-to-show', function () {
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
w.loadURL('about:blank')
|
|
|
|
})
|
|
|
|
|
2016-04-08 21:19:36 +03:00
|
|
|
it('should emit did-get-response-details event', function (done) {
|
|
|
|
// expected {fileName: resourceType} pairs
|
|
|
|
var expectedResources = {
|
|
|
|
'did-get-response-details.html': 'mainFrame',
|
|
|
|
'logo.png': 'image'
|
|
|
|
}
|
2016-06-29 19:37:10 +03:00
|
|
|
var responses = 0
|
2016-04-08 21:19:36 +03:00
|
|
|
w.webContents.on('did-get-response-details', function (event, status, newUrl, oldUrl, responseCode, method, referrer, headers, resourceType) {
|
|
|
|
responses++
|
|
|
|
var fileName = newUrl.slice(newUrl.lastIndexOf('/') + 1)
|
|
|
|
var expectedType = expectedResources[fileName]
|
|
|
|
assert(!!expectedType, `Unexpected response details for ${newUrl}`)
|
|
|
|
assert(typeof status === 'boolean', 'status should be boolean')
|
|
|
|
assert.equal(responseCode, 200)
|
|
|
|
assert.equal(method, 'GET')
|
|
|
|
assert(typeof referrer === 'string', 'referrer should be string')
|
|
|
|
assert(!!headers, 'headers should be present')
|
|
|
|
assert(typeof headers === 'object', 'headers should be object')
|
|
|
|
assert.equal(resourceType, expectedType, 'Incorrect resourceType')
|
|
|
|
if (responses === Object.keys(expectedResources).length) {
|
|
|
|
done()
|
|
|
|
}
|
|
|
|
})
|
|
|
|
w.loadURL('file://' + path.join(fixtures, 'pages', 'did-get-response-details.html'))
|
|
|
|
})
|
|
|
|
|
2016-03-25 23:03:49 +03:00
|
|
|
it('should emit did-fail-load event for files that do not exist', function (done) {
|
2016-04-05 05:24:58 +03:00
|
|
|
w.webContents.on('did-fail-load', function (event, code, desc, url, isMainFrame) {
|
2016-03-25 23:03:49 +03:00
|
|
|
assert.equal(code, -6)
|
2016-05-21 07:51:15 +03:00
|
|
|
assert.equal(desc, 'ERR_FILE_NOT_FOUND')
|
2016-04-05 05:24:58 +03:00
|
|
|
assert.equal(isMainFrame, true)
|
2016-03-25 23:03:49 +03:00
|
|
|
done()
|
|
|
|
})
|
|
|
|
w.loadURL('file://a.txt')
|
|
|
|
})
|
|
|
|
|
|
|
|
it('should emit did-fail-load event for invalid URL', function (done) {
|
2016-04-05 05:24:58 +03:00
|
|
|
w.webContents.on('did-fail-load', function (event, code, desc, url, isMainFrame) {
|
2016-03-25 23:03:49 +03:00
|
|
|
assert.equal(desc, 'ERR_INVALID_URL')
|
|
|
|
assert.equal(code, -300)
|
2016-04-05 05:24:58 +03:00
|
|
|
assert.equal(isMainFrame, true)
|
2016-03-25 23:03:49 +03:00
|
|
|
done()
|
|
|
|
})
|
|
|
|
w.loadURL('http://example:port')
|
|
|
|
})
|
2016-04-05 05:24:58 +03:00
|
|
|
|
|
|
|
it('should set `mainFrame = false` on did-fail-load events in iframes', function (done) {
|
|
|
|
w.webContents.on('did-fail-load', function (event, code, desc, url, isMainFrame) {
|
|
|
|
assert.equal(isMainFrame, false)
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
w.loadURL('file://' + path.join(fixtures, 'api', 'did-fail-load-iframe.html'))
|
|
|
|
})
|
2016-04-13 13:39:11 +03:00
|
|
|
|
|
|
|
it('does not crash in did-fail-provisional-load handler', function (done) {
|
|
|
|
w.webContents.once('did-fail-provisional-load', function () {
|
2016-04-30 12:21:18 +03:00
|
|
|
w.loadURL('http://127.0.0.1:11111')
|
2016-04-13 13:39:11 +03:00
|
|
|
done()
|
|
|
|
})
|
2016-04-30 12:21:18 +03:00
|
|
|
w.loadURL('http://127.0.0.1:11111')
|
2016-04-13 13:39:11 +03:00
|
|
|
})
|
2016-10-12 20:26:53 +03:00
|
|
|
|
2017-01-23 17:27:47 +03:00
|
|
|
it('should emit did-fail-load event for URL exceeding character limit', function (done) {
|
|
|
|
w.webContents.on('did-fail-load', function (event, code, desc, url, isMainFrame) {
|
|
|
|
assert.equal(desc, 'ERR_INVALID_URL')
|
|
|
|
assert.equal(code, -300)
|
|
|
|
assert.equal(isMainFrame, true)
|
|
|
|
done()
|
|
|
|
})
|
2017-01-25 11:50:33 +03:00
|
|
|
const data = new Buffer(2 * 1024 * 1024).toString('base64')
|
|
|
|
w.loadURL(`data:image/png;base64,${data}`)
|
2017-01-23 17:27:47 +03:00
|
|
|
})
|
|
|
|
|
2017-02-19 23:43:17 +03:00
|
|
|
it('should not crash when there is a pending navigation entry', function (done) {
|
2017-02-28 21:51:37 +03:00
|
|
|
ipcRenderer.once('navigated-with-pending-entry', () => done())
|
|
|
|
ipcRenderer.send('navigate-with-pending-entry', w.id)
|
2017-02-19 23:43:17 +03:00
|
|
|
})
|
|
|
|
|
2016-11-11 21:13:06 +03:00
|
|
|
describe('POST navigations', function () {
|
|
|
|
afterEach(() => {
|
|
|
|
w.webContents.session.webRequest.onBeforeSendHeaders(null)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('supports specifying POST data', function (done) {
|
|
|
|
w.webContents.on('did-finish-load', () => done())
|
|
|
|
w.loadURL(server.url, {postData: postData})
|
|
|
|
})
|
|
|
|
|
|
|
|
it('sets the content type header on URL encoded forms', function (done) {
|
|
|
|
w.webContents.on('did-finish-load', () => {
|
|
|
|
w.webContents.session.webRequest.onBeforeSendHeaders((details, callback) => {
|
|
|
|
assert.equal(details.requestHeaders['content-type'], 'application/x-www-form-urlencoded')
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
w.webContents.executeJavaScript(`
|
|
|
|
form = document.createElement('form')
|
2016-12-19 22:25:25 +03:00
|
|
|
document.body.appendChild(form)
|
2016-11-11 21:13:06 +03:00
|
|
|
form.method = 'POST'
|
|
|
|
form.target = '_blank'
|
|
|
|
form.submit()
|
|
|
|
`)
|
|
|
|
})
|
|
|
|
w.loadURL(server.url)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('sets the content type header on multi part forms', function (done) {
|
|
|
|
w.webContents.on('did-finish-load', () => {
|
|
|
|
w.webContents.session.webRequest.onBeforeSendHeaders((details, callback) => {
|
|
|
|
assert(details.requestHeaders['content-type'].startsWith('multipart/form-data; boundary=----WebKitFormBoundary'))
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
w.webContents.executeJavaScript(`
|
|
|
|
form = document.createElement('form')
|
2016-12-19 22:25:25 +03:00
|
|
|
document.body.appendChild(form)
|
2016-11-11 21:13:06 +03:00
|
|
|
form.method = 'POST'
|
|
|
|
form.target = '_blank'
|
|
|
|
form.enctype = 'multipart/form-data'
|
|
|
|
file = document.createElement('input')
|
|
|
|
file.type = 'file'
|
|
|
|
file.name = 'file'
|
|
|
|
form.appendChild(file)
|
|
|
|
form.submit()
|
|
|
|
`)
|
|
|
|
})
|
|
|
|
w.loadURL(server.url)
|
|
|
|
})
|
2016-10-12 20:26:53 +03:00
|
|
|
})
|
2017-03-03 01:37:09 +03:00
|
|
|
|
2017-03-02 23:14:18 +03:00
|
|
|
it('should support support base url for data urls', (done) => {
|
|
|
|
ipcMain.once('answer', function (event, test) {
|
|
|
|
assert.equal(test, 'test')
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
w.loadURL('data:text/html,<script src="loaded-from-dataurl.js"></script>', {baseURLForDataURL: `file://${path.join(fixtures, 'api')}${path.sep}`})
|
|
|
|
})
|
2016-03-25 23:03:49 +03:00
|
|
|
})
|
|
|
|
|
2016-12-21 21:00:27 +03:00
|
|
|
describe('will-navigate event', function () {
|
|
|
|
it('allows the window to be closed from the event listener', (done) => {
|
|
|
|
ipcRenderer.send('close-on-will-navigate', w.id)
|
|
|
|
ipcRenderer.once('closed-on-will-navigate', () => {
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
w.loadURL('file://' + fixtures + '/pages/will-navigate.html')
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2016-03-25 23:03:49 +03:00
|
|
|
describe('BrowserWindow.show()', function () {
|
2016-03-08 22:11:17 +03:00
|
|
|
if (isCI) {
|
2016-03-25 23:03:49 +03:00
|
|
|
return
|
2016-03-08 22:11:17 +03:00
|
|
|
}
|
2016-02-09 21:12:45 +03:00
|
|
|
|
2016-03-25 23:03:49 +03:00
|
|
|
it('should focus on window', function () {
|
|
|
|
w.show()
|
|
|
|
assert(w.isFocused())
|
|
|
|
})
|
|
|
|
|
|
|
|
it('should make the window visible', function () {
|
|
|
|
w.show()
|
|
|
|
assert(w.isVisible())
|
|
|
|
})
|
|
|
|
|
|
|
|
it('emits when window is shown', function (done) {
|
|
|
|
w.once('show', function () {
|
|
|
|
assert.equal(w.isVisible(), true)
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
w.show()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('BrowserWindow.hide()', function () {
|
2016-03-08 22:11:17 +03:00
|
|
|
if (isCI) {
|
2016-03-25 23:03:49 +03:00
|
|
|
return
|
2016-03-08 22:11:17 +03:00
|
|
|
}
|
|
|
|
|
2016-03-25 23:03:49 +03:00
|
|
|
it('should defocus on window', function () {
|
|
|
|
w.hide()
|
|
|
|
assert(!w.isFocused())
|
|
|
|
})
|
|
|
|
|
|
|
|
it('should make the window not visible', function () {
|
|
|
|
w.show()
|
|
|
|
w.hide()
|
|
|
|
assert(!w.isVisible())
|
|
|
|
})
|
|
|
|
|
|
|
|
it('emits when window is hidden', function (done) {
|
|
|
|
w.show()
|
|
|
|
w.once('hide', function () {
|
|
|
|
assert.equal(w.isVisible(), false)
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
w.hide()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('BrowserWindow.showInactive()', function () {
|
|
|
|
it('should not focus on window', function () {
|
|
|
|
w.showInactive()
|
|
|
|
assert(!w.isFocused())
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('BrowserWindow.focus()', function () {
|
|
|
|
it('does not make the window become visible', function () {
|
|
|
|
assert.equal(w.isVisible(), false)
|
|
|
|
w.focus()
|
|
|
|
assert.equal(w.isVisible(), false)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('BrowserWindow.blur()', function () {
|
|
|
|
it('removes focus from window', function () {
|
|
|
|
w.blur()
|
|
|
|
assert(!w.isFocused())
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('BrowserWindow.capturePage(rect, callback)', function () {
|
|
|
|
it('calls the callback with a Buffer', function (done) {
|
2016-02-09 21:12:45 +03:00
|
|
|
w.capturePage({
|
2016-01-12 05:40:23 +03:00
|
|
|
x: 0,
|
|
|
|
y: 0,
|
|
|
|
width: 100,
|
|
|
|
height: 100
|
2016-03-25 23:03:49 +03:00
|
|
|
}, function (image) {
|
|
|
|
assert.equal(image.isEmpty(), true)
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('BrowserWindow.setSize(width, height)', function () {
|
|
|
|
it('sets the window size', function (done) {
|
|
|
|
var size = [300, 400]
|
|
|
|
w.once('resize', function () {
|
2016-09-08 23:46:55 +03:00
|
|
|
assertBoundsEqual(w.getSize(), size)
|
2016-03-25 23:03:49 +03:00
|
|
|
done()
|
|
|
|
})
|
|
|
|
w.setSize(size[0], size[1])
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2016-07-12 20:19:34 +03:00
|
|
|
describe('BrowserWindow.setMinimum/MaximumSize(width, height)', function () {
|
|
|
|
it('sets the maximum and minimum size of the window', function () {
|
|
|
|
assert.deepEqual(w.getMinimumSize(), [0, 0])
|
|
|
|
assert.deepEqual(w.getMaximumSize(), [0, 0])
|
|
|
|
|
|
|
|
w.setMinimumSize(100, 100)
|
2016-09-08 23:46:55 +03:00
|
|
|
assertBoundsEqual(w.getMinimumSize(), [100, 100])
|
|
|
|
assertBoundsEqual(w.getMaximumSize(), [0, 0])
|
2016-07-12 20:19:34 +03:00
|
|
|
|
|
|
|
w.setMaximumSize(900, 600)
|
2016-09-08 23:46:55 +03:00
|
|
|
assertBoundsEqual(w.getMinimumSize(), [100, 100])
|
|
|
|
assertBoundsEqual(w.getMaximumSize(), [900, 600])
|
2016-07-12 20:19:34 +03:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2016-05-29 15:47:42 +03:00
|
|
|
describe('BrowserWindow.setAspectRatio(ratio)', function () {
|
|
|
|
it('resets the behaviour when passing in 0', function (done) {
|
|
|
|
var size = [300, 400]
|
2016-06-29 19:37:10 +03:00
|
|
|
w.setAspectRatio(1 / 2)
|
2016-05-29 15:47:42 +03:00
|
|
|
w.setAspectRatio(0)
|
|
|
|
w.once('resize', function () {
|
2016-09-08 23:46:55 +03:00
|
|
|
assertBoundsEqual(w.getSize(), size)
|
2016-05-29 15:47:42 +03:00
|
|
|
done()
|
|
|
|
})
|
|
|
|
w.setSize(size[0], size[1])
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2016-03-25 23:03:49 +03:00
|
|
|
describe('BrowserWindow.setPosition(x, y)', function () {
|
|
|
|
it('sets the window position', function (done) {
|
|
|
|
var pos = [10, 10]
|
|
|
|
w.once('move', function () {
|
|
|
|
var newPos = w.getPosition()
|
|
|
|
assert.equal(newPos[0], pos[0])
|
|
|
|
assert.equal(newPos[1], pos[1])
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
w.setPosition(pos[0], pos[1])
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('BrowserWindow.setContentSize(width, height)', function () {
|
|
|
|
it('sets the content size', function () {
|
|
|
|
var size = [400, 400]
|
|
|
|
w.setContentSize(size[0], size[1])
|
|
|
|
var after = w.getContentSize()
|
|
|
|
assert.equal(after[0], size[0])
|
|
|
|
assert.equal(after[1], size[1])
|
|
|
|
})
|
|
|
|
|
2016-08-04 22:34:09 +03:00
|
|
|
it('works for a frameless window', function () {
|
2016-03-25 23:03:49 +03:00
|
|
|
w.destroy()
|
2016-01-12 05:40:23 +03:00
|
|
|
w = new BrowserWindow({
|
|
|
|
show: false,
|
|
|
|
frame: false,
|
2016-08-04 22:54:45 +03:00
|
|
|
width: 400,
|
|
|
|
height: 400
|
2016-03-25 23:03:49 +03:00
|
|
|
})
|
|
|
|
var size = [400, 400]
|
|
|
|
w.setContentSize(size[0], size[1])
|
|
|
|
var after = w.getContentSize()
|
|
|
|
assert.equal(after[0], size[0])
|
|
|
|
assert.equal(after[1], size[1])
|
2016-08-04 22:34:09 +03:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('BrowserWindow.setContentBounds(bounds)', function () {
|
2016-08-04 22:54:45 +03:00
|
|
|
it('sets the content size and position', function (done) {
|
2016-08-04 23:02:41 +03:00
|
|
|
var bounds = {x: 10, y: 10, width: 250, height: 250}
|
2016-08-04 22:54:45 +03:00
|
|
|
w.once('resize', function () {
|
2016-09-08 23:46:55 +03:00
|
|
|
assertBoundsEqual(w.getContentBounds(), bounds)
|
2016-08-04 22:54:45 +03:00
|
|
|
done()
|
|
|
|
})
|
2016-08-04 22:34:09 +03:00
|
|
|
w.setContentBounds(bounds)
|
|
|
|
})
|
|
|
|
|
2016-08-04 22:54:45 +03:00
|
|
|
it('works for a frameless window', function (done) {
|
2016-08-04 22:34:09 +03:00
|
|
|
w.destroy()
|
|
|
|
w = new BrowserWindow({
|
|
|
|
show: false,
|
|
|
|
frame: false,
|
|
|
|
width: 300,
|
|
|
|
height: 300
|
|
|
|
})
|
2016-08-04 23:02:41 +03:00
|
|
|
var bounds = {x: 10, y: 10, width: 250, height: 250}
|
2016-08-04 22:54:45 +03:00
|
|
|
w.once('resize', function () {
|
|
|
|
assert.deepEqual(w.getContentBounds(), bounds)
|
|
|
|
done()
|
|
|
|
})
|
2016-08-04 22:34:09 +03:00
|
|
|
w.setContentBounds(bounds)
|
2016-03-25 23:03:49 +03:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2016-06-17 00:57:07 +03:00
|
|
|
describe('BrowserWindow.setProgressBar(progress)', function () {
|
|
|
|
it('sets the progress', function () {
|
|
|
|
assert.doesNotThrow(function () {
|
|
|
|
if (process.platform === 'darwin') {
|
|
|
|
app.dock.setIcon(path.join(fixtures, 'assets', 'logo.png'))
|
|
|
|
}
|
2016-06-29 19:37:10 +03:00
|
|
|
w.setProgressBar(0.5)
|
2016-06-17 01:01:37 +03:00
|
|
|
|
|
|
|
if (process.platform === 'darwin') {
|
|
|
|
app.dock.setIcon(null)
|
|
|
|
}
|
|
|
|
w.setProgressBar(-1)
|
2016-06-17 00:57:07 +03:00
|
|
|
})
|
|
|
|
})
|
2016-08-09 01:44:48 +03:00
|
|
|
|
|
|
|
it('sets the progress using "paused" mode', function () {
|
|
|
|
assert.doesNotThrow(function () {
|
|
|
|
w.setProgressBar(0.5, {mode: 'paused'})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
it('sets the progress using "error" mode', function () {
|
|
|
|
assert.doesNotThrow(function () {
|
|
|
|
w.setProgressBar(0.5, {mode: 'error'})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
it('sets the progress using "normal" mode', function () {
|
|
|
|
assert.doesNotThrow(function () {
|
|
|
|
w.setProgressBar(0.5, {mode: 'normal'})
|
|
|
|
})
|
|
|
|
})
|
2016-06-17 00:57:07 +03:00
|
|
|
})
|
|
|
|
|
2016-09-28 19:23:52 +03:00
|
|
|
describe('BrowserWindow.setAlwaysOnTop(flag, level)', function () {
|
|
|
|
it('sets the window as always on top', function () {
|
|
|
|
assert.equal(w.isAlwaysOnTop(), false)
|
2016-12-07 00:48:40 +03:00
|
|
|
w.setAlwaysOnTop(true, 'screen-saver')
|
2016-09-28 19:23:52 +03:00
|
|
|
assert.equal(w.isAlwaysOnTop(), true)
|
|
|
|
w.setAlwaysOnTop(false)
|
|
|
|
assert.equal(w.isAlwaysOnTop(), false)
|
|
|
|
w.setAlwaysOnTop(true)
|
|
|
|
assert.equal(w.isAlwaysOnTop(), true)
|
|
|
|
})
|
2017-01-26 06:39:57 +03:00
|
|
|
|
2017-01-26 18:14:47 +03:00
|
|
|
it('raises an error when relativeLevel is out of bounds', function () {
|
|
|
|
if (process.platform !== 'darwin') return
|
2017-01-26 06:39:57 +03:00
|
|
|
|
2017-01-26 18:14:47 +03:00
|
|
|
assert.throws(function () {
|
2017-01-27 06:12:10 +03:00
|
|
|
w.setAlwaysOnTop(true, '', -2147483644)
|
2017-01-26 06:39:57 +03:00
|
|
|
})
|
|
|
|
|
2017-01-26 18:14:47 +03:00
|
|
|
assert.throws(function () {
|
2017-01-26 06:39:57 +03:00
|
|
|
w.setAlwaysOnTop(true, '', 2147483632)
|
|
|
|
})
|
|
|
|
})
|
2016-09-28 19:23:52 +03:00
|
|
|
})
|
|
|
|
|
2016-11-28 22:38:40 +03:00
|
|
|
describe('BrowserWindow.setAutoHideCursor(autoHide)', () => {
|
|
|
|
if (process.platform !== 'darwin') {
|
|
|
|
it('is not available on non-macOS platforms', () => {
|
|
|
|
assert.ok(!w.setAutoHideCursor)
|
|
|
|
})
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
it('allows changing cursor auto-hiding', () => {
|
|
|
|
assert.doesNotThrow(() => {
|
|
|
|
w.setAutoHideCursor(false)
|
|
|
|
w.setAutoHideCursor(true)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2016-11-10 22:36:21 +03:00
|
|
|
describe('BrowserWindow.setVibrancy(type)', function () {
|
|
|
|
it('allows setting, changing, and removing the vibrancy', function () {
|
|
|
|
assert.doesNotThrow(function () {
|
|
|
|
w.setVibrancy('light')
|
|
|
|
w.setVibrancy('dark')
|
|
|
|
w.setVibrancy(null)
|
|
|
|
w.setVibrancy('ultra-dark')
|
|
|
|
w.setVibrancy('')
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2016-11-18 23:28:24 +03:00
|
|
|
describe('BrowserWindow.setAppDetails(options)', function () {
|
|
|
|
it('supports setting the app details', function () {
|
2016-11-29 21:56:58 +03:00
|
|
|
if (process.platform !== 'win32') return
|
2016-11-29 01:30:43 +03:00
|
|
|
|
2016-11-18 23:28:24 +03:00
|
|
|
const iconPath = path.join(fixtures, 'assets', 'icon.ico')
|
|
|
|
|
|
|
|
assert.doesNotThrow(function () {
|
|
|
|
w.setAppDetails({appId: 'my.app.id'})
|
|
|
|
w.setAppDetails({appIconPath: iconPath, appIconIndex: 0})
|
|
|
|
w.setAppDetails({appIconPath: iconPath})
|
|
|
|
w.setAppDetails({relaunchCommand: 'my-app.exe arg1 arg2', relaunchDisplayName: 'My app name'})
|
|
|
|
w.setAppDetails({relaunchCommand: 'my-app.exe arg1 arg2'})
|
|
|
|
w.setAppDetails({relaunchDisplayName: 'My app name'})
|
|
|
|
w.setAppDetails({
|
|
|
|
appId: 'my.app.id',
|
|
|
|
appIconPath: iconPath,
|
|
|
|
appIconIndex: 0,
|
|
|
|
relaunchCommand: 'my-app.exe arg1 arg2',
|
|
|
|
relaunchDisplayName: 'My app name'
|
|
|
|
})
|
|
|
|
w.setAppDetails({})
|
|
|
|
})
|
2016-11-29 01:30:43 +03:00
|
|
|
|
2016-11-18 23:28:24 +03:00
|
|
|
assert.throws(function () {
|
|
|
|
w.setAppDetails()
|
2016-11-29 01:30:43 +03:00
|
|
|
}, /Insufficient number of arguments\./)
|
2016-11-18 23:28:24 +03:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2016-03-25 23:03:49 +03:00
|
|
|
describe('BrowserWindow.fromId(id)', function () {
|
|
|
|
it('returns the window with id', function () {
|
|
|
|
assert.equal(w.id, BrowserWindow.fromId(w.id).id)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2016-12-06 03:12:15 +03:00
|
|
|
describe('BrowserWindow.fromWebContents(webContents)', function () {
|
|
|
|
let contents = null
|
|
|
|
|
|
|
|
beforeEach(function () {
|
|
|
|
contents = webContents.create({})
|
|
|
|
})
|
|
|
|
|
|
|
|
afterEach(function () {
|
|
|
|
contents.destroy()
|
|
|
|
})
|
|
|
|
|
|
|
|
it('returns the window with the webContents', function () {
|
|
|
|
assert.equal(BrowserWindow.fromWebContents(w.webContents).id, w.id)
|
|
|
|
assert.equal(BrowserWindow.fromWebContents(contents), undefined)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2016-12-06 03:16:17 +03:00
|
|
|
describe('BrowserWindow.fromDevToolsWebContents(webContents)', function () {
|
|
|
|
let contents = null
|
|
|
|
|
|
|
|
beforeEach(function () {
|
|
|
|
contents = webContents.create({})
|
|
|
|
})
|
|
|
|
|
|
|
|
afterEach(function () {
|
|
|
|
contents.destroy()
|
|
|
|
})
|
|
|
|
|
|
|
|
it('returns the window with the webContents', function (done) {
|
|
|
|
w.webContents.once('devtools-opened', () => {
|
|
|
|
assert.equal(BrowserWindow.fromDevToolsWebContents(w.devToolsWebContents).id, w.id)
|
|
|
|
assert.equal(BrowserWindow.fromDevToolsWebContents(w.webContents), undefined)
|
|
|
|
assert.equal(BrowserWindow.fromDevToolsWebContents(contents), undefined)
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
w.webContents.openDevTools()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2016-03-25 23:03:49 +03:00
|
|
|
describe('"useContentSize" option', function () {
|
|
|
|
it('make window created with content size when used', function () {
|
|
|
|
w.destroy()
|
2016-01-12 05:40:23 +03:00
|
|
|
w = new BrowserWindow({
|
|
|
|
show: false,
|
|
|
|
width: 400,
|
|
|
|
height: 400,
|
|
|
|
useContentSize: true
|
2016-03-25 23:03:49 +03:00
|
|
|
})
|
|
|
|
var contentSize = w.getContentSize()
|
|
|
|
assert.equal(contentSize[0], 400)
|
|
|
|
assert.equal(contentSize[1], 400)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('make window created with window size when not used', function () {
|
|
|
|
var size = w.getSize()
|
|
|
|
assert.equal(size[0], 400)
|
|
|
|
assert.equal(size[1], 400)
|
|
|
|
})
|
|
|
|
|
2016-08-04 22:34:09 +03:00
|
|
|
it('works for a frameless window', function () {
|
2016-03-25 23:03:49 +03:00
|
|
|
w.destroy()
|
2016-01-12 05:40:23 +03:00
|
|
|
w = new BrowserWindow({
|
|
|
|
show: false,
|
|
|
|
frame: false,
|
|
|
|
width: 400,
|
|
|
|
height: 400,
|
|
|
|
useContentSize: true
|
2016-03-25 23:03:49 +03:00
|
|
|
})
|
|
|
|
var contentSize = w.getContentSize()
|
|
|
|
assert.equal(contentSize[0], 400)
|
|
|
|
assert.equal(contentSize[1], 400)
|
|
|
|
var size = w.getSize()
|
|
|
|
assert.equal(size[0], 400)
|
|
|
|
assert.equal(size[1], 400)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2017-03-30 23:46:58 +03:00
|
|
|
describe('"titleBarStyle" option', function () {
|
2016-01-12 05:40:23 +03:00
|
|
|
if (process.platform !== 'darwin') {
|
2016-03-25 23:03:49 +03:00
|
|
|
return
|
2016-01-12 05:40:23 +03:00
|
|
|
}
|
|
|
|
if (parseInt(os.release().split('.')[0]) < 14) {
|
2016-03-25 23:03:49 +03:00
|
|
|
return
|
2016-01-12 05:40:23 +03:00
|
|
|
}
|
2016-02-09 21:12:45 +03:00
|
|
|
|
2016-03-25 23:03:49 +03:00
|
|
|
it('creates browser window with hidden title bar', function () {
|
|
|
|
w.destroy()
|
2016-01-12 05:40:23 +03:00
|
|
|
w = new BrowserWindow({
|
|
|
|
show: false,
|
|
|
|
width: 400,
|
|
|
|
height: 400,
|
|
|
|
titleBarStyle: 'hidden'
|
2016-03-25 23:03:49 +03:00
|
|
|
})
|
|
|
|
var contentSize = w.getContentSize()
|
|
|
|
assert.equal(contentSize[1], 400)
|
|
|
|
})
|
2016-02-09 21:12:45 +03:00
|
|
|
|
2016-03-25 23:03:49 +03:00
|
|
|
it('creates browser window with hidden inset title bar', function () {
|
|
|
|
w.destroy()
|
2016-01-12 05:40:23 +03:00
|
|
|
w = new BrowserWindow({
|
|
|
|
show: false,
|
|
|
|
width: 400,
|
|
|
|
height: 400,
|
|
|
|
titleBarStyle: 'hidden-inset'
|
2016-03-25 23:03:49 +03:00
|
|
|
})
|
|
|
|
var contentSize = w.getContentSize()
|
|
|
|
assert.equal(contentSize[1], 400)
|
|
|
|
})
|
|
|
|
})
|
2016-02-09 21:12:45 +03:00
|
|
|
|
2016-06-29 19:37:10 +03:00
|
|
|
describe('enableLargerThanScreen" option', function () {
|
2016-01-12 05:40:23 +03:00
|
|
|
if (process.platform === 'linux') {
|
2016-03-25 23:03:49 +03:00
|
|
|
return
|
2016-01-12 05:40:23 +03:00
|
|
|
}
|
2016-02-09 21:12:45 +03:00
|
|
|
|
2016-03-25 23:03:49 +03:00
|
|
|
beforeEach(function () {
|
|
|
|
w.destroy()
|
2016-02-09 21:12:45 +03:00
|
|
|
w = new BrowserWindow({
|
2016-01-12 05:40:23 +03:00
|
|
|
show: true,
|
|
|
|
width: 400,
|
|
|
|
height: 400,
|
|
|
|
enableLargerThanScreen: true
|
2016-03-25 23:03:49 +03:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
it('can move the window out of screen', function () {
|
|
|
|
w.setPosition(-10, -10)
|
|
|
|
var after = w.getPosition()
|
|
|
|
assert.equal(after[0], -10)
|
|
|
|
assert.equal(after[1], -10)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('can set the window larger than screen', function () {
|
|
|
|
var size = screen.getPrimaryDisplay().size
|
|
|
|
size.width += 100
|
|
|
|
size.height += 100
|
|
|
|
w.setSize(size.width, size.height)
|
2016-09-08 23:46:55 +03:00
|
|
|
assertBoundsEqual(w.getSize(), [size.width, size.height])
|
2016-03-25 23:03:49 +03:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2016-10-27 21:54:27 +03:00
|
|
|
describe('"zoomToPageWidth" option', function () {
|
|
|
|
it('sets the window width to the page width when used', function () {
|
2016-11-29 21:56:58 +03:00
|
|
|
if (process.platform !== 'darwin') return
|
2016-10-27 21:54:27 +03:00
|
|
|
|
|
|
|
w.destroy()
|
|
|
|
w = new BrowserWindow({
|
|
|
|
show: false,
|
|
|
|
width: 500,
|
|
|
|
height: 400,
|
|
|
|
zoomToPageWidth: true
|
|
|
|
})
|
|
|
|
w.maximize()
|
|
|
|
assert.equal(w.getSize()[0], 500)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2017-03-30 23:46:58 +03:00
|
|
|
describe('"tabbingIdentifier" option', function () {
|
|
|
|
it('can be set on a window', function () {
|
|
|
|
w.destroy()
|
|
|
|
w = new BrowserWindow({
|
|
|
|
tabbingIdentifier: 'group1'
|
|
|
|
})
|
|
|
|
w.destroy()
|
|
|
|
w = new BrowserWindow({
|
|
|
|
tabbingIdentifier: 'group2',
|
|
|
|
frame: false
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2016-03-25 23:03:49 +03:00
|
|
|
describe('"web-preferences" option', function () {
|
|
|
|
afterEach(function () {
|
|
|
|
ipcMain.removeAllListeners('answer')
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('"preload" option', function () {
|
|
|
|
it('loads the script before other scripts in window', function (done) {
|
|
|
|
var preload = path.join(fixtures, 'module', 'set-global.js')
|
|
|
|
ipcMain.once('answer', function (event, test) {
|
|
|
|
assert.equal(test, 'preload')
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
w.destroy()
|
2016-01-12 05:40:23 +03:00
|
|
|
w = new BrowserWindow({
|
|
|
|
show: false,
|
|
|
|
webPreferences: {
|
|
|
|
preload: preload
|
|
|
|
}
|
2016-03-25 23:03:49 +03:00
|
|
|
})
|
|
|
|
w.loadURL('file://' + path.join(fixtures, 'api', 'preload.html'))
|
|
|
|
})
|
2016-09-08 20:34:09 +03:00
|
|
|
|
|
|
|
it('can successfully delete the Buffer global', function (done) {
|
|
|
|
var preload = path.join(fixtures, 'module', 'delete-buffer.js')
|
|
|
|
ipcMain.once('answer', function (event, test) {
|
|
|
|
assert.equal(test.toString(), 'buffer')
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
w.destroy()
|
|
|
|
w = new BrowserWindow({
|
|
|
|
show: false,
|
|
|
|
webPreferences: {
|
|
|
|
preload: preload
|
|
|
|
}
|
|
|
|
})
|
|
|
|
w.loadURL('file://' + path.join(fixtures, 'api', 'preload.html'))
|
|
|
|
})
|
2016-03-25 23:03:49 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
describe('"node-integration" option', function () {
|
|
|
|
it('disables node integration when specified to false', function (done) {
|
|
|
|
var preload = path.join(fixtures, 'module', 'send-later.js')
|
2017-02-07 00:54:41 +03:00
|
|
|
ipcMain.once('answer', function (event, typeofProcess, typeofBuffer) {
|
|
|
|
assert.equal(typeofProcess, 'undefined')
|
|
|
|
assert.equal(typeofBuffer, 'undefined')
|
2016-03-25 23:03:49 +03:00
|
|
|
done()
|
|
|
|
})
|
|
|
|
w.destroy()
|
2016-01-12 05:40:23 +03:00
|
|
|
w = new BrowserWindow({
|
|
|
|
show: false,
|
|
|
|
webPreferences: {
|
|
|
|
preload: preload,
|
|
|
|
nodeIntegration: false
|
|
|
|
}
|
2016-03-25 23:03:49 +03:00
|
|
|
})
|
|
|
|
w.loadURL('file://' + path.join(fixtures, 'api', 'blank.html'))
|
|
|
|
})
|
|
|
|
})
|
2016-09-26 23:40:45 +03:00
|
|
|
|
|
|
|
describe('"sandbox" option', function () {
|
|
|
|
function waitForEvents (emitter, events, callback) {
|
|
|
|
let count = events.length
|
|
|
|
for (let event of events) {
|
|
|
|
emitter.once(event, () => {
|
|
|
|
if (!--count) callback()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const preload = path.join(fixtures, 'module', 'preload-sandbox.js')
|
|
|
|
|
2016-09-30 18:36:51 +03:00
|
|
|
// http protocol to simulate accessing another domain. This is required
|
2016-09-26 23:40:45 +03:00
|
|
|
// because the code paths for cross domain popups is different.
|
|
|
|
function crossDomainHandler (request, callback) {
|
|
|
|
callback({
|
|
|
|
mimeType: 'text/html',
|
|
|
|
data: `<html><body><h1>${request.url}</h1></body></html>`
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
before(function (done) {
|
|
|
|
protocol.interceptStringProtocol('http', crossDomainHandler, function () {
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
after(function (done) {
|
|
|
|
protocol.uninterceptProtocol('http', function () {
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
it('exposes ipcRenderer to preload script', function (done) {
|
|
|
|
ipcMain.once('answer', function (event, test) {
|
|
|
|
assert.equal(test, 'preload')
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
w.destroy()
|
|
|
|
w = new BrowserWindow({
|
|
|
|
show: false,
|
|
|
|
webPreferences: {
|
|
|
|
sandbox: true,
|
|
|
|
preload: preload
|
|
|
|
}
|
|
|
|
})
|
|
|
|
w.loadURL('file://' + path.join(fixtures, 'api', 'preload.html'))
|
|
|
|
})
|
|
|
|
|
|
|
|
it('exposes "exit" event to preload script', function (done) {
|
|
|
|
w.destroy()
|
|
|
|
w = new BrowserWindow({
|
|
|
|
show: false,
|
|
|
|
webPreferences: {
|
|
|
|
sandbox: true,
|
|
|
|
preload: preload
|
|
|
|
}
|
|
|
|
})
|
|
|
|
let htmlPath = path.join(fixtures, 'api', 'sandbox.html?exit-event')
|
|
|
|
const pageUrl = 'file://' + htmlPath
|
|
|
|
w.loadURL(pageUrl)
|
|
|
|
ipcMain.once('answer', function (event, url) {
|
|
|
|
let expectedUrl = pageUrl
|
|
|
|
if (process.platform === 'win32') {
|
|
|
|
expectedUrl = 'file:///' + htmlPath.replace(/\\/g, '/')
|
|
|
|
}
|
|
|
|
assert.equal(url, expectedUrl)
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
it('should open windows in same domain with cross-scripting enabled', function (done) {
|
|
|
|
w.destroy()
|
|
|
|
w = new BrowserWindow({
|
|
|
|
show: false,
|
|
|
|
webPreferences: {
|
|
|
|
sandbox: true,
|
|
|
|
preload: preload
|
|
|
|
}
|
|
|
|
})
|
|
|
|
let htmlPath = path.join(fixtures, 'api', 'sandbox.html?window-open')
|
|
|
|
const pageUrl = 'file://' + htmlPath
|
|
|
|
w.loadURL(pageUrl)
|
|
|
|
w.webContents.once('new-window', (e, url, frameName, disposition, options) => {
|
|
|
|
let expectedUrl = pageUrl
|
|
|
|
if (process.platform === 'win32') {
|
|
|
|
expectedUrl = 'file:///' + htmlPath.replace(/\\/g, '/')
|
|
|
|
}
|
|
|
|
assert.equal(url, expectedUrl)
|
|
|
|
assert.equal(frameName, 'popup!')
|
|
|
|
assert.equal(options.x, 50)
|
|
|
|
assert.equal(options.y, 60)
|
|
|
|
assert.equal(options.width, 500)
|
|
|
|
assert.equal(options.height, 600)
|
|
|
|
ipcMain.once('answer', function (event, html) {
|
|
|
|
assert.equal(html, '<h1>scripting from opener</h1>')
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
it('should open windows in another domain with cross-scripting disabled', function (done) {
|
|
|
|
w.destroy()
|
|
|
|
w = new BrowserWindow({
|
|
|
|
show: false,
|
|
|
|
webPreferences: {
|
|
|
|
sandbox: true,
|
|
|
|
preload: preload
|
|
|
|
}
|
|
|
|
})
|
|
|
|
let htmlPath = path.join(fixtures, 'api', 'sandbox.html?window-open-external')
|
|
|
|
const pageUrl = 'file://' + htmlPath
|
2016-09-30 18:54:19 +03:00
|
|
|
let popupWindow
|
2016-09-26 23:40:45 +03:00
|
|
|
w.loadURL(pageUrl)
|
|
|
|
w.webContents.once('new-window', (e, url, frameName, disposition, options) => {
|
|
|
|
assert.equal(url, 'http://www.google.com/#q=electron')
|
|
|
|
assert.equal(options.x, 55)
|
|
|
|
assert.equal(options.y, 65)
|
|
|
|
assert.equal(options.width, 505)
|
|
|
|
assert.equal(options.height, 605)
|
|
|
|
ipcMain.once('child-loaded', function (event, openerIsNull, html) {
|
|
|
|
assert(openerIsNull)
|
|
|
|
assert.equal(html, '<h1>http://www.google.com/#q=electron</h1>')
|
|
|
|
ipcMain.once('answer', function (event, exceptionMessage) {
|
|
|
|
assert(/Blocked a frame with origin/.test(exceptionMessage))
|
2016-09-30 18:50:41 +03:00
|
|
|
|
2016-09-30 18:54:19 +03:00
|
|
|
// FIXME this popup window should be closed in sandbox.html
|
2016-11-29 22:06:22 +03:00
|
|
|
closeWindow(popupWindow, {assertSingleWindow: false}).then(() => {
|
2016-09-30 18:54:19 +03:00
|
|
|
popupWindow = null
|
|
|
|
done()
|
|
|
|
})
|
2016-09-26 23:40:45 +03:00
|
|
|
})
|
|
|
|
w.webContents.send('child-loaded')
|
|
|
|
})
|
|
|
|
})
|
2016-09-30 18:50:41 +03:00
|
|
|
|
|
|
|
app.once('browser-window-created', function (event, window) {
|
2016-09-30 18:54:19 +03:00
|
|
|
popupWindow = window
|
2016-09-30 18:50:41 +03:00
|
|
|
})
|
2016-09-26 23:40:45 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
it('should set ipc event sender correctly', function (done) {
|
|
|
|
w.destroy()
|
|
|
|
w = new BrowserWindow({
|
|
|
|
show: false,
|
|
|
|
webPreferences: {
|
|
|
|
sandbox: true,
|
|
|
|
preload: preload
|
|
|
|
}
|
|
|
|
})
|
|
|
|
let htmlPath = path.join(fixtures, 'api', 'sandbox.html?verify-ipc-sender')
|
|
|
|
const pageUrl = 'file://' + htmlPath
|
|
|
|
w.loadURL(pageUrl)
|
|
|
|
w.webContents.once('new-window', (e, url, frameName, disposition, options) => {
|
|
|
|
let parentWc = w.webContents
|
|
|
|
let childWc = options.webContents
|
|
|
|
assert.notEqual(parentWc, childWc)
|
|
|
|
ipcMain.once('parent-ready', function (event) {
|
|
|
|
assert.equal(parentWc, event.sender)
|
|
|
|
parentWc.send('verified')
|
|
|
|
})
|
|
|
|
ipcMain.once('child-ready', function (event) {
|
|
|
|
assert.equal(childWc, event.sender)
|
|
|
|
childWc.send('verified')
|
|
|
|
})
|
|
|
|
waitForEvents(ipcMain, [
|
|
|
|
'parent-answer',
|
|
|
|
'child-answer'
|
|
|
|
], done)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('event handling', function () {
|
|
|
|
it('works for window events', function (done) {
|
|
|
|
waitForEvents(w, [
|
|
|
|
'page-title-updated'
|
|
|
|
], done)
|
|
|
|
w.loadURL('file://' + path.join(fixtures, 'api', 'sandbox.html?window-events'))
|
|
|
|
})
|
|
|
|
|
|
|
|
it('works for web contents events', function (done) {
|
|
|
|
waitForEvents(w.webContents, [
|
|
|
|
'did-navigate',
|
|
|
|
'did-fail-load',
|
|
|
|
'did-stop-loading'
|
|
|
|
], done)
|
|
|
|
w.loadURL('file://' + path.join(fixtures, 'api', 'sandbox.html?webcontents-stop'))
|
|
|
|
waitForEvents(w.webContents, [
|
|
|
|
'did-finish-load',
|
|
|
|
'did-frame-finish-load',
|
|
|
|
'did-navigate-in-page',
|
|
|
|
'will-navigate',
|
|
|
|
'did-start-loading',
|
|
|
|
'did-stop-loading',
|
|
|
|
'did-frame-finish-load',
|
|
|
|
'dom-ready'
|
|
|
|
], done)
|
|
|
|
w.loadURL('file://' + path.join(fixtures, 'api', 'sandbox.html?webcontents-events'))
|
|
|
|
})
|
|
|
|
})
|
2016-12-08 04:33:28 +03:00
|
|
|
|
|
|
|
it('can print to PDF', function (done) {
|
|
|
|
w.destroy()
|
|
|
|
w = new BrowserWindow({
|
|
|
|
show: false,
|
|
|
|
webPreferences: {
|
|
|
|
sandbox: true,
|
|
|
|
preload: preload
|
|
|
|
}
|
|
|
|
})
|
|
|
|
w.loadURL('data:text/html,%3Ch1%3EHello%2C%20World!%3C%2Fh1%3E')
|
|
|
|
w.webContents.once('did-finish-load', function () {
|
|
|
|
w.webContents.printToPDF({}, function (error, data) {
|
|
|
|
assert.equal(error, null)
|
|
|
|
assert.equal(data instanceof Buffer, true)
|
|
|
|
assert.notEqual(data.length, 0)
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
})
|
2016-09-26 23:40:45 +03:00
|
|
|
})
|
2017-01-11 02:34:29 +03:00
|
|
|
|
|
|
|
it('supports calling preventDefault on new-window events', (done) => {
|
|
|
|
w.destroy()
|
|
|
|
w = new BrowserWindow({
|
|
|
|
show: false,
|
|
|
|
webPreferences: {
|
2017-01-12 21:28:02 +03:00
|
|
|
sandbox: true
|
2017-01-11 02:34:29 +03:00
|
|
|
}
|
|
|
|
})
|
|
|
|
const initialWebContents = webContents.getAllWebContents()
|
|
|
|
ipcRenderer.send('prevent-next-new-window', w.webContents.id)
|
|
|
|
w.webContents.once('new-window', () => {
|
2017-01-11 02:46:58 +03:00
|
|
|
assert.deepEqual(webContents.getAllWebContents(), initialWebContents)
|
|
|
|
done()
|
2017-01-11 02:34:29 +03:00
|
|
|
})
|
|
|
|
w.loadURL('file://' + path.join(fixtures, 'pages', 'window-open.html'))
|
|
|
|
})
|
2016-09-26 23:40:45 +03:00
|
|
|
})
|
2016-03-25 23:03:49 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
describe('beforeunload handler', function () {
|
2016-05-23 07:28:16 +03:00
|
|
|
it('returning undefined would not prevent close', function (done) {
|
2016-08-03 23:10:26 +03:00
|
|
|
w.once('closed', function () {
|
2016-03-25 23:03:49 +03:00
|
|
|
done()
|
|
|
|
})
|
2016-05-23 07:28:16 +03:00
|
|
|
w.loadURL('file://' + path.join(fixtures, 'api', 'close-beforeunload-undefined.html'))
|
2016-03-25 23:03:49 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
it('returning false would prevent close', function (done) {
|
2016-08-03 23:10:26 +03:00
|
|
|
w.once('onbeforeunload', function () {
|
2016-03-25 23:03:49 +03:00
|
|
|
done()
|
|
|
|
})
|
|
|
|
w.loadURL('file://' + path.join(fixtures, 'api', 'close-beforeunload-false.html'))
|
|
|
|
})
|
|
|
|
|
|
|
|
it('returning empty string would prevent close', function (done) {
|
2016-08-03 23:10:26 +03:00
|
|
|
w.once('onbeforeunload', function () {
|
2016-03-25 23:03:49 +03:00
|
|
|
done()
|
|
|
|
})
|
|
|
|
w.loadURL('file://' + path.join(fixtures, 'api', 'close-beforeunload-empty-string.html'))
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('new-window event', function () {
|
2016-01-12 05:40:23 +03:00
|
|
|
if (isCI && process.platform === 'darwin') {
|
2016-03-25 23:03:49 +03:00
|
|
|
return
|
2016-01-12 05:40:23 +03:00
|
|
|
}
|
2016-02-09 21:12:45 +03:00
|
|
|
|
2016-03-25 23:03:49 +03:00
|
|
|
it('emits when window.open is called', function (done) {
|
2016-10-05 14:45:15 +03:00
|
|
|
w.webContents.once('new-window', function (e, url, frameName, disposition, options, additionalFeatures) {
|
2016-10-07 04:13:04 +03:00
|
|
|
e.preventDefault()
|
|
|
|
assert.equal(url, 'http://host/')
|
|
|
|
assert.equal(frameName, 'host')
|
|
|
|
assert.equal(additionalFeatures[0], 'this-is-not-a-standard-feature')
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
w.loadURL('file://' + fixtures + '/pages/window-open.html')
|
|
|
|
})
|
|
|
|
|
|
|
|
it('emits when window.open is called with no webPreferences', function (done) {
|
|
|
|
w.destroy()
|
|
|
|
w = new BrowserWindow({ show: false })
|
|
|
|
w.webContents.once('new-window', function (e, url, frameName, disposition, options, additionalFeatures) {
|
2016-03-25 23:03:49 +03:00
|
|
|
e.preventDefault()
|
|
|
|
assert.equal(url, 'http://host/')
|
|
|
|
assert.equal(frameName, 'host')
|
2016-10-05 14:45:15 +03:00
|
|
|
assert.equal(additionalFeatures[0], 'this-is-not-a-standard-feature')
|
2016-03-25 23:03:49 +03:00
|
|
|
done()
|
|
|
|
})
|
|
|
|
w.loadURL('file://' + fixtures + '/pages/window-open.html')
|
|
|
|
})
|
|
|
|
|
|
|
|
it('emits when link with target is called', function (done) {
|
|
|
|
w.webContents.once('new-window', function (e, url, frameName) {
|
|
|
|
e.preventDefault()
|
|
|
|
assert.equal(url, 'http://host/')
|
|
|
|
assert.equal(frameName, 'target')
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
w.loadURL('file://' + fixtures + '/pages/target-name.html')
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('maximize event', function () {
|
2016-01-12 05:40:23 +03:00
|
|
|
if (isCI) {
|
2016-03-25 23:03:49 +03:00
|
|
|
return
|
2016-01-12 05:40:23 +03:00
|
|
|
}
|
2016-02-09 21:12:45 +03:00
|
|
|
|
2016-03-25 23:03:49 +03:00
|
|
|
it('emits when window is maximized', function (done) {
|
|
|
|
w.once('maximize', function () {
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
w.show()
|
|
|
|
w.maximize()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('unmaximize event', function () {
|
2016-01-12 05:40:23 +03:00
|
|
|
if (isCI) {
|
2016-03-25 23:03:49 +03:00
|
|
|
return
|
2016-01-12 05:40:23 +03:00
|
|
|
}
|
2016-02-09 21:12:45 +03:00
|
|
|
|
2016-03-25 23:03:49 +03:00
|
|
|
it('emits when window is unmaximized', function (done) {
|
|
|
|
w.once('unmaximize', function () {
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
w.show()
|
|
|
|
w.maximize()
|
|
|
|
w.unmaximize()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('minimize event', function () {
|
2016-01-12 05:40:23 +03:00
|
|
|
if (isCI) {
|
2016-03-25 23:03:49 +03:00
|
|
|
return
|
2016-01-12 05:40:23 +03:00
|
|
|
}
|
2016-02-09 21:12:45 +03:00
|
|
|
|
2016-03-25 23:03:49 +03:00
|
|
|
it('emits when window is minimized', function (done) {
|
|
|
|
w.once('minimize', function () {
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
w.show()
|
|
|
|
w.minimize()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2017-04-03 19:44:26 +03:00
|
|
|
describe('sheet-begin event', function () {
|
|
|
|
if (process.platform !== 'darwin') {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
let sheet = null
|
|
|
|
|
|
|
|
afterEach(function () {
|
|
|
|
return closeWindow(sheet, {assertSingleWindow: false}).then(function () { sheet = null })
|
|
|
|
})
|
|
|
|
|
|
|
|
it('emits when window opens a sheet', function (done) {
|
|
|
|
w.show()
|
|
|
|
w.once('sheet-begin', function () {
|
|
|
|
sheet.close()
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
sheet = new BrowserWindow({
|
|
|
|
modal: true,
|
|
|
|
parent: w
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('sheet-end event', function () {
|
|
|
|
if (process.platform !== 'darwin') {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
let sheet = null
|
|
|
|
|
|
|
|
afterEach(function () {
|
|
|
|
return closeWindow(sheet, {assertSingleWindow: false}).then(function () { sheet = null })
|
|
|
|
})
|
|
|
|
|
|
|
|
it('emits when window has closed a sheet', function (done) {
|
|
|
|
w.show()
|
|
|
|
sheet = new BrowserWindow({
|
|
|
|
modal: true,
|
|
|
|
parent: w
|
|
|
|
})
|
|
|
|
w.once('sheet-end', function () {
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
sheet.close()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2016-03-25 23:03:49 +03:00
|
|
|
describe('beginFrameSubscription method', function () {
|
2016-06-26 05:53:58 +03:00
|
|
|
// This test is too slow, only test it on CI.
|
|
|
|
if (!isCI) return
|
2016-06-25 19:23:40 +03:00
|
|
|
|
2016-06-26 05:53:58 +03:00
|
|
|
it('subscribes to frame updates', function (done) {
|
|
|
|
let called = false
|
2016-06-25 19:23:40 +03:00
|
|
|
w.loadURL('file://' + fixtures + '/api/frame-subscriber.html')
|
|
|
|
w.webContents.on('dom-ready', function () {
|
|
|
|
w.webContents.beginFrameSubscription(function (data) {
|
2016-06-26 05:53:58 +03:00
|
|
|
// This callback might be called twice.
|
|
|
|
if (called) return
|
|
|
|
called = true
|
|
|
|
|
2016-06-25 19:23:40 +03:00
|
|
|
assert.notEqual(data.length, 0)
|
|
|
|
w.webContents.endFrameSubscription()
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
it('subscribes to frame updates (only dirty rectangle)', function (done) {
|
2016-06-26 05:53:58 +03:00
|
|
|
let called = false
|
2016-06-25 19:23:40 +03:00
|
|
|
w.loadURL('file://' + fixtures + '/api/frame-subscriber.html')
|
|
|
|
w.webContents.on('dom-ready', function () {
|
|
|
|
w.webContents.beginFrameSubscription(true, function (data) {
|
2016-06-26 05:53:58 +03:00
|
|
|
// This callback might be called twice.
|
|
|
|
if (called) return
|
|
|
|
called = true
|
|
|
|
|
2016-06-25 19:23:40 +03:00
|
|
|
assert.notEqual(data.length, 0)
|
|
|
|
w.webContents.endFrameSubscription()
|
|
|
|
done()
|
|
|
|
})
|
2016-03-25 23:03:49 +03:00
|
|
|
})
|
|
|
|
})
|
2016-06-25 19:23:40 +03:00
|
|
|
|
|
|
|
it('throws error when subscriber is not well defined', function (done) {
|
|
|
|
w.loadURL('file://' + fixtures + '/api/frame-subscriber.html')
|
2016-06-26 05:53:58 +03:00
|
|
|
try {
|
2016-06-25 19:23:40 +03:00
|
|
|
w.webContents.beginFrameSubscription(true, true)
|
2016-06-29 19:37:10 +03:00
|
|
|
} catch (e) {
|
2016-06-25 19:23:40 +03:00
|
|
|
done()
|
|
|
|
}
|
|
|
|
})
|
2016-03-25 23:03:49 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
describe('savePage method', function () {
|
|
|
|
const savePageDir = path.join(fixtures, 'save_page')
|
|
|
|
const savePageHtmlPath = path.join(savePageDir, 'save_page.html')
|
|
|
|
const savePageJsPath = path.join(savePageDir, 'save_page_files', 'test.js')
|
|
|
|
const savePageCssPath = path.join(savePageDir, 'save_page_files', 'test.css')
|
|
|
|
|
|
|
|
after(function () {
|
2016-01-13 12:12:47 +03:00
|
|
|
try {
|
2016-03-25 23:03:49 +03:00
|
|
|
fs.unlinkSync(savePageCssPath)
|
|
|
|
fs.unlinkSync(savePageJsPath)
|
|
|
|
fs.unlinkSync(savePageHtmlPath)
|
|
|
|
fs.rmdirSync(path.join(savePageDir, 'save_page_files'))
|
|
|
|
fs.rmdirSync(savePageDir)
|
2016-01-13 12:12:47 +03:00
|
|
|
} catch (e) {
|
2016-01-19 22:31:47 +03:00
|
|
|
// Ignore error
|
2016-01-13 12:12:47 +03:00
|
|
|
}
|
2016-03-25 23:03:49 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
it('should save page to disk', function (done) {
|
|
|
|
w.webContents.on('did-finish-load', function () {
|
|
|
|
w.webContents.savePage(savePageHtmlPath, 'HTMLComplete', function (error) {
|
|
|
|
assert.equal(error, null)
|
|
|
|
assert(fs.existsSync(savePageHtmlPath))
|
|
|
|
assert(fs.existsSync(savePageJsPath))
|
|
|
|
assert(fs.existsSync(savePageCssPath))
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
w.loadURL('file://' + fixtures + '/pages/save_page/index.html')
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('BrowserWindow options argument is optional', function () {
|
|
|
|
it('should create a window with default size (800x600)', function () {
|
|
|
|
w.destroy()
|
|
|
|
w = new BrowserWindow()
|
|
|
|
var size = w.getSize()
|
|
|
|
assert.equal(size[0], 800)
|
|
|
|
assert.equal(size[1], 600)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('window states', function () {
|
2016-08-15 22:30:26 +03:00
|
|
|
it('does not resize frameless windows when states change', function () {
|
|
|
|
w.destroy()
|
|
|
|
w = new BrowserWindow({
|
|
|
|
frame: false,
|
|
|
|
width: 300,
|
|
|
|
height: 200,
|
|
|
|
show: false
|
|
|
|
})
|
|
|
|
|
|
|
|
w.setMinimizable(false)
|
|
|
|
w.setMinimizable(true)
|
|
|
|
assert.deepEqual(w.getSize(), [300, 200])
|
|
|
|
|
|
|
|
w.setResizable(false)
|
|
|
|
w.setResizable(true)
|
|
|
|
assert.deepEqual(w.getSize(), [300, 200])
|
|
|
|
|
|
|
|
w.setMaximizable(false)
|
|
|
|
w.setMaximizable(true)
|
|
|
|
assert.deepEqual(w.getSize(), [300, 200])
|
|
|
|
|
|
|
|
w.setFullScreenable(false)
|
|
|
|
w.setFullScreenable(true)
|
|
|
|
assert.deepEqual(w.getSize(), [300, 200])
|
|
|
|
|
|
|
|
w.setClosable(false)
|
|
|
|
w.setClosable(true)
|
|
|
|
assert.deepEqual(w.getSize(), [300, 200])
|
|
|
|
})
|
|
|
|
|
2016-03-25 23:03:49 +03:00
|
|
|
describe('resizable state', function () {
|
|
|
|
it('can be changed with resizable option', function () {
|
|
|
|
w.destroy()
|
|
|
|
w = new BrowserWindow({show: false, resizable: false})
|
|
|
|
assert.equal(w.isResizable(), false)
|
2016-08-05 03:10:34 +03:00
|
|
|
|
|
|
|
if (process.platform === 'darwin') {
|
|
|
|
assert.equal(w.isMaximizable(), true)
|
|
|
|
}
|
2016-03-25 23:03:49 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
it('can be changed with setResizable method', function () {
|
|
|
|
assert.equal(w.isResizable(), true)
|
|
|
|
w.setResizable(false)
|
|
|
|
assert.equal(w.isResizable(), false)
|
|
|
|
w.setResizable(true)
|
|
|
|
assert.equal(w.isResizable(), true)
|
|
|
|
})
|
2017-01-09 21:00:52 +03:00
|
|
|
|
|
|
|
it('works for a frameless window', () => {
|
|
|
|
w.destroy()
|
|
|
|
w = new BrowserWindow({show: false, frame: false})
|
|
|
|
assert.equal(w.isResizable(), true)
|
|
|
|
|
|
|
|
if (process.platform === 'win32') {
|
|
|
|
w.destroy()
|
|
|
|
w = new BrowserWindow({show: false, thickFrame: false})
|
|
|
|
assert.equal(w.isResizable(), false)
|
|
|
|
}
|
|
|
|
})
|
2016-03-25 23:03:49 +03:00
|
|
|
})
|
2016-04-20 08:05:09 +03:00
|
|
|
|
|
|
|
describe('loading main frame state', function () {
|
|
|
|
it('is true when the main frame is loading', function (done) {
|
2016-06-29 19:37:10 +03:00
|
|
|
w.webContents.on('did-start-loading', function () {
|
2016-04-20 08:05:09 +03:00
|
|
|
assert.equal(w.webContents.isLoadingMainFrame(), true)
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
w.webContents.loadURL(server.url)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('is false when only a subframe is loading', function (done) {
|
2016-06-29 19:37:10 +03:00
|
|
|
w.webContents.once('did-finish-load', function () {
|
2016-04-20 08:05:09 +03:00
|
|
|
assert.equal(w.webContents.isLoadingMainFrame(), false)
|
2016-06-29 19:37:10 +03:00
|
|
|
w.webContents.on('did-start-loading', function () {
|
2016-04-20 08:05:09 +03:00
|
|
|
assert.equal(w.webContents.isLoadingMainFrame(), false)
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
w.webContents.executeJavaScript(`
|
|
|
|
var iframe = document.createElement('iframe')
|
|
|
|
iframe.src = '${server.url}/page2'
|
|
|
|
document.body.appendChild(iframe)
|
|
|
|
`)
|
|
|
|
})
|
|
|
|
w.webContents.loadURL(server.url)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('is true when navigating to pages from the same origin', function (done) {
|
2016-06-29 19:37:10 +03:00
|
|
|
w.webContents.once('did-finish-load', function () {
|
2016-04-20 08:05:09 +03:00
|
|
|
assert.equal(w.webContents.isLoadingMainFrame(), false)
|
2016-06-29 19:37:10 +03:00
|
|
|
w.webContents.on('did-start-loading', function () {
|
2016-04-20 08:05:09 +03:00
|
|
|
assert.equal(w.webContents.isLoadingMainFrame(), true)
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
w.webContents.loadURL(`${server.url}/page2`)
|
|
|
|
})
|
|
|
|
w.webContents.loadURL(server.url)
|
|
|
|
})
|
|
|
|
})
|
2016-03-25 23:03:49 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
describe('window states (excluding Linux)', function () {
|
2016-01-23 14:35:30 +03:00
|
|
|
// Not implemented on Linux.
|
2016-03-29 03:16:08 +03:00
|
|
|
if (process.platform === 'linux') return
|
2016-03-25 23:03:49 +03:00
|
|
|
|
|
|
|
describe('movable state', function () {
|
|
|
|
it('can be changed with movable option', function () {
|
|
|
|
w.destroy()
|
|
|
|
w = new BrowserWindow({show: false, movable: false})
|
|
|
|
assert.equal(w.isMovable(), false)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('can be changed with setMovable method', function () {
|
|
|
|
assert.equal(w.isMovable(), true)
|
|
|
|
w.setMovable(false)
|
|
|
|
assert.equal(w.isMovable(), false)
|
|
|
|
w.setMovable(true)
|
|
|
|
assert.equal(w.isMovable(), true)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('minimizable state', function () {
|
|
|
|
it('can be changed with minimizable option', function () {
|
|
|
|
w.destroy()
|
|
|
|
w = new BrowserWindow({show: false, minimizable: false})
|
|
|
|
assert.equal(w.isMinimizable(), false)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('can be changed with setMinimizable method', function () {
|
|
|
|
assert.equal(w.isMinimizable(), true)
|
|
|
|
w.setMinimizable(false)
|
|
|
|
assert.equal(w.isMinimizable(), false)
|
|
|
|
w.setMinimizable(true)
|
|
|
|
assert.equal(w.isMinimizable(), true)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('maximizable state', function () {
|
|
|
|
it('can be changed with maximizable option', function () {
|
|
|
|
w.destroy()
|
|
|
|
w = new BrowserWindow({show: false, maximizable: false})
|
|
|
|
assert.equal(w.isMaximizable(), false)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('can be changed with setMaximizable method', function () {
|
|
|
|
assert.equal(w.isMaximizable(), true)
|
|
|
|
w.setMaximizable(false)
|
|
|
|
assert.equal(w.isMaximizable(), false)
|
|
|
|
w.setMaximizable(true)
|
|
|
|
assert.equal(w.isMaximizable(), true)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('is not affected when changing other states', function () {
|
|
|
|
w.setMaximizable(false)
|
|
|
|
assert.equal(w.isMaximizable(), false)
|
|
|
|
w.setMinimizable(false)
|
|
|
|
assert.equal(w.isMaximizable(), false)
|
|
|
|
w.setClosable(false)
|
|
|
|
assert.equal(w.isMaximizable(), false)
|
2016-08-05 01:06:49 +03:00
|
|
|
|
|
|
|
w.setMaximizable(true)
|
|
|
|
assert.equal(w.isMaximizable(), true)
|
|
|
|
w.setClosable(true)
|
|
|
|
assert.equal(w.isMaximizable(), true)
|
|
|
|
w.setFullScreenable(false)
|
|
|
|
assert.equal(w.isMaximizable(), true)
|
|
|
|
w.setResizable(false)
|
|
|
|
assert.equal(w.isMaximizable(), true)
|
2016-03-25 23:03:49 +03:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('fullscreenable state', function () {
|
2016-06-18 16:26:26 +03:00
|
|
|
// Only implemented on macOS.
|
2016-03-29 03:16:08 +03:00
|
|
|
if (process.platform !== 'darwin') return
|
2016-03-25 23:03:49 +03:00
|
|
|
|
|
|
|
it('can be changed with fullscreenable option', function () {
|
|
|
|
w.destroy()
|
|
|
|
w = new BrowserWindow({show: false, fullscreenable: false})
|
|
|
|
assert.equal(w.isFullScreenable(), false)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('can be changed with setFullScreenable method', function () {
|
|
|
|
assert.equal(w.isFullScreenable(), true)
|
|
|
|
w.setFullScreenable(false)
|
|
|
|
assert.equal(w.isFullScreenable(), false)
|
|
|
|
w.setFullScreenable(true)
|
|
|
|
assert.equal(w.isFullScreenable(), true)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2017-01-14 02:05:04 +03:00
|
|
|
describe('kiosk state', function () {
|
|
|
|
// Only implemented on macOS.
|
|
|
|
if (process.platform !== 'darwin') return
|
|
|
|
|
2017-04-19 02:42:01 +03:00
|
|
|
it('can be changed with setKiosk method', function (done) {
|
2017-01-14 02:05:04 +03:00
|
|
|
w.destroy()
|
|
|
|
w = new BrowserWindow()
|
|
|
|
w.setKiosk(true)
|
|
|
|
assert.equal(w.isKiosk(), true)
|
2017-04-19 02:42:01 +03:00
|
|
|
|
|
|
|
w.once('enter-full-screen', () => {
|
|
|
|
w.setKiosk(false)
|
|
|
|
assert.equal(w.isKiosk(), false)
|
|
|
|
})
|
|
|
|
w.once('leave-full-screen', () => {
|
|
|
|
done()
|
|
|
|
})
|
2017-01-14 02:05:04 +03:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('fullscreen state', function () {
|
|
|
|
// Only implemented on macOS.
|
|
|
|
if (process.platform !== 'darwin') return
|
|
|
|
|
2017-01-24 19:29:50 +03:00
|
|
|
it('can be changed with setFullScreen method', function (done) {
|
2017-01-14 02:05:04 +03:00
|
|
|
w.destroy()
|
|
|
|
w = new BrowserWindow()
|
2017-01-24 19:29:50 +03:00
|
|
|
w.once('enter-full-screen', () => {
|
2017-01-24 22:22:25 +03:00
|
|
|
assert.equal(w.isFullScreen(), true)
|
2017-01-24 19:29:50 +03:00
|
|
|
w.setFullScreen(false)
|
2017-01-24 22:22:25 +03:00
|
|
|
})
|
|
|
|
w.once('leave-full-screen', () => {
|
2017-01-24 19:29:50 +03:00
|
|
|
assert.equal(w.isFullScreen(), false)
|
|
|
|
done()
|
|
|
|
})
|
2017-01-14 02:05:04 +03:00
|
|
|
w.setFullScreen(true)
|
|
|
|
})
|
|
|
|
|
2017-01-24 22:22:25 +03:00
|
|
|
it('should not be changed by setKiosk method', function (done) {
|
|
|
|
w.destroy()
|
|
|
|
w = new BrowserWindow()
|
|
|
|
w.once('enter-full-screen', () => {
|
|
|
|
assert.equal(w.isFullScreen(), true)
|
|
|
|
w.setKiosk(true)
|
|
|
|
w.setKiosk(false)
|
|
|
|
assert.equal(w.isFullScreen(), true)
|
|
|
|
w.setFullScreen(false)
|
|
|
|
})
|
|
|
|
w.once('leave-full-screen', () => {
|
|
|
|
assert.equal(w.isFullScreen(), false)
|
|
|
|
done()
|
|
|
|
})
|
2017-01-14 02:05:04 +03:00
|
|
|
w.setFullScreen(true)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2016-03-25 23:03:49 +03:00
|
|
|
describe('closable state', function () {
|
|
|
|
it('can be changed with closable option', function () {
|
|
|
|
w.destroy()
|
|
|
|
w = new BrowserWindow({show: false, closable: false})
|
|
|
|
assert.equal(w.isClosable(), false)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('can be changed with setClosable method', function () {
|
|
|
|
assert.equal(w.isClosable(), true)
|
|
|
|
w.setClosable(false)
|
|
|
|
assert.equal(w.isClosable(), false)
|
|
|
|
w.setClosable(true)
|
|
|
|
assert.equal(w.isClosable(), true)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('hasShadow state', function () {
|
2016-01-23 15:03:56 +03:00
|
|
|
// On Window there is no shadow by default and it can not be changed
|
|
|
|
// dynamically.
|
2016-03-25 23:03:49 +03:00
|
|
|
it('can be changed with hasShadow option', function () {
|
|
|
|
w.destroy()
|
2016-03-29 03:16:08 +03:00
|
|
|
let hasShadow = process.platform !== 'darwin'
|
2016-03-25 23:03:49 +03:00
|
|
|
w = new BrowserWindow({show: false, hasShadow: hasShadow})
|
|
|
|
assert.equal(w.hasShadow(), hasShadow)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('can be changed with setHasShadow method', function () {
|
2016-03-29 03:16:08 +03:00
|
|
|
if (process.platform !== 'darwin') return
|
2016-03-25 23:03:49 +03:00
|
|
|
|
|
|
|
assert.equal(w.hasShadow(), true)
|
|
|
|
w.setHasShadow(false)
|
|
|
|
assert.equal(w.hasShadow(), false)
|
|
|
|
w.setHasShadow(true)
|
|
|
|
assert.equal(w.hasShadow(), true)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2016-11-23 00:26:39 +03:00
|
|
|
describe('BrowserWindow.restore()', function () {
|
|
|
|
it('should restore the previous window size', function () {
|
|
|
|
if (w != null) w.destroy()
|
|
|
|
|
|
|
|
w = new BrowserWindow({
|
|
|
|
minWidth: 800,
|
|
|
|
width: 800
|
|
|
|
})
|
|
|
|
|
|
|
|
const initialSize = w.getSize()
|
|
|
|
w.minimize()
|
|
|
|
w.restore()
|
|
|
|
assertBoundsEqual(w.getSize(), initialSize)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('BrowserWindow.unmaximize()', function () {
|
|
|
|
it('should restore the previous window position', function () {
|
|
|
|
if (w != null) w.destroy()
|
|
|
|
w = new BrowserWindow()
|
|
|
|
|
|
|
|
const initialPosition = w.getPosition()
|
|
|
|
w.maximize()
|
|
|
|
w.unmaximize()
|
|
|
|
assertBoundsEqual(w.getPosition(), initialPosition)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2016-06-17 10:57:18 +03:00
|
|
|
describe('parent window', function () {
|
|
|
|
let c = null
|
|
|
|
|
|
|
|
beforeEach(function () {
|
|
|
|
if (c != null) c.destroy()
|
2016-06-19 06:10:25 +03:00
|
|
|
c = new BrowserWindow({show: false, parent: w})
|
2016-06-17 10:57:18 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
afterEach(function () {
|
|
|
|
if (c != null) c.destroy()
|
|
|
|
c = null
|
|
|
|
})
|
|
|
|
|
2016-06-19 06:06:08 +03:00
|
|
|
describe('parent option', function () {
|
|
|
|
it('sets parent window', function () {
|
|
|
|
assert.equal(c.getParentWindow(), w)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('adds window to child windows of parent', function () {
|
|
|
|
assert.deepEqual(w.getChildWindows(), [c])
|
|
|
|
})
|
|
|
|
|
|
|
|
it('removes from child windows of parent when window is closed', function (done) {
|
|
|
|
c.once('closed', () => {
|
|
|
|
assert.deepEqual(w.getChildWindows(), [])
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
c.close()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2016-06-17 10:57:18 +03:00
|
|
|
describe('win.setParentWindow(parent)', function () {
|
2016-06-19 09:47:27 +03:00
|
|
|
if (process.platform === 'win32') return
|
2016-06-19 06:06:08 +03:00
|
|
|
|
2016-06-19 06:10:25 +03:00
|
|
|
beforeEach(function () {
|
|
|
|
if (c != null) c.destroy()
|
|
|
|
c = new BrowserWindow({show: false})
|
|
|
|
})
|
|
|
|
|
2016-06-17 10:57:18 +03:00
|
|
|
it('sets parent window', function () {
|
|
|
|
assert.equal(w.getParentWindow(), null)
|
|
|
|
assert.equal(c.getParentWindow(), null)
|
|
|
|
c.setParentWindow(w)
|
|
|
|
assert.equal(c.getParentWindow(), w)
|
|
|
|
c.setParentWindow(null)
|
|
|
|
assert.equal(c.getParentWindow(), null)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('adds window to child windows of parent', function () {
|
|
|
|
assert.deepEqual(w.getChildWindows(), [])
|
|
|
|
c.setParentWindow(w)
|
|
|
|
assert.deepEqual(w.getChildWindows(), [c])
|
|
|
|
c.setParentWindow(null)
|
|
|
|
assert.deepEqual(w.getChildWindows(), [])
|
|
|
|
})
|
|
|
|
|
|
|
|
it('removes from child windows of parent when window is closed', function (done) {
|
|
|
|
c.once('closed', () => {
|
|
|
|
assert.deepEqual(w.getChildWindows(), [])
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
c.setParentWindow(w)
|
|
|
|
c.close()
|
|
|
|
})
|
|
|
|
})
|
2016-06-18 03:51:37 +03:00
|
|
|
|
2016-06-20 08:49:24 +03:00
|
|
|
describe('modal option', function () {
|
|
|
|
// The isEnabled API is not reliable on macOS.
|
|
|
|
if (process.platform === 'darwin') return
|
|
|
|
|
|
|
|
beforeEach(function () {
|
|
|
|
if (c != null) c.destroy()
|
|
|
|
c = new BrowserWindow({show: false, parent: w, modal: true})
|
|
|
|
})
|
|
|
|
|
2016-06-18 03:51:37 +03:00
|
|
|
it('disables parent window', function () {
|
|
|
|
assert.equal(w.isEnabled(), true)
|
2016-06-20 08:49:24 +03:00
|
|
|
c.show()
|
2016-06-18 03:51:37 +03:00
|
|
|
assert.equal(w.isEnabled(), false)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('enables parent window when closed', function (done) {
|
|
|
|
c.once('closed', () => {
|
|
|
|
assert.equal(w.isEnabled(), true)
|
|
|
|
done()
|
|
|
|
})
|
2016-06-20 08:49:24 +03:00
|
|
|
c.show()
|
2016-06-18 03:51:37 +03:00
|
|
|
c.close()
|
|
|
|
})
|
|
|
|
|
|
|
|
it('disables parent window recursively', function () {
|
2016-06-20 08:49:24 +03:00
|
|
|
let c2 = new BrowserWindow({show: false, parent: w, modal: true})
|
|
|
|
c.show()
|
2016-06-18 03:51:37 +03:00
|
|
|
assert.equal(w.isEnabled(), false)
|
2016-06-20 08:49:24 +03:00
|
|
|
c2.show()
|
|
|
|
assert.equal(w.isEnabled(), false)
|
|
|
|
c.destroy()
|
2016-06-18 03:51:37 +03:00
|
|
|
assert.equal(w.isEnabled(), false)
|
|
|
|
c2.destroy()
|
2016-06-20 08:49:24 +03:00
|
|
|
assert.equal(w.isEnabled(), true)
|
2016-06-18 03:51:37 +03:00
|
|
|
})
|
|
|
|
})
|
2016-06-17 10:57:18 +03:00
|
|
|
})
|
|
|
|
|
2016-03-25 23:03:49 +03:00
|
|
|
describe('window.webContents.send(channel, args...)', function () {
|
|
|
|
it('throws an error when the channel is missing', function () {
|
|
|
|
assert.throws(function () {
|
|
|
|
w.webContents.send()
|
|
|
|
}, 'Missing required channel argument')
|
|
|
|
|
|
|
|
assert.throws(function () {
|
|
|
|
w.webContents.send(null)
|
|
|
|
}, 'Missing required channel argument')
|
|
|
|
})
|
|
|
|
})
|
2016-02-16 07:30:42 +03:00
|
|
|
|
2016-02-04 04:08:46 +03:00
|
|
|
describe('dev tool extensions', function () {
|
2017-01-27 03:15:10 +03:00
|
|
|
let showPanelTimeoutId
|
2017-01-26 20:42:45 +03:00
|
|
|
|
|
|
|
const showLastDevToolsPanel = () => {
|
|
|
|
w.webContents.once('devtools-opened', function () {
|
2017-01-27 03:15:10 +03:00
|
|
|
const show = function () {
|
2017-01-26 20:59:07 +03:00
|
|
|
if (w == null || w.isDestroyed()) {
|
2017-01-26 20:56:40 +03:00
|
|
|
return
|
|
|
|
}
|
|
|
|
const {devToolsWebContents} = w
|
|
|
|
if (devToolsWebContents == null || devToolsWebContents.isDestroyed()) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-01-27 03:15:10 +03:00
|
|
|
const showLastPanel = function () {
|
2017-01-25 02:44:01 +03:00
|
|
|
const lastPanelId = UI.inspectorView._tabbedPane._tabs.peekLast().id
|
|
|
|
UI.inspectorView.showPanel(lastPanelId)
|
2017-01-26 20:42:45 +03:00
|
|
|
}
|
2017-01-27 03:15:10 +03:00
|
|
|
devToolsWebContents.executeJavaScript(`(${showLastPanel})()`, false, () => {
|
|
|
|
showPanelTimeoutId = setTimeout(show, 100)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
showPanelTimeoutId = setTimeout(show, 100)
|
2017-01-26 20:42:45 +03:00
|
|
|
})
|
|
|
|
}
|
2016-05-18 00:59:33 +03:00
|
|
|
|
2017-01-26 20:42:45 +03:00
|
|
|
afterEach(function () {
|
2017-01-27 03:15:10 +03:00
|
|
|
clearTimeout(showPanelTimeoutId)
|
2017-01-26 20:42:45 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
describe('BrowserWindow.addDevToolsExtension', function () {
|
2016-05-18 00:56:00 +03:00
|
|
|
beforeEach(function () {
|
|
|
|
BrowserWindow.removeDevToolsExtension('foo')
|
2016-06-10 19:24:00 +03:00
|
|
|
assert.equal(BrowserWindow.getDevToolsExtensions().hasOwnProperty('foo'), false)
|
2016-05-18 00:59:33 +03:00
|
|
|
|
|
|
|
var extensionPath = path.join(__dirname, 'fixtures', 'devtools-extensions', 'foo')
|
|
|
|
BrowserWindow.addDevToolsExtension(extensionPath)
|
2016-06-10 19:24:00 +03:00
|
|
|
assert.equal(BrowserWindow.getDevToolsExtensions().hasOwnProperty('foo'), true)
|
2016-05-18 00:59:33 +03:00
|
|
|
|
2017-01-26 20:42:45 +03:00
|
|
|
showLastDevToolsPanel()
|
2016-05-18 00:59:33 +03:00
|
|
|
|
|
|
|
w.loadURL('about:blank')
|
2016-05-18 00:56:00 +03:00
|
|
|
})
|
|
|
|
|
2016-06-09 19:44:49 +03:00
|
|
|
it('throws errors for missing manifest.json files', function () {
|
|
|
|
assert.throws(function () {
|
|
|
|
BrowserWindow.addDevToolsExtension(path.join(__dirname, 'does-not-exist'))
|
|
|
|
}, /ENOENT: no such file or directory/)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('throws errors for invalid manifest.json files', function () {
|
|
|
|
assert.throws(function () {
|
|
|
|
BrowserWindow.addDevToolsExtension(path.join(__dirname, 'fixtures', 'devtools-extensions', 'bad-manifest'))
|
|
|
|
}, /Unexpected token }/)
|
|
|
|
})
|
|
|
|
|
2016-06-28 23:02:03 +03:00
|
|
|
describe('when the devtools is docked', function () {
|
2016-05-18 00:56:00 +03:00
|
|
|
it('creates the extension', function (done) {
|
|
|
|
w.webContents.openDevTools({mode: 'bottom'})
|
|
|
|
|
|
|
|
ipcMain.once('answer', function (event, message) {
|
2016-06-07 00:36:01 +03:00
|
|
|
assert.equal(message.runtimeId, 'foo')
|
2016-06-07 20:38:01 +03:00
|
|
|
assert.equal(message.tabId, w.webContents.id)
|
2016-06-09 00:57:20 +03:00
|
|
|
assert.equal(message.i18nString, 'foo - bar (baz)')
|
2016-06-28 23:01:51 +03:00
|
|
|
assert.deepEqual(message.storageItems, {
|
2016-11-15 14:41:23 +03:00
|
|
|
local: {
|
|
|
|
set: {hello: 'world', world: 'hello'},
|
|
|
|
remove: {world: 'hello'},
|
|
|
|
clear: {}
|
|
|
|
},
|
|
|
|
sync: {
|
|
|
|
set: {foo: 'bar', bar: 'foo'},
|
|
|
|
remove: {foo: 'bar'},
|
|
|
|
clear: {}
|
|
|
|
}
|
2016-06-28 23:01:51 +03:00
|
|
|
})
|
2016-05-18 00:56:00 +03:00
|
|
|
done()
|
|
|
|
})
|
2016-05-18 00:52:45 +03:00
|
|
|
})
|
2016-05-18 00:56:00 +03:00
|
|
|
})
|
2016-05-18 00:52:45 +03:00
|
|
|
|
2016-05-18 00:56:00 +03:00
|
|
|
describe('when the devtools is undocked', function () {
|
|
|
|
it('creates the extension', function (done) {
|
|
|
|
w.webContents.openDevTools({mode: 'undocked'})
|
|
|
|
|
2016-06-07 00:36:01 +03:00
|
|
|
ipcMain.once('answer', function (event, message, extensionId) {
|
|
|
|
assert.equal(message.runtimeId, 'foo')
|
2016-06-07 20:38:01 +03:00
|
|
|
assert.equal(message.tabId, w.webContents.id)
|
2016-05-18 00:56:00 +03:00
|
|
|
done()
|
|
|
|
})
|
2016-05-18 00:52:45 +03:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2016-06-08 19:34:41 +03:00
|
|
|
it('works when used with partitions', function (done) {
|
|
|
|
if (w != null) {
|
|
|
|
w.destroy()
|
|
|
|
}
|
|
|
|
w = new BrowserWindow({
|
|
|
|
show: false,
|
|
|
|
webPreferences: {
|
|
|
|
partition: 'temp'
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
var extensionPath = path.join(__dirname, 'fixtures', 'devtools-extensions', 'foo')
|
|
|
|
BrowserWindow.removeDevToolsExtension('foo')
|
|
|
|
BrowserWindow.addDevToolsExtension(extensionPath)
|
|
|
|
|
2017-01-26 20:42:45 +03:00
|
|
|
showLastDevToolsPanel()
|
2016-06-08 19:34:41 +03:00
|
|
|
|
|
|
|
w.loadURL('about:blank')
|
|
|
|
w.webContents.openDevTools({mode: 'bottom'})
|
|
|
|
|
|
|
|
ipcMain.once('answer', function (event, message) {
|
2016-12-06 20:25:55 +03:00
|
|
|
assert.equal(message.runtimeId, 'foo')
|
2016-06-08 19:34:41 +03:00
|
|
|
done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2016-02-04 04:08:46 +03:00
|
|
|
it('serializes the registered extensions on quit', function () {
|
2016-03-25 23:03:49 +03:00
|
|
|
var extensionName = 'foo'
|
|
|
|
var extensionPath = path.join(__dirname, 'fixtures', 'devtools-extensions', extensionName)
|
|
|
|
var serializedPath = path.join(app.getPath('userData'), 'DevTools Extensions')
|
|
|
|
|
|
|
|
BrowserWindow.addDevToolsExtension(extensionPath)
|
|
|
|
app.emit('will-quit')
|
|
|
|
assert.deepEqual(JSON.parse(fs.readFileSync(serializedPath)), [extensionPath])
|
|
|
|
|
|
|
|
BrowserWindow.removeDevToolsExtension(extensionName)
|
|
|
|
app.emit('will-quit')
|
|
|
|
assert.equal(fs.existsSync(serializedPath), false)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('window.webContents.executeJavaScript', function () {
|
|
|
|
var expected = 'hello, world!'
|
2016-10-11 08:47:09 +03:00
|
|
|
var expectedErrorMsg = 'woops!'
|
2016-10-24 10:19:45 +03:00
|
|
|
var code = `(() => "${expected}")()`
|
|
|
|
var asyncCode = `(() => new Promise(r => setTimeout(() => r("${expected}"), 500)))()`
|
|
|
|
var badAsyncCode = `(() => new Promise((r, e) => setTimeout(() => e("${expectedErrorMsg}"), 500)))()`
|
2016-03-25 23:03:49 +03:00
|
|
|
|
|
|
|
it('doesnt throw when no calback is provided', function () {
|
|
|
|
const result = ipcRenderer.sendSync('executeJavaScript', code, false)
|
|
|
|
assert.equal(result, 'success')
|
|
|
|
})
|
|
|
|
|
|
|
|
it('returns result when calback is provided', function (done) {
|
|
|
|
ipcRenderer.send('executeJavaScript', code, true)
|
|
|
|
ipcRenderer.once('executeJavaScript-response', function (event, result) {
|
|
|
|
assert.equal(result, expected)
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
})
|
2016-04-18 20:33:56 +03:00
|
|
|
|
2016-10-11 02:40:05 +03:00
|
|
|
it('returns result if the code returns an asyncronous promise', function (done) {
|
|
|
|
ipcRenderer.send('executeJavaScript', asyncCode, true)
|
|
|
|
ipcRenderer.once('executeJavaScript-response', function (event, result) {
|
|
|
|
assert.equal(result, expected)
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2017-03-06 21:49:23 +03:00
|
|
|
it('resolves the returned promise with the result when a callback is specified', function (done) {
|
2016-10-11 08:47:09 +03:00
|
|
|
ipcRenderer.send('executeJavaScript', code, true)
|
|
|
|
ipcRenderer.once('executeJavaScript-promise-response', function (event, result) {
|
|
|
|
assert.equal(result, expected)
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2017-03-06 21:49:23 +03:00
|
|
|
it('resolves the returned promise with the result when no callback is specified', function (done) {
|
|
|
|
ipcRenderer.send('executeJavaScript', code, false)
|
|
|
|
ipcRenderer.once('executeJavaScript-promise-response', function (event, result) {
|
|
|
|
assert.equal(result, expected)
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2016-10-11 08:47:09 +03:00
|
|
|
it('resolves the returned promise with the result if the code returns an asyncronous promise', function (done) {
|
|
|
|
ipcRenderer.send('executeJavaScript', asyncCode, true)
|
|
|
|
ipcRenderer.once('executeJavaScript-promise-response', function (event, result) {
|
|
|
|
assert.equal(result, expected)
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
it('rejects the returned promise if an async error is thrown', function (done) {
|
|
|
|
ipcRenderer.send('executeJavaScript', badAsyncCode, true)
|
|
|
|
ipcRenderer.once('executeJavaScript-promise-error', function (event, error) {
|
|
|
|
assert.equal(error, expectedErrorMsg)
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2016-04-18 20:33:56 +03:00
|
|
|
it('works after page load and during subframe load', function (done) {
|
2016-06-29 19:37:10 +03:00
|
|
|
w.webContents.once('did-finish-load', function () {
|
2016-04-18 20:33:56 +03:00
|
|
|
// initiate a sub-frame load, then try and execute script during it
|
|
|
|
w.webContents.executeJavaScript(`
|
|
|
|
var iframe = document.createElement('iframe')
|
2016-04-20 08:05:09 +03:00
|
|
|
iframe.src = '${server.url}/slow'
|
2016-04-18 20:33:56 +03:00
|
|
|
document.body.appendChild(iframe)
|
2016-06-29 19:37:10 +03:00
|
|
|
`, function () {
|
|
|
|
w.webContents.executeJavaScript('console.log(\'hello\')', function () {
|
2016-04-18 20:33:56 +03:00
|
|
|
done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
2016-04-20 08:05:09 +03:00
|
|
|
w.loadURL(server.url)
|
2016-04-18 20:33:56 +03:00
|
|
|
})
|
2016-04-27 23:24:08 +03:00
|
|
|
|
|
|
|
it('executes after page load', function (done) {
|
2016-06-29 19:37:10 +03:00
|
|
|
w.webContents.executeJavaScript(code, function (result) {
|
2016-04-27 23:24:08 +03:00
|
|
|
assert.equal(result, expected)
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
w.loadURL(server.url)
|
|
|
|
})
|
2016-08-08 19:42:43 +03:00
|
|
|
|
|
|
|
it('works with result objects that have DOM class prototypes', function (done) {
|
|
|
|
w.webContents.executeJavaScript('document.location', function (result) {
|
|
|
|
assert.equal(result.origin, server.url)
|
|
|
|
assert.equal(result.protocol, 'http:')
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
w.loadURL(server.url)
|
|
|
|
})
|
2016-03-25 23:03:49 +03:00
|
|
|
})
|
2016-07-31 18:10:53 +03:00
|
|
|
|
2016-11-29 00:03:33 +03:00
|
|
|
describe('previewFile', function () {
|
|
|
|
it('opens the path in Quick Look on macOS', function () {
|
2016-11-29 21:56:58 +03:00
|
|
|
if (process.platform !== 'darwin') return
|
2016-11-29 00:03:33 +03:00
|
|
|
|
|
|
|
assert.doesNotThrow(function () {
|
|
|
|
w.previewFile(__filename)
|
|
|
|
w.closeFilePreview()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2016-12-16 00:20:17 +03:00
|
|
|
describe('contextIsolation option', () => {
|
2017-01-12 03:36:59 +03:00
|
|
|
const expectedContextData = {
|
|
|
|
preloadContext: {
|
|
|
|
preloadProperty: 'number',
|
|
|
|
pageProperty: 'undefined',
|
|
|
|
typeofRequire: 'function',
|
|
|
|
typeofProcess: 'object',
|
|
|
|
typeofArrayPush: 'function',
|
|
|
|
typeofFunctionApply: 'function'
|
|
|
|
},
|
|
|
|
pageContext: {
|
|
|
|
preloadProperty: 'undefined',
|
|
|
|
pageProperty: 'string',
|
|
|
|
typeofRequire: 'undefined',
|
|
|
|
typeofProcess: 'undefined',
|
|
|
|
typeofArrayPush: 'number',
|
|
|
|
typeofFunctionApply: 'boolean',
|
|
|
|
typeofPreloadExecuteJavaScriptProperty: 'number',
|
2017-01-16 23:56:39 +03:00
|
|
|
typeofOpenedWindow: 'object',
|
|
|
|
documentHidden: true,
|
|
|
|
documentVisibilityState: 'hidden'
|
2017-01-12 03:36:59 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-10 02:18:47 +03:00
|
|
|
beforeEach(() => {
|
2016-12-13 22:47:54 +03:00
|
|
|
if (w != null) w.destroy()
|
2017-01-10 02:18:47 +03:00
|
|
|
w = new BrowserWindow({
|
|
|
|
show: false,
|
|
|
|
webPreferences: {
|
|
|
|
contextIsolation: true,
|
|
|
|
preload: path.join(fixtures, 'api', 'isolated-preload.js')
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
2016-12-13 22:47:54 +03:00
|
|
|
|
2017-01-10 02:18:47 +03:00
|
|
|
it('separates the page context from the Electron/preload context', (done) => {
|
2016-12-13 22:47:54 +03:00
|
|
|
ipcMain.once('isolated-world', (event, data) => {
|
2017-01-12 03:36:59 +03:00
|
|
|
assert.deepEqual(data, expectedContextData)
|
2016-12-13 22:47:54 +03:00
|
|
|
done()
|
|
|
|
})
|
2017-01-10 02:18:47 +03:00
|
|
|
w.loadURL('file://' + fixtures + '/api/isolated.html')
|
|
|
|
})
|
|
|
|
|
|
|
|
it('recreates the contexts on reload', (done) => {
|
|
|
|
w.webContents.once('did-finish-load', () => {
|
|
|
|
ipcMain.once('isolated-world', (event, data) => {
|
2017-01-12 03:36:59 +03:00
|
|
|
assert.deepEqual(data, expectedContextData)
|
2017-01-10 02:18:47 +03:00
|
|
|
done()
|
|
|
|
})
|
|
|
|
w.webContents.reload()
|
2016-12-13 22:47:54 +03:00
|
|
|
})
|
|
|
|
w.loadURL('file://' + fixtures + '/api/isolated.html')
|
|
|
|
})
|
2017-01-10 20:37:38 +03:00
|
|
|
|
|
|
|
it('enables context isolation on child windows', function (done) {
|
|
|
|
app.once('browser-window-created', function (event, window) {
|
|
|
|
assert.equal(window.webContents.getWebPreferences().contextIsolation, true)
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
w.loadURL('file://' + fixtures + '/pages/window-open.html')
|
|
|
|
})
|
2016-12-13 22:47:54 +03:00
|
|
|
})
|
|
|
|
|
2016-07-31 18:10:53 +03:00
|
|
|
describe('offscreen rendering', function () {
|
2016-08-03 04:27:55 +03:00
|
|
|
beforeEach(function () {
|
|
|
|
if (w != null) w.destroy()
|
|
|
|
w = new BrowserWindow({
|
2016-07-31 18:10:53 +03:00
|
|
|
show: false,
|
|
|
|
webPreferences: {
|
|
|
|
backgroundThrottling: false,
|
|
|
|
offscreen: true
|
|
|
|
}
|
|
|
|
})
|
2016-08-03 04:27:55 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
it('creates offscreen window', function (done) {
|
|
|
|
w.webContents.once('paint', function (event, rect, data, size) {
|
2016-07-31 18:10:53 +03:00
|
|
|
assert.notEqual(data.length, 0)
|
|
|
|
done()
|
|
|
|
})
|
2016-08-03 04:27:55 +03:00
|
|
|
w.loadURL('file://' + fixtures + '/api/offscreen-rendering.html')
|
2016-07-31 18:10:53 +03:00
|
|
|
})
|
|
|
|
|
2016-08-03 04:27:55 +03:00
|
|
|
describe('window.webContents.isOffscreen()', function () {
|
|
|
|
it('is true for offscreen type', function () {
|
|
|
|
w.loadURL('file://' + fixtures + '/api/offscreen-rendering.html')
|
|
|
|
assert.equal(w.webContents.isOffscreen(), true)
|
2016-07-31 18:10:53 +03:00
|
|
|
})
|
|
|
|
|
2016-08-03 04:27:55 +03:00
|
|
|
it('is false for regular window', function () {
|
|
|
|
let c = new BrowserWindow({show: false})
|
|
|
|
assert.equal(c.webContents.isOffscreen(), false)
|
|
|
|
c.destroy()
|
2016-07-31 18:10:53 +03:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2016-08-03 04:27:55 +03:00
|
|
|
describe('window.webContents.isPainting()', function () {
|
|
|
|
it('returns whether is currently painting', function (done) {
|
|
|
|
w.webContents.once('paint', function (event, rect, data, size) {
|
|
|
|
assert.equal(w.webContents.isPainting(), true)
|
2016-07-31 18:10:53 +03:00
|
|
|
done()
|
|
|
|
})
|
2016-08-03 04:27:55 +03:00
|
|
|
w.loadURL('file://' + fixtures + '/api/offscreen-rendering.html')
|
2016-07-31 18:10:53 +03:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2016-08-03 04:27:55 +03:00
|
|
|
describe('window.webContents.stopPainting()', function () {
|
2016-07-31 18:10:53 +03:00
|
|
|
it('stops painting', function (done) {
|
2016-08-03 04:27:55 +03:00
|
|
|
w.webContents.on('dom-ready', function () {
|
|
|
|
w.webContents.stopPainting()
|
|
|
|
assert.equal(w.webContents.isPainting(), false)
|
2016-07-31 18:10:53 +03:00
|
|
|
done()
|
|
|
|
})
|
2016-08-03 04:27:55 +03:00
|
|
|
w.loadURL('file://' + fixtures + '/api/offscreen-rendering.html')
|
2016-07-31 18:10:53 +03:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2016-08-03 04:27:55 +03:00
|
|
|
describe('window.webContents.startPainting()', function () {
|
2016-07-31 18:10:53 +03:00
|
|
|
it('starts painting', function (done) {
|
2016-08-03 04:27:55 +03:00
|
|
|
w.webContents.on('dom-ready', function () {
|
|
|
|
w.webContents.stopPainting()
|
|
|
|
w.webContents.startPainting()
|
|
|
|
w.webContents.once('paint', function (event, rect, data, size) {
|
|
|
|
assert.equal(w.webContents.isPainting(), true)
|
2016-07-31 18:10:53 +03:00
|
|
|
done()
|
|
|
|
})
|
|
|
|
})
|
2016-08-03 04:27:55 +03:00
|
|
|
w.loadURL('file://' + fixtures + '/api/offscreen-rendering.html')
|
2016-07-31 18:10:53 +03:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2016-08-03 04:27:55 +03:00
|
|
|
describe('window.webContents.getFrameRate()', function () {
|
2016-07-31 18:10:53 +03:00
|
|
|
it('has default frame rate', function (done) {
|
2016-08-03 04:27:55 +03:00
|
|
|
w.webContents.once('paint', function (event, rect, data, size) {
|
|
|
|
assert.equal(w.webContents.getFrameRate(), 60)
|
2016-07-31 18:10:53 +03:00
|
|
|
done()
|
|
|
|
})
|
2016-08-03 07:04:36 +03:00
|
|
|
w.loadURL('file://' + fixtures + '/api/offscreen-rendering.html')
|
2016-07-31 18:10:53 +03:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2016-08-03 04:27:55 +03:00
|
|
|
describe('window.webContents.setFrameRate(frameRate)', function () {
|
|
|
|
it('sets custom frame rate', function (done) {
|
|
|
|
w.webContents.on('dom-ready', function () {
|
|
|
|
w.webContents.setFrameRate(30)
|
|
|
|
w.webContents.once('paint', function (event, rect, data, size) {
|
|
|
|
assert.equal(w.webContents.getFrameRate(), 30)
|
2016-07-31 18:10:53 +03:00
|
|
|
done()
|
|
|
|
})
|
|
|
|
})
|
2016-08-03 04:27:55 +03:00
|
|
|
w.loadURL('file://' + fixtures + '/api/offscreen-rendering.html')
|
2016-07-31 18:10:53 +03:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
2016-03-25 23:03:49 +03:00
|
|
|
})
|
2016-09-08 23:31:01 +03:00
|
|
|
|
2016-09-08 23:39:15 +03:00
|
|
|
const assertBoundsEqual = (actual, expect) => {
|
2016-09-09 02:24:11 +03:00
|
|
|
if (!isScaleFactorRounding()) {
|
2016-09-08 23:31:01 +03:00
|
|
|
assert.deepEqual(expect, actual)
|
2016-09-08 23:33:43 +03:00
|
|
|
} else if (Array.isArray(actual)) {
|
2016-09-08 23:39:15 +03:00
|
|
|
assertWithinDelta(actual[0], expect[0], 1, 'x')
|
|
|
|
assertWithinDelta(actual[1], expect[1], 1, 'y')
|
2016-09-08 23:31:01 +03:00
|
|
|
} else {
|
2016-09-08 23:39:15 +03:00
|
|
|
assertWithinDelta(actual.x, expect.x, 1, 'x')
|
|
|
|
assertWithinDelta(actual.y, expect.y, 1, 'y')
|
|
|
|
assertWithinDelta(actual.width, expect.width, 1, 'width')
|
|
|
|
assertWithinDelta(actual.height, expect.height, 1, 'height')
|
2016-09-08 23:31:01 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-08 23:39:15 +03:00
|
|
|
const assertWithinDelta = (actual, expect, delta, label) => {
|
2016-09-08 23:46:55 +03:00
|
|
|
const result = Math.abs(actual - expect)
|
2016-09-08 23:31:01 +03:00
|
|
|
assert.ok(result <= delta, `${label} value of ${expect} was not within ${delta} of ${actual}`)
|
|
|
|
}
|
|
|
|
|
2016-09-09 02:24:11 +03:00
|
|
|
// Is the display's scale factor possibly causing rounding of pixel coordinate
|
|
|
|
// values?
|
|
|
|
const isScaleFactorRounding = () => {
|
2016-09-08 23:31:01 +03:00
|
|
|
const {scaleFactor} = screen.getPrimaryDisplay()
|
2016-09-09 02:24:11 +03:00
|
|
|
// Return true if scale factor is non-integer value
|
2016-09-09 03:12:53 +03:00
|
|
|
if (Math.round(scaleFactor) !== scaleFactor) return true
|
2016-09-09 02:24:11 +03:00
|
|
|
// Return true if scale factor is odd number above 2
|
|
|
|
return scaleFactor > 2 && scaleFactor % 2 === 1
|
2016-09-08 23:31:01 +03:00
|
|
|
}
|