-
Notifications
You must be signed in to change notification settings - Fork 46.9k
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 context stack misalignment caused by error replay #12508
Changes from all commits
f995034
1130f89
220af1e
602a206
03cc7c4
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,59 @@ | ||||||||||||||||||||||||||||||||||||||||||
/** | ||||||||||||||||||||||||||||||||||||||||||
* Copyright (c) 2013-present, Facebook, Inc. | ||||||||||||||||||||||||||||||||||||||||||
* | ||||||||||||||||||||||||||||||||||||||||||
* This source code is licensed under the MIT license found in the | ||||||||||||||||||||||||||||||||||||||||||
* LICENSE file in the root directory of this source tree. | ||||||||||||||||||||||||||||||||||||||||||
* | ||||||||||||||||||||||||||||||||||||||||||
* @emails react-core | ||||||||||||||||||||||||||||||||||||||||||
* @jest-environment node | ||||||||||||||||||||||||||||||||||||||||||
*/ | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
'use strict'; | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
let React; | ||||||||||||||||||||||||||||||||||||||||||
let ReactNoop; | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
describe('ReactIncrementalErrorReplay', () => { | ||||||||||||||||||||||||||||||||||||||||||
beforeEach(() => { | ||||||||||||||||||||||||||||||||||||||||||
jest.resetModules(); | ||||||||||||||||||||||||||||||||||||||||||
React = require('react'); | ||||||||||||||||||||||||||||||||||||||||||
ReactNoop = require('react-noop-renderer'); | ||||||||||||||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
function div(...children) { | ||||||||||||||||||||||||||||||||||||||||||
children = children.map(c => (typeof c === 'string' ? {text: c} : c)); | ||||||||||||||||||||||||||||||||||||||||||
return {type: 'div', children, prop: undefined}; | ||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
function span(prop) { | ||||||||||||||||||||||||||||||||||||||||||
return {type: 'span', children: [], prop}; | ||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
it('should fail gracefully on error in the host environment', () => { | ||||||||||||||||||||||||||||||||||||||||||
ReactNoop.simulateErrorInHostConfig(() => { | ||||||||||||||||||||||||||||||||||||||||||
ReactNoop.render(<span />); | ||||||||||||||||||||||||||||||||||||||||||
expect(() => ReactNoop.flush()).toThrow('Error in host config.'); | ||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This one causes an unexpected pop because replay logic assumes we can always safely pop context after "begin" phase failed: react/packages/react-reconciler/src/ReactFiberScheduler.js Lines 274 to 291 in 6b99c6f
But this doesn't necessarily need to be the case if pushing context involves running user or renderer code:
In that case there's a chance we won't get to push, and the stack won't line up. Curiously, for legacy class context we seem to avoid this problem because we first push without running user code and then "replace" it. So even if user code failed, the stack would match up. Maybe we could always do something like this? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah something like this should work. Seems easy to mess up, though. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sounds fine, we'll have some inline comments so the next person knows what's up. |
||||||||||||||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
it('should fail gracefully on error that does not reproduce on replay', () => { | ||||||||||||||||||||||||||||||||||||||||||
let didInit = false; | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
function badLazyInit() { | ||||||||||||||||||||||||||||||||||||||||||
const needsInit = !didInit; | ||||||||||||||||||||||||||||||||||||||||||
didInit = true; | ||||||||||||||||||||||||||||||||||||||||||
if (needsInit) { | ||||||||||||||||||||||||||||||||||||||||||
throw new Error('Hi'); | ||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
class App extends React.Component { | ||||||||||||||||||||||||||||||||||||||||||
render() { | ||||||||||||||||||||||||||||||||||||||||||
badLazyInit(); | ||||||||||||||||||||||||||||||||||||||||||
return <div />; | ||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||
ReactNoop.render(<App />); | ||||||||||||||||||||||||||||||||||||||||||
expect(() => ReactNoop.flush()).toThrow('Hi'); | ||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This one fails because we assume rendering is idempotent: react/packages/react-reconciler/src/ReactFiberScheduler.js Lines 297 to 298 in 6b99c6f
But there are cases (like lazy init) where it might throw the first time but not on subsequent calls. Or just a buggy render implementation where we may render something completely different. We should handle this gracefully. When this happens, when we exit this block, |
||||||||||||||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||||||||||||
}); |
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.
Should we maybe clear the variable just before throwing so we don't hold onto it until next replay?
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.
Yeah good call