-
-
Notifications
You must be signed in to change notification settings - Fork 597
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
fix: Setting and unsetting property without saving Parse.Object
causes server error
#2117
base: alpha
Are you sure you want to change the base?
Conversation
Thanks for opening this pull request! |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## alpha #2117 +/- ##
==========================================
Coverage 100.00% 100.00%
==========================================
Files 61 64 +3
Lines 6186 6398 +212
Branches 1499 1543 +44
==========================================
+ Hits 6186 6398 +212 ☔ View full report in Codecov by Sentry. |
Can you check code coverage? Looks like you are missing a test. |
Another alternative solution that might be preferred is to put a similar fix into |
@mortenmo Good Work! Can you add an integration test to make sure it's not crashing? |
…as if there were a save.
Yes. Took a subset of related testcases and made versions that don't save between the object creation and setting/unsetting making sure the results are the same. Just had to figure out how to run them :) |
@dplewis type check was failing I assume from the changing CoreManager to ts. I put in a fix here but have to back that out if you fixed it somewhere else as well. |
Yeah sorry for the confusion. Can you revert changes unrelated to the issue? This PR looks good to me. I just to test it myself. Luckily I’ve been looking into dot notation and the internals recently so it shouldn’t take too long |
This reverts commit 25441f9.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
@mortenmo Can you rebase from alpha? ParseObject was converted to typescript and is causing conflicts in this PR. |
Made some git mistakes that my git skillz couldn't get me out of, but should be good now. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice Git skillz!
Parse.Object
causes server error
Isn't there more to this issue? In #1798 it's described that it causes an internal server error, which sounds like Parse Server needs a patch as well, to that doesn't crash on malformed request? |
@mtrezza I don't think so. The reason the server "barfed" on the Ops is that Mongo (maybe also Postgres?) doesn't support chained updates when you changed the "parent". When you change/set a property (eg It is unclear to me if the server should support an operation to |
I mean it should not be possible to cause the server to crash with internal server error. Even if the Parse JS SDK doesn't send this anymore, it would still be possible to send this to Parse Server via the REST API and cause the crash, right? |
When I tried it manually, server does respond with a 500, but to be clear doesn't completely crash. But yes, it is possible to send through and at a minimum a validation server side with a 400 response is probably better. |
I believe a 500 error may actually be a process crash. |
Pull Request
Issue
Closes: #1798
Approach
On the path of making my app work well offline, this was one more blocker.
The problem is that if you set a parent object
o.set('data', {a: b, b: 3})
and then set or unset anything ondata
(example:o.unset('data.a')
without saving between (or save failed for no connection), you get a server error onsave()
. 1798 indicates this needs to be fixed on client. What fails seems to be mongo doesn't support setting an object and then sub-properties in the same call which is what the server attempts to do in this case.This fix merges Ops if a "parent" Op exists locally and is not changed and applies the new Op to that parent. In the end this means that when sent to server it wont create the issue above and succeed even if subproperties were set/unset/incremented as a part of local operation before save.
Small(?) change to
ParseObject.set
with callingvalidPendingParentOp
that if the current Op attribute has dots (.
) it will look for pending parent Operations. If one is found,applyOpToParent
is called taking the new Op and applying the change to it locally. Put these new functions inParseOp
, but that might not be the best place for them (maybe ObjectStateController?).Tasks