2013-07-17 08:28:14 +00:00
|
|
|
<html>
|
|
|
|
<head>
|
2013-08-27 03:37:06 +00:00
|
|
|
<meta name="referrer" content="always">
|
2014-04-29 03:51:49 +00:00
|
|
|
<link href="../node_modules/mocha/mocha.css" rel="stylesheet">
|
2013-08-25 08:23:40 +00:00
|
|
|
<script src="jquery-2.0.3.min.js"></script>
|
2013-07-17 08:28:14 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<div id="mocha"></div>
|
|
|
|
|
|
|
|
<script type="text/javascript" charset="utf-8">
|
|
|
|
(function() {
|
2013-12-15 09:02:43 +00:00
|
|
|
// Disable use of deprecated functions.
|
2017-12-28 11:18:33 +00:00
|
|
|
process.throwDeprecation = true
|
2013-12-15 09:02:43 +00:00
|
|
|
|
2017-12-28 11:18:33 +00:00
|
|
|
const path = require('path')
|
|
|
|
const electron = require('electron')
|
|
|
|
const { remote, ipcRenderer } = electron
|
2015-11-12 10:28:04 +00:00
|
|
|
|
2016-08-03 21:12:05 +00:00
|
|
|
// Check if we are running in CI.
|
2017-12-28 11:18:33 +00:00
|
|
|
const isCi = remote.getGlobal('isCi')
|
2013-08-21 03:35:39 +00:00
|
|
|
|
|
|
|
if (!isCi) {
|
2017-12-28 11:18:33 +00:00
|
|
|
const win = remote.getCurrentWindow()
|
|
|
|
win.show()
|
|
|
|
win.focus()
|
2013-08-21 03:35:39 +00:00
|
|
|
}
|
|
|
|
|
2013-07-31 02:55:47 +00:00
|
|
|
// Show DevTools.
|
2017-12-28 11:18:33 +00:00
|
|
|
document.oncontextmenu = (e) => {
|
|
|
|
remote.getCurrentWindow().inspectElement(e.clientX, e.clientY)
|
2013-07-31 02:55:47 +00:00
|
|
|
}
|
|
|
|
|
2013-08-21 03:15:22 +00:00
|
|
|
// Rediret all output to browser.
|
2013-08-25 12:54:15 +00:00
|
|
|
if (isCi) {
|
2017-12-28 11:18:33 +00:00
|
|
|
global.__defineGetter__('console', function () {
|
2013-08-25 12:54:15 +00:00
|
|
|
return {
|
2017-12-28 11:18:33 +00:00
|
|
|
log: (...args) => ipcRenderer.send('console.log', args),
|
|
|
|
error: (...args) => ipcRenderer.send('console.error', args)
|
2013-08-25 12:54:15 +00:00
|
|
|
}
|
2017-12-28 11:18:33 +00:00
|
|
|
})
|
2013-08-25 12:54:15 +00:00
|
|
|
}
|
2013-08-21 03:15:22 +00:00
|
|
|
|
2017-12-28 11:18:33 +00:00
|
|
|
const { Coverage } = require('electabul')
|
|
|
|
const Mocha = require('mocha')
|
2016-08-03 21:12:05 +00:00
|
|
|
|
2017-12-28 11:18:33 +00:00
|
|
|
const mocha = new Mocha(process.env.MOCHA_REPORTER
|
|
|
|
? { reporter: process.env.MOCHA_REPORTER }
|
|
|
|
: undefined)
|
2013-07-17 08:28:14 +00:00
|
|
|
|
2017-09-28 17:05:42 +00:00
|
|
|
if (!process.env.MOCHA_REPORTER) {
|
2017-12-28 11:18:33 +00:00
|
|
|
mocha.ui('bdd').reporter(isCi ? 'tap' : 'html')
|
2017-09-28 17:05:42 +00:00
|
|
|
}
|
2016-11-29 22:29:35 +00:00
|
|
|
mocha.timeout(isCi ? 30000 : 10000)
|
2013-07-17 08:28:14 +00:00
|
|
|
|
2017-12-28 11:18:33 +00:00
|
|
|
const query = Mocha.utils.parseQuery(window.location.search || '')
|
|
|
|
if (query.grep) mocha.grep(query.grep)
|
|
|
|
if (query.invert) mocha.invert()
|
2013-07-17 08:28:14 +00:00
|
|
|
|
|
|
|
// Read all test files.
|
2017-12-28 11:18:33 +00:00
|
|
|
const walker = require('walkdir').walk(path.dirname(__dirname), {
|
2013-12-06 14:23:02 +00:00
|
|
|
no_recurse: true
|
2017-12-28 11:18:33 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
const crashSpec = 'api-crash-reporter-spec.js'
|
|
|
|
|
|
|
|
// This allows you to run specific modules only:
|
|
|
|
// npm run test -match=menu
|
|
|
|
const moduleMatch = process.env.npm_config_match
|
|
|
|
? new RegExp(process.env.npm_config_match, 'g')
|
2018-01-01 06:46:39 +00:00
|
|
|
: null
|
2013-07-17 08:28:14 +00:00
|
|
|
|
2017-12-28 11:18:33 +00:00
|
|
|
walker.on('file', (file) => {
|
2018-01-01 06:46:39 +00:00
|
|
|
if (/-spec\.js$/.test(file) && !file.includes(crashSpec) &&
|
|
|
|
(!moduleMatch || moduleMatch.test(file))) {
|
2017-12-28 11:18:33 +00:00
|
|
|
mocha.addFile(file)
|
|
|
|
}
|
|
|
|
})
|
2013-07-17 08:28:14 +00:00
|
|
|
|
2017-12-28 11:18:33 +00:00
|
|
|
walker.on('end', () => {
|
|
|
|
if (!process.env.npm_config_match || new RegExp(process.env.npm_config_match, 'g').test(crashSpec)) {
|
|
|
|
mocha.addFile(path.resolve(__dirname, '..', crashSpec))
|
|
|
|
}
|
|
|
|
|
|
|
|
const runner = mocha.run(() => {
|
2016-11-22 21:06:18 +00:00
|
|
|
if (isCi && runner.hasOnly) {
|
|
|
|
try {
|
|
|
|
throw new Error('A spec contains a call to it.only or describe.only and should be reverted.')
|
|
|
|
} catch (error) {
|
|
|
|
console.error(error.stack || error)
|
|
|
|
}
|
|
|
|
ipcRenderer.send('process.exit', 1)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-12-28 11:18:33 +00:00
|
|
|
Mocha.utils.highlightTags('code')
|
2016-08-03 21:12:05 +00:00
|
|
|
|
2017-12-28 11:18:33 +00:00
|
|
|
const coverage = new Coverage({
|
2016-08-03 21:12:05 +00:00
|
|
|
libPath: path.join(__dirname, '..', '..', 'lib'),
|
|
|
|
outputPath: path.join(__dirname, '..', '..', 'out', 'coverage'),
|
|
|
|
formats: ['text', 'lcov']
|
2017-12-28 11:18:33 +00:00
|
|
|
})
|
2016-08-03 21:12:05 +00:00
|
|
|
coverage.addCoverage(ipcRenderer.sendSync('get-main-process-coverage'))
|
|
|
|
coverage.generateReport()
|
|
|
|
|
2017-12-28 11:18:33 +00:00
|
|
|
if (isCi) {
|
|
|
|
ipcRenderer.send('process.exit', runner.failures)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})()
|
2013-07-17 08:28:14 +00:00
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|