nstdlib-nightly
Version:
Node.js standard library converted to runtime-agnostic ES modules.
154 lines (131 loc) • 2.95 kB
JavaScript
// Source: https://github.com/nodejs/node/blob/65eff1eb/lib/internal/test_runner/tests_stream.js
import Readable from "nstdlib/lib/internal/streams/readable";
const kEmitMessage = Symbol("kEmitMessage");
class TestsStream extends Readable {
#buffer;
#canPush;
constructor() {
super({
__proto__: null,
objectMode: true,
highWaterMark: Number.MAX_SAFE_INTEGER,
});
this.#buffer = [];
this.#canPush = true;
}
_read() {
this.#canPush = true;
while (this.#buffer.length > 0) {
const obj = Array.prototype.shift.call(this.#buffer);
if (!this.#tryPush(obj)) {
return;
}
}
}
fail(nesting, loc, testNumber, name, details, directive) {
this[kEmitMessage]("test:fail", {
__proto__: null,
name,
nesting,
testNumber,
details,
...loc,
...directive,
});
}
ok(nesting, loc, testNumber, name, details, directive) {
this[kEmitMessage]("test:pass", {
__proto__: null,
name,
nesting,
testNumber,
details,
...loc,
...directive,
});
}
complete(nesting, loc, testNumber, name, details, directive) {
this[kEmitMessage]("test:complete", {
__proto__: null,
name,
nesting,
testNumber,
details,
...loc,
...directive,
});
}
plan(nesting, loc, count) {
this[kEmitMessage]("test:plan", {
__proto__: null,
nesting,
count,
...loc,
});
}
getSkip(reason = undefined) {
return { __proto__: null, skip: reason ?? true };
}
getTodo(reason = undefined) {
return { __proto__: null, todo: reason ?? true };
}
enqueue(nesting, loc, name) {
this[kEmitMessage]("test:enqueue", {
__proto__: null,
nesting,
name,
...loc,
});
}
dequeue(nesting, loc, name) {
this[kEmitMessage]("test:dequeue", {
__proto__: null,
nesting,
name,
...loc,
});
}
start(nesting, loc, name) {
this[kEmitMessage]("test:start", {
__proto__: null,
nesting,
name,
...loc,
});
}
diagnostic(nesting, loc, message) {
this[kEmitMessage]("test:diagnostic", {
__proto__: null,
nesting,
message,
...loc,
});
}
coverage(nesting, loc, summary) {
this[kEmitMessage]("test:coverage", {
__proto__: null,
nesting,
summary,
...loc,
});
}
end() {
this.#tryPush(null);
}
[kEmitMessage](type, data) {
this.emit(type, data);
// Disabling as this going to the user-land
// eslint-disable-next-line node-core/set-proto-to-null-in-object
this.#tryPush({ type, data });
}
#tryPush(message) {
if (this.#canPush) {
this.#canPush = this.push(message);
} else {
Array.prototype.push.call(this.#buffer, message);
}
return this.#canPush;
}
}
export { TestsStream };
export { kEmitMessage };