2016-03-25 20:03:49 +00:00
|
|
|
const assert = require('assert')
|
|
|
|
const path = require('path')
|
2016-08-11 17:31:10 +00:00
|
|
|
const {closeWindow} = require('./window-helpers')
|
|
|
|
const {remote, webFrame} = require('electron')
|
|
|
|
const {BrowserWindow, protocol, ipcMain} = remote
|
2016-01-12 02:40:23 +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 */
|
|
|
|
|
2016-03-25 20:03:49 +00:00
|
|
|
describe('webFrame module', function () {
|
|
|
|
var fixtures = path.resolve(__dirname, 'fixtures')
|
2016-11-29 20:30:40 +00:00
|
|
|
var w = null
|
|
|
|
|
|
|
|
afterEach(function () {
|
|
|
|
return closeWindow(w).then(function () { w = null })
|
|
|
|
})
|
2016-11-22 16:43:14 +00:00
|
|
|
|
2016-03-25 20:03:49 +00:00
|
|
|
describe('webFrame.registerURLSchemeAsPrivileged', function () {
|
2016-10-18 20:52:41 +00:00
|
|
|
it('supports fetch api by default', function (done) {
|
2016-03-25 20:03:49 +00:00
|
|
|
var url = 'file://' + fixtures + '/assets/logo.png'
|
2016-03-30 21:56:30 +00:00
|
|
|
window.fetch(url).then(function (response) {
|
2016-03-25 20:03:49 +00:00
|
|
|
assert(response.ok)
|
|
|
|
done()
|
|
|
|
}).catch(function (err) {
|
|
|
|
done('unexpected error : ' + err)
|
|
|
|
})
|
|
|
|
})
|
2016-08-11 17:31:10 +00:00
|
|
|
|
2016-10-18 20:52:41 +00:00
|
|
|
it('allows CORS requests by default', function (done) {
|
|
|
|
allowsCORSRequests(200, `<html>
|
|
|
|
<script>
|
|
|
|
const {ipcRenderer, webFrame} = require('electron')
|
|
|
|
webFrame.registerURLSchemeAsPrivileged('cors1')
|
|
|
|
fetch('cors1://myhost').then(function (response) {
|
|
|
|
ipcRenderer.send('response', response.status)
|
|
|
|
}).catch(function (response) {
|
|
|
|
ipcRenderer.send('response', 'failed')
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
</html>`, done)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('allows CORS and fetch requests when specified', function (done) {
|
|
|
|
allowsCORSRequests(200, `<html>
|
|
|
|
<script>
|
|
|
|
const {ipcRenderer, webFrame} = require('electron')
|
|
|
|
webFrame.registerURLSchemeAsPrivileged('cors2', { supportFetchAPI: true, corsEnabled: true })
|
|
|
|
fetch('cors2://myhost').then(function (response) {
|
|
|
|
ipcRenderer.send('response', response.status)
|
|
|
|
}).catch(function (response) {
|
|
|
|
ipcRenderer.send('response', 'failed')
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
</html>`, done)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('allows CORS and fetch requests when half-specified', function (done) {
|
|
|
|
allowsCORSRequests(200, `<html>
|
|
|
|
<script>
|
|
|
|
const {ipcRenderer, webFrame} = require('electron')
|
|
|
|
webFrame.registerURLSchemeAsPrivileged('cors3', { supportFetchAPI: true })
|
|
|
|
fetch('cors3://myhost').then(function (response) {
|
|
|
|
ipcRenderer.send('response', response.status)
|
|
|
|
}).catch(function (response) {
|
|
|
|
ipcRenderer.send('response', 'failed')
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
</html>`, done)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('disallows CORS, but allows fetch requests, when specified', function (done) {
|
|
|
|
allowsCORSRequests('failed', `<html>
|
|
|
|
<script>
|
|
|
|
const {ipcRenderer, webFrame} = require('electron')
|
|
|
|
webFrame.registerURLSchemeAsPrivileged('cors4', { supportFetchAPI: true, corsEnabled: false })
|
|
|
|
fetch('cors4://myhost').then(function (response) {
|
|
|
|
ipcRenderer.send('response', response.status)
|
|
|
|
}).catch(function (response) {
|
|
|
|
ipcRenderer.send('response', 'failed')
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
</html>`, done)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('allows CORS, but disallows fetch requests, when specified', function (done) {
|
|
|
|
allowsCORSRequests('failed', `<html>
|
|
|
|
<script>
|
|
|
|
const {ipcRenderer, webFrame} = require('electron')
|
|
|
|
webFrame.registerURLSchemeAsPrivileged('cors5', { supportFetchAPI: false, corsEnabled: true })
|
|
|
|
fetch('cors5://myhost').then(function (response) {
|
|
|
|
ipcRenderer.send('response', response.status)
|
|
|
|
}).catch(function (response) {
|
|
|
|
ipcRenderer.send('response', 'failed')
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
</html>`, done)
|
|
|
|
})
|
|
|
|
|
|
|
|
var runNumber = 1
|
|
|
|
function allowsCORSRequests (expected, content, done) {
|
|
|
|
const standardScheme = remote.getGlobal('standardScheme') + runNumber
|
|
|
|
const corsScheme = 'cors' + runNumber
|
|
|
|
runNumber++
|
|
|
|
|
2016-08-11 17:31:10 +00:00
|
|
|
const url = standardScheme + '://fake-host'
|
2016-11-29 20:30:40 +00:00
|
|
|
w = new BrowserWindow({show: false})
|
2016-08-11 17:31:10 +00:00
|
|
|
after(function (done) {
|
2016-10-18 20:52:41 +00:00
|
|
|
protocol.unregisterProtocol(corsScheme, function () {
|
2016-08-11 17:31:10 +00:00
|
|
|
protocol.unregisterProtocol(standardScheme, function () {
|
2016-11-29 20:30:40 +00:00
|
|
|
done()
|
2016-08-11 17:31:10 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
const handler = function (request, callback) {
|
|
|
|
callback({data: content, mimeType: 'text/html'})
|
|
|
|
}
|
|
|
|
protocol.registerStringProtocol(standardScheme, handler, function (error) {
|
|
|
|
if (error) return done(error)
|
|
|
|
})
|
|
|
|
|
2016-10-18 20:52:41 +00:00
|
|
|
protocol.registerStringProtocol(corsScheme, function (request, callback) {
|
2016-08-11 17:31:10 +00:00
|
|
|
callback('')
|
|
|
|
}, function (error) {
|
|
|
|
if (error) return done(error)
|
|
|
|
ipcMain.once('response', function (event, status) {
|
2016-10-18 20:52:41 +00:00
|
|
|
assert.equal(status, expected)
|
2016-08-11 17:31:10 +00:00
|
|
|
done()
|
|
|
|
})
|
|
|
|
w.loadURL(url)
|
|
|
|
})
|
2016-10-18 20:52:41 +00:00
|
|
|
}
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|
2016-11-22 16:43:14 +00:00
|
|
|
|
|
|
|
it('supports setting the visual and layout zoom level limits', function () {
|
|
|
|
assert.doesNotThrow(function () {
|
|
|
|
webFrame.setZoomLevelLimits(1, 100)
|
|
|
|
webFrame.setVisualZoomLevelLimits(1, 50)
|
|
|
|
webFrame.setLayoutZoomLevelLimits(0, 25)
|
|
|
|
})
|
|
|
|
})
|
2018-01-26 00:02:50 +00:00
|
|
|
|
|
|
|
it('supports setting cache capacity', function () {
|
|
|
|
assert.doesNotThrow(function () {
|
|
|
|
webFrame.setCacheCapacity(1024)
|
|
|
|
})
|
|
|
|
})
|
2016-03-25 20:03:49 +00:00
|
|
|
})
|