mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
bae14b7914
Our CI already run test files in parallel, having `node:test` spawns child processes concurrently could lead to oversubscribing the CI machine. This commit sets the `concurrency` depending on the presence of `TEST_PARALLEL` in the env, so running the test file individually still spawns child processes concurrently, and running the whole test suite does not oversubscribe the machine. PR-URL: https://github.com/nodejs/node/pull/52177 Reviewed-By: Vinícius Lourenço Claro Cardoso <contact@viniciusl.com.br> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
74 lines
2.2 KiB
JavaScript
74 lines
2.2 KiB
JavaScript
'use strict';
|
|
require('../common');
|
|
const assert = require('assert');
|
|
const { describe, it } = require('node:test');
|
|
|
|
|
|
describe('assert.CallTracker.getCalls()', { concurrency: !process.env.TEST_PARALLEL }, () => {
|
|
const tracker = new assert.CallTracker();
|
|
|
|
it('should return empty list when no calls', () => {
|
|
const fn = tracker.calls();
|
|
assert.deepStrictEqual(tracker.getCalls(fn), []);
|
|
});
|
|
|
|
it('should return calls', () => {
|
|
const fn = tracker.calls(() => {});
|
|
const arg1 = {};
|
|
const arg2 = {};
|
|
fn(arg1, arg2);
|
|
fn.call(arg2, arg2);
|
|
assert.deepStrictEqual(tracker.getCalls(fn), [
|
|
{ arguments: [arg1, arg2], thisArg: undefined },
|
|
{ arguments: [arg2], thisArg: arg2 }]);
|
|
});
|
|
|
|
it('should throw when getting calls of a non-tracked function', () => {
|
|
[() => {}, 1, true, null, undefined, {}, []].forEach((fn) => {
|
|
assert.throws(() => tracker.getCalls(fn), { code: 'ERR_INVALID_ARG_VALUE' });
|
|
});
|
|
});
|
|
|
|
it('should return a frozen object', () => {
|
|
const fn = tracker.calls();
|
|
fn();
|
|
const calls = tracker.getCalls(fn);
|
|
assert.throws(() => calls.push(1), /object is not extensible/);
|
|
assert.throws(() => Object.assign(calls[0], { foo: 'bar' }), /object is not extensible/);
|
|
assert.throws(() => calls[0].arguments.push(1), /object is not extensible/);
|
|
});
|
|
});
|
|
|
|
describe('assert.CallTracker.reset()', () => {
|
|
const tracker = new assert.CallTracker();
|
|
|
|
it('should reset calls', () => {
|
|
const fn = tracker.calls();
|
|
fn();
|
|
fn();
|
|
fn();
|
|
assert.strictEqual(tracker.getCalls(fn).length, 3);
|
|
tracker.reset(fn);
|
|
assert.deepStrictEqual(tracker.getCalls(fn), []);
|
|
});
|
|
|
|
it('should reset all calls', () => {
|
|
const fn1 = tracker.calls();
|
|
const fn2 = tracker.calls();
|
|
fn1();
|
|
fn2();
|
|
assert.strictEqual(tracker.getCalls(fn1).length, 1);
|
|
assert.strictEqual(tracker.getCalls(fn2).length, 1);
|
|
tracker.reset();
|
|
assert.deepStrictEqual(tracker.getCalls(fn1), []);
|
|
assert.deepStrictEqual(tracker.getCalls(fn2), []);
|
|
});
|
|
|
|
|
|
it('should throw when resetting a non-tracked function', () => {
|
|
[() => {}, 1, true, null, {}, []].forEach((fn) => {
|
|
assert.throws(() => tracker.reset(fn), { code: 'ERR_INVALID_ARG_VALUE' });
|
|
});
|
|
});
|
|
});
|