-
Notifications
You must be signed in to change notification settings - Fork 780
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Core: Introduce
QUnit.reporters.perf
(factor PerfReporter from suit…
…e.js) This is in preparation for QUnit 3 where we'd like to make it possible to enable this on Node.js, not just in browsers. For now it remains unconditionally enabled, and limited to browsers by virtue of using `window.performance`. The reason we don't enable it unconditionally is due to its overhead and that it should remain opt-in for QUnit CLI. I'm still gathering feedback, but it's possible we'll make it opt-in for browsers as well, depending how significant the overhead is and how often people use this. Another way might be to leave it on by default when using the HTML reporter, but that when someone configures the list of reporters explicitly (e.g. to enable "TAP" in the browser for a CI pipeline) to then automatically turn off any default reporters ("html" and "perf"). In other words, the default is html+perf, and we could offer a way in `QUnit.config` to enable tap declaratively in a way that, if you want to also have the html reporter, you have to list it explicitly.
- Loading branch information
Showing
7 changed files
with
102 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
import ConsoleReporter from './reporters/ConsoleReporter.js'; | ||
import TapReporter from './reporters/TapReporter.js'; | ||
import PerfReporter from './reporters/PerfReporter.js'; | ||
|
||
export default { | ||
console: ConsoleReporter, | ||
tap: TapReporter | ||
tap: TapReporter, | ||
perf: PerfReporter, | ||
console: ConsoleReporter | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
import { window } from '../globals'; | ||
import Logger from '../logger'; | ||
|
||
// TODO: Consider using globalThis instead of window, so that the reporter | ||
// works for Node.js as well. As this can add overhead, we should make | ||
// this opt-in before we enable it for CLI. | ||
// | ||
// QUnit 3 will switch from `window` to `globalThis` and then make it | ||
// no longer an implicit feature of the HTML Reporter, but rather let | ||
// it be opt-in via `QUnit.config.reporters = ['perf']` or something | ||
// like that. | ||
const nativePerf = ( | ||
window && | ||
typeof window.performance !== 'undefined' && | ||
// eslint-disable-next-line compat/compat -- Checked | ||
typeof window.performance.mark === 'function' && | ||
// eslint-disable-next-line compat/compat -- Checked | ||
typeof window.performance.measure === 'function' | ||
) | ||
? window.performance | ||
: undefined; | ||
|
||
const perf = { | ||
measure: nativePerf | ||
? function (comment, startMark, endMark) { | ||
// `performance.measure` may fail if the mark could not be found. | ||
// reasons a specific mark could not be found include: outside code invoking `performance.clearMarks()` | ||
try { | ||
nativePerf.measure(comment, startMark, endMark); | ||
} catch (ex) { | ||
Logger.warn('performance.measure could not be executed because of ', ex.message); | ||
} | ||
} | ||
: function () {}, | ||
mark: nativePerf ? nativePerf.mark.bind(nativePerf) : function () {} | ||
}; | ||
|
||
export default class PerfReporter { | ||
constructor (runner, options = {}) { | ||
this.perf = options.perf || perf; | ||
|
||
runner.on('runStart', this.onRunStart.bind(this)); | ||
runner.on('runEnd', this.onRunEnd.bind(this)); | ||
runner.on('suiteStart', this.onSuiteStart.bind(this)); | ||
runner.on('suiteEnd', this.onSuiteEnd.bind(this)); | ||
runner.on('testStart', this.onTestStart.bind(this)); | ||
runner.on('testEnd', this.onTestEnd.bind(this)); | ||
} | ||
|
||
static init (runner, options) { | ||
return new PerfReporter(runner, options); | ||
} | ||
|
||
onRunStart () { | ||
this.perf.mark('qunit_suite_0_start'); | ||
} | ||
|
||
onSuiteStart (suiteStart) { | ||
const suiteLevel = suiteStart.fullName.length; | ||
this.perf.mark(`qunit_suite_${suiteLevel}_start`); | ||
} | ||
|
||
onSuiteEnd (suiteEnd) { | ||
const suiteLevel = suiteEnd.fullName.length; | ||
const suiteName = suiteEnd.fullName.join(' – '); | ||
|
||
this.perf.mark(`qunit_suite_${suiteLevel}_end`); | ||
this.perf.measure(`QUnit Test Suite: ${suiteName}`, | ||
`qunit_suite_${suiteLevel}_start`, | ||
`qunit_suite_${suiteLevel}_end` | ||
); | ||
} | ||
|
||
onTestStart () { | ||
this.perf.mark('qunit_test_start'); | ||
} | ||
|
||
onTestEnd (testEnd) { | ||
this.perf.mark('qunit_test_end'); | ||
const testName = testEnd.fullName.join(' – '); | ||
|
||
this.perf.measure(`QUnit Test: ${testName}`, | ||
'qunit_test_start', | ||
'qunit_test_end' | ||
); | ||
} | ||
|
||
onRunEnd () { | ||
this.perf.mark('qunit_suite_0_end'); | ||
this.perf.measure('QUnit Test Run', 'qunit_suite_0_start', 'qunit_suite_0_end'); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters