-
-
Notifications
You must be signed in to change notification settings - Fork 769
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Calling replaceGetter invokes the original function #2589
Comments
Good repro! Thanks. |
Do you want to take a stab at it? I am guessing it is not a very hard fix. We have good test coverage. |
For this given replit if you print the source for the object whose getter is being replaced(using descriptor.get.toString()), the function has changed to the replacement. The console output you see is coming from line 246 in the function getFakeRestorers when the getter is executed to potentially set the field if forceAssignment is true. Logically it needs to execute this way because restorers need to resolve the getter to be able to restore the original value you had in that function. A good example is the test starting on line 1119 in sandbox-test where you have a variable that is being get and set by an object. Even if you try to delay the execution of the getter it will return you the most recent value of that variable, not the past value that needs to be restored. In the case that you just have simple output like a constant ('original' or 'fake') it's obviously different because you could get the descriptor for foo and then use the getter in that descriptor. From my understanding getters should be pretty simple and should avoid side effects to begin with, so the solution in my opinion here should be to avoid side effects in your getters. |
of creating restorerer function. Check for the odd case where we actually force setting a value through accessor functions and only look up the value at that time. The alternative would be more elaborate, check if the descriptor had a `get` or a `value` field, and then decide, but this should do the trick.
Describe the bug
Using
sinon.replaceGetter
correctly replaces the getter, but in the process it appears to invoke the originalget
function.This causes issues when the getter is non-trivial and relies on class state which may not be correctly setup in a test environment.
To Reproduce
Steps to reproduce the behavior:
sinon.replaceGetter
Reproduction here: https://replit.com/@egmacke/Sinon-replaceGetter-bug
Expected behavior
Expect that the getter is replaces without invoking the original implementation.
Context (please complete the following information):
npx envinfo --browsers --binaries
:The text was updated successfully, but these errors were encountered: