Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 | 23x 23x 23x 23x 23x 23x 23x 23x 23x 23x 23x 23x 23x 40x 40x 8x 8x 8x 8x 8x 6x 6x 6x 6x 6x 6x 6x 6x 6x 6x 2x 2x 2x 2x 40x 40x 23x 20x 20x 20x 20x 1865x 195x 195x 195x 1670x 1670x 1670x 1865x 848x 848x 20x 20x 1365x 1365x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 168x 168x 168x 168x 168x 20x 168x 5x 148x 30x 143x 113x 113x 168x 20x 20x 20x 20x 6x 6x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 11x 11x 20x 20x 20x 20x 20x 23x 167x 167x 167x 20x 20x 167x 167x 167x 167x 167x 23x 23x 23x 23x | 'use strict'; const { FunctionPrototypeBind, SafeMap } = primordials; const { createHook, executionAsyncId, } = require('async_hooks'); const { codes: { ERR_TEST_FAILURE, }, } = require('internal/errors'); const { Test } = require('internal/test_runner/test'); function createProcessEventHandler(eventName, rootTest, testResources) { return (err) => { // Check if this error is coming from a test. If it is, fail the test. const test = testResources.get(executionAsyncId()); if (test !== undefined) { if (test.finished) { // If the test is already finished, report this as a top level // diagnostic since this is a malformed test. const msg = `Warning: Test "${test.name}" generated asynchronous ` + 'activity after the test ended. This activity created the error ' + `"${err}" and would have caused the test to fail, but instead ` + `triggered an ${eventName} event.`; rootTest.diagnostic(msg); return; } test.fail(new ERR_TEST_FAILURE(err, eventName)); test.postRun(); } }; } function setup(root) { const testResources = new SafeMap(); const hook = createHook({ init(asyncId, type, triggerAsyncId, resource) { if (resource instanceof Test) { testResources.set(asyncId, resource); return; } const parent = testResources.get(triggerAsyncId); if (parent !== undefined) { testResources.set(asyncId, parent); } }, destroy(asyncId) { testResources.delete(asyncId); } }); hook.enable(); const exceptionHandler = createProcessEventHandler('uncaughtException', root, testResources); const rejectionHandler = createProcessEventHandler('unhandledRejection', root, testResources); process.on('uncaughtException', exceptionHandler); process.on('unhandledRejection', rejectionHandler); process.on('beforeExit', () => { root.postRun(); let passCount = 0; let failCount = 0; let skipCount = 0; let todoCount = 0; for (let i = 0; i < root.subtests.length; i++) { const test = root.subtests[i]; // Check SKIP and TODO tests first, as those should not be counted as // failures. if (test.skipped) { skipCount++; } else if (test.isTodo) { todoCount++; } else if (!test.passed) { failCount++; } else { passCount++; } } root.reporter.plan(root.indent, root.subtests.length); for (let i = 0; i < root.diagnostics.length; i++) { root.reporter.diagnostic(root.indent, root.diagnostics[i]); } root.reporter.diagnostic(root.indent, `tests ${root.subtests.length}`); root.reporter.diagnostic(root.indent, `pass ${passCount}`); root.reporter.diagnostic(root.indent, `fail ${failCount}`); root.reporter.diagnostic(root.indent, `skipped ${skipCount}`); root.reporter.diagnostic(root.indent, `todo ${todoCount}`); root.reporter.diagnostic(root.indent, `duration_ms ${process.uptime()}`); root.reporter.push(null); hook.disable(); process.removeListener('unhandledRejection', rejectionHandler); process.removeListener('uncaughtException', exceptionHandler); if (failCount > 0) { process.exitCode = 1; } }); root.reporter.pipe(process.stdout); root.reporter.version(); } function test(name, options, fn) { // If this is the first test encountered, bootstrap the test harness. if (this.subtests.length === 0) { setup(this); } const subtest = this.createSubtest(name, options, fn); return subtest.start(); } const root = new Test({ name: '<root>' }); module.exports = FunctionPrototypeBind(test, root); |