Description
Is your feature request related to a problem?
Some frameworks and libraries (ex. Express.js middleware execution) rely on the function length and use it to decide the appropriate behaviour.
Currently, the CallTracker
Node.js API does not proxy the original function length. Thus, its application may be limited in certain circumstances.
import assert from 'assert';
function originalFn(a, b, c) { /* noop */ }
const tracker = new assert.CallTracker();
const trackedFn = tracker.calls(originalFn, 1);
console.log(`originalFn length: ${originalFn.length}`); // => 3
console.log(`trackedFn length: ${trackedFn.length}`); // => 0
Such widely popular test automation frameworks as Jest have built-in functionality to match the arity of a function when it is mocked. And they also consider the original function length as a source of truth.
So here, it is proposed to change the CallTracker.calls
wrapper function to match the arity of the original function.
I would be glad to work on this feature and create my first code contribution to the Node.js codebase! 😃
Describe the solution you'd like
To achieve the goal of this feature request, it is proposed to change the CallTracker.calls
wrapper function, and, for instance, redefine the length property of this function with:
ReflectDefineProperty(wrapperFunction, 'length', { value: originalFn.length });
Moreover, the wrapper function may also be refactored to use rest parameters instead of the arguments object.
Describe alternatives you've considered
It is an open question whether it is required to proxy call
, apply
and bind
methods calls to the original function, as well as to detect if the wrapper function is called as a constructor.
Activity
Mesteery commentedon Oct 16, 2021
@primeare Would you like to work on this?
primeare commentedon Oct 16, 2021
@Mesteery, yes, I do want to work on this feature implementation. Is there anything important or particular I should know prior to starting working on the implementation except accepting the Code of Conduct and reading the Contribution Guidelines?
aduh95 commentedon Oct 16, 2021
Hopefully documentation (such as in
doc/guides
) should contain all the info you need, but don't hesitate to ask questions if you get stuck. Don't forget to runmake lint-js-fix
before committing, and to add a test that fails with the currentmaster
and passes with the fix.github-actions commentedon Apr 15, 2022
There has been no activity on this feature request for 5 months and it is unlikely to be implemented. It will be closed 6 months after the last non-automated comment.
For more information on how the project manages feature requests, please consult the feature request management document.
y1d7ng commentedon Apr 28, 2022
see this github-actions hint will close this in 6 months, can I work on this? @aduh95 @Mesteery
aduh95 commentedon Apr 28, 2022
Sure, go for it :)
12 remaining items