From 35280c5ec8d289e74e92a67cd94826f7ec91d642 Mon Sep 17 00:00:00 2001 From: Andrew Clark Date: Tue, 5 Nov 2019 16:07:26 -0800 Subject: [PATCH] [Failing tests] startTransition should not change Like `dispatch` or `setState`, we should return the same `startTransition` function on every render. --- ...eactHooksWithNoopRenderer-test.internal.js | 177 ++++++++++++++++++ 1 file changed, 177 insertions(+) diff --git a/packages/react-reconciler/src/__tests__/ReactHooksWithNoopRenderer-test.internal.js b/packages/react-reconciler/src/__tests__/ReactHooksWithNoopRenderer-test.internal.js index c6d5e5c81b748..c1954e36ed8c9 100644 --- a/packages/react-reconciler/src/__tests__/ReactHooksWithNoopRenderer-test.internal.js +++ b/packages/react-reconciler/src/__tests__/ReactHooksWithNoopRenderer-test.internal.js @@ -2111,6 +2111,183 @@ describe('ReactHooksWithNoopRenderer', () => { ]); }, ); + + it.experimental('always returns the same startTransition', async () => { + let transition; + function App() { + const [step, setStep] = useState(0); + const [startTransition, isPending] = useTransition({ + busyDelayMs: 1000, + busyMinDurationMs: 2000, + }); + // Log whenever startTransition changes + useEffect( + () => { + Scheduler.unstable_yieldValue('New startTransition function'); + }, + [startTransition], + ); + transition = () => { + startTransition(() => { + setStep(n => n + 1); + }); + }; + return ( + }> + + {isPending && } + + ); + } + + const root = ReactNoop.createRoot(); + await ReactNoop.act(async () => { + root.render(); + }); + expect(Scheduler).toHaveYielded([ + 'Suspend! [Step: 0]', + 'Loading...', + // Initial mount. This should never be logged again. + 'New startTransition function', + ]); + await ReactNoop.act(async () => { + await advanceTimers(2000); + }); + expect(Scheduler).toHaveYielded([ + 'Promise resolved [Step: 0]', + 'Step: 0', + ]); + + // Update. The effect should not fire. + await ReactNoop.act(async () => { + Scheduler.unstable_runWithPriority( + Scheduler.unstable_UserBlockingPriority, + transition, + ); + }); + expect(Scheduler).toHaveYielded([ + 'Step: 0', + '(pending...)', + 'Suspend! [Step: 1]', + 'Loading...', + // No log effect, because startTransition did not change + ]); + }); + + it.experimental( + 'can update suspense config (without changing startTransition)', + async () => { + let transition; + function App({timeoutMs}) { + const [step, setStep] = useState(0); + const [startTransition, isPending] = useTransition({timeoutMs}); + // Log whenever startTransition changes + useEffect( + () => { + Scheduler.unstable_yieldValue('New startTransition function'); + }, + [startTransition], + ); + transition = () => { + startTransition(() => { + setStep(n => n + 1); + }); + }; + return ( + }> + + {isPending && } + + ); + } + + const root = ReactNoop.createRoot(); + await ReactNoop.act(async () => { + root.render(); + }); + expect(Scheduler).toHaveYielded([ + 'Suspend! [Step: 0]', + 'Loading...', + // Initial mount. This should never be logged again. + 'New startTransition function', + ]); + await ReactNoop.act(async () => { + await advanceTimers(2000); + }); + expect(Scheduler).toHaveYielded([ + 'Promise resolved [Step: 0]', + 'Step: 0', + ]); + + // Schedule a transition. Should timeout quickly. + await ReactNoop.act(async () => { + Scheduler.unstable_runWithPriority( + Scheduler.unstable_UserBlockingPriority, + transition, + ); + + expect(Scheduler).toFlushAndYield([ + 'Step: 0', + '(pending...)', + 'Suspend! [Step: 1]', + 'Loading...', + // No log effect, because startTransition did not change + ]); + + // Advance time. This should be sufficient to timeout. + await advanceTimers(1000); + expect(Scheduler).toFlushAndYield([]); + // Show placeholder. + expect(root).toMatchRenderedOutput( + <> +