Merge pull request #6718 from electron/coverage
Add JavaScript code coverage reporting
This commit is contained in:
commit
01d3f76f92
19 changed files with 149 additions and 77 deletions
|
@ -3,6 +3,7 @@
|
||||||
"version": "1.3.2",
|
"version": "1.3.2",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"asar": "^0.11.0",
|
"asar": "^0.11.0",
|
||||||
|
"electabul": "~0.0.4",
|
||||||
"request": "*",
|
"request": "*",
|
||||||
"standard": "^7.1.2",
|
"standard": "^7.1.2",
|
||||||
"standard-markdown": "^1.1.1"
|
"standard-markdown": "^1.1.1"
|
||||||
|
@ -24,6 +25,8 @@
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"bootstrap": "python ./script/bootstrap.py",
|
"bootstrap": "python ./script/bootstrap.py",
|
||||||
"build": "python ./script/build.py -c D",
|
"build": "python ./script/build.py -c D",
|
||||||
|
"coverage": "npm run instrument-code-coverage && npm test -- --use-instrumented-asar",
|
||||||
|
"instrument-code-coverage": "electabul instrument --input-path ./lib --output-path ./out/coverage/electron.asar",
|
||||||
"lint": "npm run lint-js && npm run lint-cpp && npm run lint-docs",
|
"lint": "npm run lint-js && npm run lint-cpp && npm run lint-docs",
|
||||||
"lint-js": "standard && cd spec && standard",
|
"lint-js": "standard && cd spec && standard",
|
||||||
"lint-cpp": "python ./script/cpplint.py",
|
"lint-cpp": "python ./script/cpplint.py",
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
|
|
||||||
import os
|
import os
|
||||||
|
import shutil
|
||||||
import subprocess
|
import subprocess
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
|
@ -24,17 +25,30 @@ def main():
|
||||||
electron = os.path.join(SOURCE_ROOT, 'out', config,
|
electron = os.path.join(SOURCE_ROOT, 'out', config,
|
||||||
'{0}.app'.format(PRODUCT_NAME), 'Contents',
|
'{0}.app'.format(PRODUCT_NAME), 'Contents',
|
||||||
'MacOS', PRODUCT_NAME)
|
'MacOS', PRODUCT_NAME)
|
||||||
|
resources_path = os.path.join(SOURCE_ROOT, 'out', config,
|
||||||
|
'{0}.app'.format(PRODUCT_NAME), 'Contents',
|
||||||
|
'Resources')
|
||||||
elif sys.platform == 'win32':
|
elif sys.platform == 'win32':
|
||||||
electron = os.path.join(SOURCE_ROOT, 'out', config,
|
electron = os.path.join(SOURCE_ROOT, 'out', config,
|
||||||
'{0}.exe'.format(PROJECT_NAME))
|
'{0}.exe'.format(PROJECT_NAME))
|
||||||
|
resources_path = os.path.join(SOURCE_ROOT, 'out', config)
|
||||||
else:
|
else:
|
||||||
electron = os.path.join(SOURCE_ROOT, 'out', config, PROJECT_NAME)
|
electron = os.path.join(SOURCE_ROOT, 'out', config, PROJECT_NAME)
|
||||||
|
resources_path = os.path.join(SOURCE_ROOT, 'out', config)
|
||||||
|
|
||||||
|
use_instrumented_asar = '--use-instrumented-asar' in sys.argv
|
||||||
returncode = 0
|
returncode = 0
|
||||||
try:
|
try:
|
||||||
|
if use_instrumented_asar:
|
||||||
|
install_instrumented_asar_file(resources_path)
|
||||||
subprocess.check_call([electron, 'spec'] + sys.argv[1:])
|
subprocess.check_call([electron, 'spec'] + sys.argv[1:])
|
||||||
except subprocess.CalledProcessError as e:
|
except subprocess.CalledProcessError as e:
|
||||||
returncode = e.returncode
|
returncode = e.returncode
|
||||||
|
except KeyboardInterrupt:
|
||||||
|
returncode = 0
|
||||||
|
|
||||||
|
if use_instrumented_asar:
|
||||||
|
restore_uninstrumented_asar_file(resources_path)
|
||||||
|
|
||||||
if os.environ.has_key('OUTPUT_TO_FILE'):
|
if os.environ.has_key('OUTPUT_TO_FILE'):
|
||||||
output_to_file = os.environ['OUTPUT_TO_FILE']
|
output_to_file = os.environ['OUTPUT_TO_FILE']
|
||||||
|
@ -46,5 +60,23 @@ def main():
|
||||||
return returncode
|
return returncode
|
||||||
|
|
||||||
|
|
||||||
|
def install_instrumented_asar_file(resources_path):
|
||||||
|
asar_path = os.path.join(resources_path, '{0}.asar'.format(PROJECT_NAME))
|
||||||
|
uninstrumented_path = os.path.join(resources_path,
|
||||||
|
'{0}-original.asar'.format(PROJECT_NAME))
|
||||||
|
instrumented_path = os.path.join(SOURCE_ROOT, 'out', 'coverage',
|
||||||
|
'{0}.asar'.format(PROJECT_NAME))
|
||||||
|
shutil.move(asar_path, uninstrumented_path)
|
||||||
|
shutil.move(instrumented_path, asar_path)
|
||||||
|
|
||||||
|
|
||||||
|
def restore_uninstrumented_asar_file(resources_path):
|
||||||
|
asar_path = os.path.join(resources_path, '{0}.asar'.format(PROJECT_NAME))
|
||||||
|
uninstrumented_path = os.path.join(resources_path,
|
||||||
|
'{0}-original.asar'.format(PROJECT_NAME))
|
||||||
|
os.remove(asar_path)
|
||||||
|
shutil.move(uninstrumented_path, asar_path)
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
sys.exit(main())
|
sys.exit(main())
|
||||||
|
|
|
@ -5,6 +5,7 @@ const net = require('net')
|
||||||
const fs = require('fs')
|
const fs = require('fs')
|
||||||
const path = require('path')
|
const path = require('path')
|
||||||
const {remote} = require('electron')
|
const {remote} = require('electron')
|
||||||
|
const {closeWindow} = require('./window-helpers')
|
||||||
|
|
||||||
const {app, BrowserWindow, ipcMain} = remote
|
const {app, BrowserWindow, ipcMain} = remote
|
||||||
|
|
||||||
|
@ -19,9 +20,6 @@ describe('electron module', function () {
|
||||||
let window = null
|
let window = null
|
||||||
|
|
||||||
beforeEach(function () {
|
beforeEach(function () {
|
||||||
if (window != null) {
|
|
||||||
window.destroy()
|
|
||||||
}
|
|
||||||
window = new BrowserWindow({
|
window = new BrowserWindow({
|
||||||
show: false,
|
show: false,
|
||||||
width: 400,
|
width: 400,
|
||||||
|
@ -30,10 +28,7 @@ describe('electron module', function () {
|
||||||
})
|
})
|
||||||
|
|
||||||
afterEach(function () {
|
afterEach(function () {
|
||||||
if (window != null) {
|
return closeWindow(window).then(function () { window = null })
|
||||||
window.destroy()
|
|
||||||
}
|
|
||||||
window = null
|
|
||||||
})
|
})
|
||||||
|
|
||||||
it('always returns the internal electron module', function (done) {
|
it('always returns the internal electron module', function (done) {
|
||||||
|
@ -191,10 +186,7 @@ describe('app module', function () {
|
||||||
})
|
})
|
||||||
|
|
||||||
afterEach(function () {
|
afterEach(function () {
|
||||||
if (w != null) {
|
return closeWindow(w).then(function () { w = null })
|
||||||
w.destroy()
|
|
||||||
}
|
|
||||||
w = null
|
|
||||||
})
|
})
|
||||||
|
|
||||||
it('can import certificate into platform cert store', function (done) {
|
it('can import certificate into platform cert store', function (done) {
|
||||||
|
@ -232,10 +224,7 @@ describe('app module', function () {
|
||||||
var w = null
|
var w = null
|
||||||
|
|
||||||
afterEach(function () {
|
afterEach(function () {
|
||||||
if (w != null) {
|
return closeWindow(w).then(function () { w = null })
|
||||||
w.destroy()
|
|
||||||
}
|
|
||||||
w = null
|
|
||||||
})
|
})
|
||||||
|
|
||||||
it('should emit browser-window-focus event when window is focused', function (done) {
|
it('should emit browser-window-focus event when window is focused', function (done) {
|
||||||
|
|
|
@ -5,6 +5,7 @@ const fs = require('fs')
|
||||||
const path = require('path')
|
const path = require('path')
|
||||||
const os = require('os')
|
const os = require('os')
|
||||||
const http = require('http')
|
const http = require('http')
|
||||||
|
const {closeWindow} = require('./window-helpers')
|
||||||
|
|
||||||
const remote = require('electron').remote
|
const remote = require('electron').remote
|
||||||
const screen = require('electron').screen
|
const screen = require('electron').screen
|
||||||
|
@ -38,9 +39,6 @@ describe('browser-window module', function () {
|
||||||
})
|
})
|
||||||
|
|
||||||
beforeEach(function () {
|
beforeEach(function () {
|
||||||
if (w != null) {
|
|
||||||
w.destroy()
|
|
||||||
}
|
|
||||||
w = new BrowserWindow({
|
w = new BrowserWindow({
|
||||||
show: false,
|
show: false,
|
||||||
width: 400,
|
width: 400,
|
||||||
|
@ -52,10 +50,7 @@ describe('browser-window module', function () {
|
||||||
})
|
})
|
||||||
|
|
||||||
afterEach(function () {
|
afterEach(function () {
|
||||||
if (w != null) {
|
return closeWindow(w).then(function () { w = null })
|
||||||
w.destroy()
|
|
||||||
}
|
|
||||||
w = null
|
|
||||||
})
|
})
|
||||||
|
|
||||||
describe('BrowserWindow.close()', function () {
|
describe('BrowserWindow.close()', function () {
|
||||||
|
@ -63,7 +58,7 @@ describe('browser-window module', function () {
|
||||||
w.webContents.on('did-finish-load', function () {
|
w.webContents.on('did-finish-load', function () {
|
||||||
w.close()
|
w.close()
|
||||||
})
|
})
|
||||||
w.on('closed', function () {
|
w.once('closed', function () {
|
||||||
var test = path.join(fixtures, 'api', 'unload')
|
var test = path.join(fixtures, 'api', 'unload')
|
||||||
var content = fs.readFileSync(test)
|
var content = fs.readFileSync(test)
|
||||||
fs.unlinkSync(test)
|
fs.unlinkSync(test)
|
||||||
|
@ -74,7 +69,7 @@ describe('browser-window module', function () {
|
||||||
})
|
})
|
||||||
|
|
||||||
it('should emit beforeunload handler', function (done) {
|
it('should emit beforeunload handler', function (done) {
|
||||||
w.on('onbeforeunload', function () {
|
w.once('onbeforeunload', function () {
|
||||||
done()
|
done()
|
||||||
})
|
})
|
||||||
w.webContents.on('did-finish-load', function () {
|
w.webContents.on('did-finish-load', function () {
|
||||||
|
@ -86,7 +81,7 @@ describe('browser-window module', function () {
|
||||||
|
|
||||||
describe('window.close()', function () {
|
describe('window.close()', function () {
|
||||||
it('should emit unload handler', function (done) {
|
it('should emit unload handler', function (done) {
|
||||||
w.on('closed', function () {
|
w.once('closed', function () {
|
||||||
var test = path.join(fixtures, 'api', 'close')
|
var test = path.join(fixtures, 'api', 'close')
|
||||||
var content = fs.readFileSync(test)
|
var content = fs.readFileSync(test)
|
||||||
fs.unlinkSync(test)
|
fs.unlinkSync(test)
|
||||||
|
@ -97,7 +92,7 @@ describe('browser-window module', function () {
|
||||||
})
|
})
|
||||||
|
|
||||||
it('should emit beforeunload handler', function (done) {
|
it('should emit beforeunload handler', function (done) {
|
||||||
w.on('onbeforeunload', function () {
|
w.once('onbeforeunload', function () {
|
||||||
done()
|
done()
|
||||||
})
|
})
|
||||||
w.loadURL('file://' + path.join(fixtures, 'api', 'close-beforeunload-false.html'))
|
w.loadURL('file://' + path.join(fixtures, 'api', 'close-beforeunload-false.html'))
|
||||||
|
@ -526,21 +521,21 @@ describe('browser-window module', function () {
|
||||||
|
|
||||||
describe('beforeunload handler', function () {
|
describe('beforeunload handler', function () {
|
||||||
it('returning undefined would not prevent close', function (done) {
|
it('returning undefined would not prevent close', function (done) {
|
||||||
w.on('closed', function () {
|
w.once('closed', function () {
|
||||||
done()
|
done()
|
||||||
})
|
})
|
||||||
w.loadURL('file://' + path.join(fixtures, 'api', 'close-beforeunload-undefined.html'))
|
w.loadURL('file://' + path.join(fixtures, 'api', 'close-beforeunload-undefined.html'))
|
||||||
})
|
})
|
||||||
|
|
||||||
it('returning false would prevent close', function (done) {
|
it('returning false would prevent close', function (done) {
|
||||||
w.on('onbeforeunload', function () {
|
w.once('onbeforeunload', function () {
|
||||||
done()
|
done()
|
||||||
})
|
})
|
||||||
w.loadURL('file://' + path.join(fixtures, 'api', 'close-beforeunload-false.html'))
|
w.loadURL('file://' + path.join(fixtures, 'api', 'close-beforeunload-false.html'))
|
||||||
})
|
})
|
||||||
|
|
||||||
it('returning empty string would prevent close', function (done) {
|
it('returning empty string would prevent close', function (done) {
|
||||||
w.on('onbeforeunload', function () {
|
w.once('onbeforeunload', function () {
|
||||||
done()
|
done()
|
||||||
})
|
})
|
||||||
w.loadURL('file://' + path.join(fixtures, 'api', 'close-beforeunload-empty-string.html'))
|
w.loadURL('file://' + path.join(fixtures, 'api', 'close-beforeunload-empty-string.html'))
|
||||||
|
@ -1002,6 +997,7 @@ describe('browser-window module', function () {
|
||||||
|
|
||||||
describe('dev tool extensions', function () {
|
describe('dev tool extensions', function () {
|
||||||
describe('BrowserWindow.addDevToolsExtension', function () {
|
describe('BrowserWindow.addDevToolsExtension', function () {
|
||||||
|
let showPanelIntevalId
|
||||||
this.timeout(10000)
|
this.timeout(10000)
|
||||||
|
|
||||||
beforeEach(function () {
|
beforeEach(function () {
|
||||||
|
@ -1013,7 +1009,7 @@ describe('browser-window module', function () {
|
||||||
assert.equal(BrowserWindow.getDevToolsExtensions().hasOwnProperty('foo'), true)
|
assert.equal(BrowserWindow.getDevToolsExtensions().hasOwnProperty('foo'), true)
|
||||||
|
|
||||||
w.webContents.on('devtools-opened', function () {
|
w.webContents.on('devtools-opened', function () {
|
||||||
var showPanelIntevalId = setInterval(function () {
|
showPanelIntevalId = setInterval(function () {
|
||||||
if (w && w.devToolsWebContents) {
|
if (w && w.devToolsWebContents) {
|
||||||
var showLastPanel = function () {
|
var showLastPanel = function () {
|
||||||
var lastPanelId = WebInspector.inspectorView._tabbedPane._tabs.peekLast().id
|
var lastPanelId = WebInspector.inspectorView._tabbedPane._tabs.peekLast().id
|
||||||
|
@ -1029,6 +1025,10 @@ describe('browser-window module', function () {
|
||||||
w.loadURL('about:blank')
|
w.loadURL('about:blank')
|
||||||
})
|
})
|
||||||
|
|
||||||
|
afterEach(function () {
|
||||||
|
clearInterval(showPanelIntevalId)
|
||||||
|
})
|
||||||
|
|
||||||
it('throws errors for missing manifest.json files', function () {
|
it('throws errors for missing manifest.json files', function () {
|
||||||
assert.throws(function () {
|
assert.throws(function () {
|
||||||
BrowserWindow.addDevToolsExtension(path.join(__dirname, 'does-not-exist'))
|
BrowserWindow.addDevToolsExtension(path.join(__dirname, 'does-not-exist'))
|
||||||
|
|
|
@ -3,6 +3,7 @@ const http = require('http')
|
||||||
const multiparty = require('multiparty')
|
const multiparty = require('multiparty')
|
||||||
const path = require('path')
|
const path = require('path')
|
||||||
const url = require('url')
|
const url = require('url')
|
||||||
|
const {closeWindow} = require('./window-helpers')
|
||||||
|
|
||||||
const remote = require('electron').remote
|
const remote = require('electron').remote
|
||||||
const app = remote.require('electron').app
|
const app = remote.require('electron').app
|
||||||
|
@ -20,7 +21,7 @@ describe('crash-reporter module', function () {
|
||||||
})
|
})
|
||||||
|
|
||||||
afterEach(function () {
|
afterEach(function () {
|
||||||
w.destroy()
|
return closeWindow(w).then(function () { w = null })
|
||||||
})
|
})
|
||||||
|
|
||||||
if (process.mas) {
|
if (process.mas) {
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
const assert = require('assert')
|
const assert = require('assert')
|
||||||
const path = require('path')
|
const path = require('path')
|
||||||
|
const {closeWindow} = require('./window-helpers')
|
||||||
const BrowserWindow = require('electron').remote.BrowserWindow
|
const BrowserWindow = require('electron').remote.BrowserWindow
|
||||||
|
|
||||||
describe('debugger module', function () {
|
describe('debugger module', function () {
|
||||||
|
@ -7,9 +8,6 @@ describe('debugger module', function () {
|
||||||
var w = null
|
var w = null
|
||||||
|
|
||||||
beforeEach(function () {
|
beforeEach(function () {
|
||||||
if (w != null) {
|
|
||||||
w.destroy()
|
|
||||||
}
|
|
||||||
w = new BrowserWindow({
|
w = new BrowserWindow({
|
||||||
show: false,
|
show: false,
|
||||||
width: 400,
|
width: 400,
|
||||||
|
@ -18,10 +16,7 @@ describe('debugger module', function () {
|
||||||
})
|
})
|
||||||
|
|
||||||
afterEach(function () {
|
afterEach(function () {
|
||||||
if (w != null) {
|
return closeWindow(w).then(function () { w = null })
|
||||||
w.destroy()
|
|
||||||
}
|
|
||||||
w = null
|
|
||||||
})
|
})
|
||||||
|
|
||||||
describe('debugger.attach', function () {
|
describe('debugger.attach', function () {
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
const assert = require('assert')
|
const assert = require('assert')
|
||||||
const path = require('path')
|
const path = require('path')
|
||||||
|
const {closeWindow} = require('./window-helpers')
|
||||||
|
|
||||||
const {ipcRenderer, remote} = require('electron')
|
const {ipcRenderer, remote} = require('electron')
|
||||||
const {ipcMain, webContents, BrowserWindow} = remote
|
const {ipcMain, webContents, BrowserWindow} = remote
|
||||||
|
@ -17,6 +18,12 @@ const comparePaths = function (path1, path2) {
|
||||||
describe('ipc module', function () {
|
describe('ipc module', function () {
|
||||||
var fixtures = path.join(__dirname, 'fixtures')
|
var fixtures = path.join(__dirname, 'fixtures')
|
||||||
|
|
||||||
|
var w = null
|
||||||
|
|
||||||
|
afterEach(function () {
|
||||||
|
return closeWindow(w).then(function () { w = null })
|
||||||
|
})
|
||||||
|
|
||||||
describe('remote.require', function () {
|
describe('remote.require', function () {
|
||||||
it('should returns same object for the same module', function () {
|
it('should returns same object for the same module', function () {
|
||||||
var dialog1 = remote.require('electron')
|
var dialog1 = remote.require('electron')
|
||||||
|
@ -302,19 +309,18 @@ describe('ipc module', function () {
|
||||||
it('does not crash when reply is not sent and browser is destroyed', function (done) {
|
it('does not crash when reply is not sent and browser is destroyed', function (done) {
|
||||||
this.timeout(10000)
|
this.timeout(10000)
|
||||||
|
|
||||||
var w = new BrowserWindow({
|
w = new BrowserWindow({
|
||||||
show: false
|
show: false
|
||||||
})
|
})
|
||||||
ipcMain.once('send-sync-message', function (event) {
|
ipcMain.once('send-sync-message', function (event) {
|
||||||
event.returnValue = null
|
event.returnValue = null
|
||||||
w.destroy()
|
|
||||||
done()
|
done()
|
||||||
})
|
})
|
||||||
w.loadURL('file://' + path.join(fixtures, 'api', 'send-sync-message.html'))
|
w.loadURL('file://' + path.join(fixtures, 'api', 'send-sync-message.html'))
|
||||||
})
|
})
|
||||||
|
|
||||||
it('does not crash when reply is sent by multiple listeners', function (done) {
|
it('does not crash when reply is sent by multiple listeners', function (done) {
|
||||||
var w = new BrowserWindow({
|
w = new BrowserWindow({
|
||||||
show: false
|
show: false
|
||||||
})
|
})
|
||||||
ipcMain.on('send-sync-message', function (event) {
|
ipcMain.on('send-sync-message', function (event) {
|
||||||
|
@ -322,7 +328,6 @@ describe('ipc module', function () {
|
||||||
})
|
})
|
||||||
ipcMain.on('send-sync-message', function (event) {
|
ipcMain.on('send-sync-message', function (event) {
|
||||||
event.returnValue = null
|
event.returnValue = null
|
||||||
w.destroy()
|
|
||||||
done()
|
done()
|
||||||
})
|
})
|
||||||
w.loadURL('file://' + path.join(fixtures, 'api', 'send-sync-message.html'))
|
w.loadURL('file://' + path.join(fixtures, 'api', 'send-sync-message.html'))
|
||||||
|
@ -354,12 +359,6 @@ describe('ipc module', function () {
|
||||||
})
|
})
|
||||||
|
|
||||||
describe('remote listeners', function () {
|
describe('remote listeners', function () {
|
||||||
var w = null
|
|
||||||
|
|
||||||
afterEach(function () {
|
|
||||||
w.destroy()
|
|
||||||
})
|
|
||||||
|
|
||||||
it('can be added and removed correctly', function () {
|
it('can be added and removed correctly', function () {
|
||||||
w = new BrowserWindow({
|
w = new BrowserWindow({
|
||||||
show: false
|
show: false
|
||||||
|
|
|
@ -2,6 +2,7 @@ const assert = require('assert')
|
||||||
const http = require('http')
|
const http = require('http')
|
||||||
const path = require('path')
|
const path = require('path')
|
||||||
const qs = require('querystring')
|
const qs = require('querystring')
|
||||||
|
const {closeWindow} = require('./window-helpers')
|
||||||
const remote = require('electron').remote
|
const remote = require('electron').remote
|
||||||
const {BrowserWindow, protocol, webContents} = remote
|
const {BrowserWindow, protocol, webContents} = remote
|
||||||
|
|
||||||
|
@ -896,11 +897,10 @@ describe('protocol module', function () {
|
||||||
|
|
||||||
afterEach(function (done) {
|
afterEach(function (done) {
|
||||||
protocol.unregisterProtocol(standardScheme, function () {
|
protocol.unregisterProtocol(standardScheme, function () {
|
||||||
if (w != null) {
|
closeWindow(w).then(function () {
|
||||||
w.destroy()
|
w = null
|
||||||
}
|
done()
|
||||||
w = null
|
})
|
||||||
done()
|
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
|
@ -2,6 +2,7 @@ const assert = require('assert')
|
||||||
const http = require('http')
|
const http = require('http')
|
||||||
const path = require('path')
|
const path = require('path')
|
||||||
const fs = require('fs')
|
const fs = require('fs')
|
||||||
|
const {closeWindow} = require('./window-helpers')
|
||||||
|
|
||||||
const {ipcRenderer, remote} = require('electron')
|
const {ipcRenderer, remote} = require('electron')
|
||||||
const {ipcMain, session, BrowserWindow} = remote
|
const {ipcMain, session, BrowserWindow} = remote
|
||||||
|
@ -14,9 +15,6 @@ describe('session module', function () {
|
||||||
var url = 'http://127.0.0.1'
|
var url = 'http://127.0.0.1'
|
||||||
|
|
||||||
beforeEach(function () {
|
beforeEach(function () {
|
||||||
if (w != null) {
|
|
||||||
w.destroy()
|
|
||||||
}
|
|
||||||
w = new BrowserWindow({
|
w = new BrowserWindow({
|
||||||
show: false,
|
show: false,
|
||||||
width: 400,
|
width: 400,
|
||||||
|
@ -25,10 +23,7 @@ describe('session module', function () {
|
||||||
})
|
})
|
||||||
|
|
||||||
afterEach(function () {
|
afterEach(function () {
|
||||||
if (w != null) {
|
return closeWindow(w).then(function () { w = null })
|
||||||
w.destroy()
|
|
||||||
}
|
|
||||||
w = null
|
|
||||||
})
|
})
|
||||||
|
|
||||||
describe('session.defaultSession', function () {
|
describe('session.defaultSession', function () {
|
||||||
|
@ -194,7 +189,7 @@ describe('session module', function () {
|
||||||
})
|
})
|
||||||
|
|
||||||
afterEach(function () {
|
afterEach(function () {
|
||||||
w.destroy()
|
return closeWindow(w).then(function () { w = null })
|
||||||
})
|
})
|
||||||
|
|
||||||
it('can cancel default download behavior', function (done) {
|
it('can cancel default download behavior', function (done) {
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
const assert = require('assert')
|
const assert = require('assert')
|
||||||
const path = require('path')
|
const path = require('path')
|
||||||
|
const {closeWindow} = require('./window-helpers')
|
||||||
|
|
||||||
const {remote} = require('electron')
|
const {remote} = require('electron')
|
||||||
const {BrowserWindow, webContents} = remote
|
const {BrowserWindow, webContents} = remote
|
||||||
|
@ -13,9 +14,6 @@ describe('webContents module', function () {
|
||||||
let w
|
let w
|
||||||
|
|
||||||
beforeEach(function () {
|
beforeEach(function () {
|
||||||
if (w != null) {
|
|
||||||
w.destroy()
|
|
||||||
}
|
|
||||||
w = new BrowserWindow({
|
w = new BrowserWindow({
|
||||||
show: false,
|
show: false,
|
||||||
width: 400,
|
width: 400,
|
||||||
|
@ -27,10 +25,7 @@ describe('webContents module', function () {
|
||||||
})
|
})
|
||||||
|
|
||||||
afterEach(function () {
|
afterEach(function () {
|
||||||
if (w != null) {
|
return closeWindow(w).then(function () { w = null })
|
||||||
w.destroy()
|
|
||||||
}
|
|
||||||
w = null
|
|
||||||
})
|
})
|
||||||
|
|
||||||
describe('getAllWebContents() API', function () {
|
describe('getAllWebContents() API', function () {
|
||||||
|
|
|
@ -2,6 +2,7 @@ const assert = require('assert')
|
||||||
const ChildProcess = require('child_process')
|
const ChildProcess = require('child_process')
|
||||||
const fs = require('fs')
|
const fs = require('fs')
|
||||||
const path = require('path')
|
const path = require('path')
|
||||||
|
const {closeWindow} = require('./window-helpers')
|
||||||
|
|
||||||
const nativeImage = require('electron').nativeImage
|
const nativeImage = require('electron').nativeImage
|
||||||
const remote = require('electron').remote
|
const remote = require('electron').remote
|
||||||
|
@ -794,8 +795,8 @@ describe('asar package', function () {
|
||||||
|
|
||||||
it('sets __dirname correctly', function (done) {
|
it('sets __dirname correctly', function (done) {
|
||||||
after(function () {
|
after(function () {
|
||||||
w.destroy()
|
|
||||||
ipcMain.removeAllListeners('dirname')
|
ipcMain.removeAllListeners('dirname')
|
||||||
|
return closeWindow(w).then(function () { w = null })
|
||||||
})
|
})
|
||||||
|
|
||||||
var w = new BrowserWindow({
|
var w = new BrowserWindow({
|
||||||
|
@ -818,8 +819,8 @@ describe('asar package', function () {
|
||||||
|
|
||||||
it('loads script tag in html', function (done) {
|
it('loads script tag in html', function (done) {
|
||||||
after(function () {
|
after(function () {
|
||||||
w.destroy()
|
|
||||||
ipcMain.removeAllListeners('ping')
|
ipcMain.removeAllListeners('ping')
|
||||||
|
return closeWindow(w).then(function () { w = null })
|
||||||
})
|
})
|
||||||
|
|
||||||
var w = new BrowserWindow({
|
var w = new BrowserWindow({
|
||||||
|
|
|
@ -54,7 +54,7 @@ describe('chromium feature', function () {
|
||||||
w = new BrowserWindow({
|
w = new BrowserWindow({
|
||||||
show: false
|
show: false
|
||||||
})
|
})
|
||||||
w.webContents.on('ipc-message', function (event, args) {
|
w.webContents.once('ipc-message', function (event, args) {
|
||||||
assert.deepEqual(args, ['hidden', true])
|
assert.deepEqual(args, ['hidden', true])
|
||||||
done()
|
done()
|
||||||
})
|
})
|
||||||
|
@ -69,7 +69,7 @@ describe('chromium feature', function () {
|
||||||
w = new BrowserWindow({
|
w = new BrowserWindow({
|
||||||
show: false
|
show: false
|
||||||
})
|
})
|
||||||
w.webContents.on('ipc-message', function (event, args) {
|
w.webContents.once('ipc-message', function (event, args) {
|
||||||
assert.deepEqual(args, ['hidden', false])
|
assert.deepEqual(args, ['hidden', false])
|
||||||
done()
|
done()
|
||||||
})
|
})
|
||||||
|
@ -278,7 +278,7 @@ describe('chromium feature', function () {
|
||||||
w = new BrowserWindow({
|
w = new BrowserWindow({
|
||||||
show: false
|
show: false
|
||||||
})
|
})
|
||||||
w.webContents.on('ipc-message', function (event, args) {
|
w.webContents.once('ipc-message', function (event, args) {
|
||||||
assert.deepEqual(args, ['opener', null])
|
assert.deepEqual(args, ['opener', null])
|
||||||
done()
|
done()
|
||||||
})
|
})
|
||||||
|
|
7
spec/fixtures/api/beforeunload-false.html
vendored
7
spec/fixtures/api/beforeunload-false.html
vendored
|
@ -1,11 +1,16 @@
|
||||||
<html>
|
<html>
|
||||||
<body>
|
<body>
|
||||||
<script type="text/javascript" charset="utf-8">
|
<script type="text/javascript" charset="utf-8">
|
||||||
|
// Only prevent unload on the first window close
|
||||||
|
var unloadPrevented = false;
|
||||||
window.onbeforeunload = function() {
|
window.onbeforeunload = function() {
|
||||||
setTimeout(function() {
|
setTimeout(function() {
|
||||||
require('electron').remote.getCurrentWindow().emit('onbeforeunload');
|
require('electron').remote.getCurrentWindow().emit('onbeforeunload');
|
||||||
}, 0);
|
}, 0);
|
||||||
return false;
|
if (!unloadPrevented) {
|
||||||
|
unloadPrevented = true;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -1,11 +1,17 @@
|
||||||
<html>
|
<html>
|
||||||
<body>
|
<body>
|
||||||
<script type="text/javascript" charset="utf-8">
|
<script type="text/javascript" charset="utf-8">
|
||||||
|
// Only prevent unload on the first window close
|
||||||
|
var unloadPrevented = false;
|
||||||
window.onbeforeunload = function() {
|
window.onbeforeunload = function() {
|
||||||
setTimeout(function() {
|
setTimeout(function() {
|
||||||
require('electron').remote.getCurrentWindow().emit('onbeforeunload');
|
require('electron').remote.getCurrentWindow().emit('onbeforeunload');
|
||||||
}, 0);
|
}, 0);
|
||||||
return '';
|
|
||||||
|
if (!unloadPrevented) {
|
||||||
|
unloadPrevented = true;
|
||||||
|
return '';
|
||||||
|
}
|
||||||
}
|
}
|
||||||
window.close();
|
window.close();
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -1,11 +1,16 @@
|
||||||
<html>
|
<html>
|
||||||
<body>
|
<body>
|
||||||
<script type="text/javascript" charset="utf-8">
|
<script type="text/javascript" charset="utf-8">
|
||||||
|
// Only prevent unload on the first window close
|
||||||
|
var unloadPrevented = false;
|
||||||
window.onbeforeunload = function() {
|
window.onbeforeunload = function() {
|
||||||
setTimeout(function() {
|
setTimeout(function() {
|
||||||
require('electron').remote.getCurrentWindow().emit('onbeforeunload');
|
require('electron').remote.getCurrentWindow().emit('onbeforeunload');
|
||||||
}, 0);
|
}, 0);
|
||||||
return false;
|
if (!unloadPrevented) {
|
||||||
|
unloadPrevented = true;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
window.close();
|
window.close();
|
||||||
</script>
|
</script>
|
||||||
|
|
11
spec/fixtures/devtools-extensions/foo/index.html
vendored
11
spec/fixtures/devtools-extensions/foo/index.html
vendored
|
@ -16,6 +16,15 @@
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function reportCoverage () {
|
||||||
|
var message = JSON.stringify({
|
||||||
|
pid: chrome.runtime.id,
|
||||||
|
coverage: window.__coverage__
|
||||||
|
})
|
||||||
|
var coverageMessage = `require('electron').ipcRenderer.send('report-coverage', ${message})`
|
||||||
|
window.chrome.devtools.inspectedWindow.eval(coverageMessage, function () {})
|
||||||
|
}
|
||||||
|
|
||||||
testStorage(function (syncItems, localItems) {
|
testStorage(function (syncItems, localItems) {
|
||||||
var message = JSON.stringify({
|
var message = JSON.stringify({
|
||||||
runtimeId: chrome.runtime.id,
|
runtimeId: chrome.runtime.id,
|
||||||
|
@ -26,6 +35,8 @@
|
||||||
sync: syncItems
|
sync: syncItems
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
reportCoverage()
|
||||||
var sendMessage = `require('electron').ipcRenderer.send('answer', ${message})`
|
var sendMessage = `require('electron').ipcRenderer.send('answer', ${message})`
|
||||||
window.chrome.devtools.inspectedWindow.eval(sendMessage, function () {})
|
window.chrome.devtools.inspectedWindow.eval(sendMessage, function () {})
|
||||||
})
|
})
|
||||||
|
|
|
@ -13,11 +13,12 @@
|
||||||
// Disable use of deprecated functions.
|
// Disable use of deprecated functions.
|
||||||
process.throwDeprecation = true;
|
process.throwDeprecation = true;
|
||||||
|
|
||||||
// Check if we are running in CI.
|
var path = require('path');
|
||||||
var electron = require ('electron');
|
var electron = require ('electron');
|
||||||
var remote = electron.remote;
|
var remote = electron.remote;
|
||||||
var ipcRenderer = electron.ipcRenderer;
|
var ipcRenderer = electron.ipcRenderer;
|
||||||
|
|
||||||
|
// Check if we are running in CI.
|
||||||
var isCi = remote.getGlobal('isCi')
|
var isCi = remote.getGlobal('isCi')
|
||||||
|
|
||||||
if (!isCi) {
|
if (!isCi) {
|
||||||
|
@ -47,6 +48,8 @@
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var Coverage = require('electabul').Coverage;
|
||||||
|
|
||||||
var Mocha = require('mocha');
|
var Mocha = require('mocha');
|
||||||
|
|
||||||
var mocha = new Mocha();
|
var mocha = new Mocha();
|
||||||
|
@ -81,6 +84,15 @@
|
||||||
walker.on('end', function() {
|
walker.on('end', function() {
|
||||||
var runner = mocha.run(function() {
|
var runner = mocha.run(function() {
|
||||||
Mocha.utils.highlightTags('code');
|
Mocha.utils.highlightTags('code');
|
||||||
|
|
||||||
|
var coverage = new Coverage({
|
||||||
|
libPath: path.join(__dirname, '..', '..', 'lib'),
|
||||||
|
outputPath: path.join(__dirname, '..', '..', 'out', 'coverage'),
|
||||||
|
formats: ['text', 'lcov']
|
||||||
|
});
|
||||||
|
coverage.addCoverage(ipcRenderer.sendSync('get-main-process-coverage'))
|
||||||
|
coverage.generateReport()
|
||||||
|
|
||||||
if (isCi)
|
if (isCi)
|
||||||
ipcRenderer.send('process.exit', runner.failures);
|
ipcRenderer.send('process.exit', runner.failures);
|
||||||
});
|
});
|
||||||
|
|
|
@ -8,6 +8,7 @@ const dialog = electron.dialog
|
||||||
const BrowserWindow = electron.BrowserWindow
|
const BrowserWindow = electron.BrowserWindow
|
||||||
const protocol = electron.protocol
|
const protocol = electron.protocol
|
||||||
|
|
||||||
|
const Coverage = require('electabul').Coverage
|
||||||
const fs = require('fs')
|
const fs = require('fs')
|
||||||
const path = require('path')
|
const path = require('path')
|
||||||
const url = require('url')
|
const url = require('url')
|
||||||
|
@ -63,6 +64,15 @@ ipcMain.on('echo', function (event, msg) {
|
||||||
event.returnValue = msg
|
event.returnValue = msg
|
||||||
})
|
})
|
||||||
|
|
||||||
|
const coverage = new Coverage({
|
||||||
|
outputPath: path.join(__dirname, '..', '..', 'out', 'coverage')
|
||||||
|
})
|
||||||
|
coverage.setup()
|
||||||
|
|
||||||
|
ipcMain.on('get-main-process-coverage', function (event) {
|
||||||
|
event.returnValue = global.__coverage__ || null
|
||||||
|
})
|
||||||
|
|
||||||
global.isCi = !!argv.ci
|
global.isCi = !!argv.ci
|
||||||
if (global.isCi) {
|
if (global.isCi) {
|
||||||
process.removeAllListeners('uncaughtException')
|
process.removeAllListeners('uncaughtException')
|
||||||
|
|
13
spec/window-helpers.js
Normal file
13
spec/window-helpers.js
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
exports.closeWindow = (window) => {
|
||||||
|
if (window == null || window.isDestroyed()) {
|
||||||
|
return Promise.resolve()
|
||||||
|
} else {
|
||||||
|
return new Promise((resolve, reject) => {
|
||||||
|
window.once('closed', () => {
|
||||||
|
resolve()
|
||||||
|
})
|
||||||
|
window.setClosable(true)
|
||||||
|
window.close()
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue