-
- Downloads
[FIX] web: protect logged object in mockserver
Before this commit, when whe loglevel was set to 2 in the mock server, we simply logged the parameters in the console, then give the same object to the _performRpc route. Most of the time, it is not an issue, but nothing prevents the _performRpc route to modify the args object. And this happens with the /create route, which is very confusing: when we have a breakpoint/debugger in the mock rpc function in a test, we see the correct arguments passed to the function. However, if we look at the arguments in the console, after the end of the test, we see other values (for all fields) in the args.args[0] object. The solution is to simply deep copying everything, so any modification in the mockserver will not affect the logged object.
Please register or sign in to comment