Skip to content

Commit

Permalink
Destroy the stream with an error if the root throws
Browse files Browse the repository at this point in the history
But not if the error happens inside a suspense boundary.
  • Loading branch information
sebmarkbage committed Mar 12, 2021
1 parent 10cc400 commit bbb58f2
Show file tree
Hide file tree
Showing 8 changed files with 166 additions and 2 deletions.
65 changes: 65 additions & 0 deletions packages/react-dom/src/__tests__/ReactDOMFizzServerBrowser-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ global.TextEncoder = require('util').TextEncoder;

let React;
let ReactDOMFizzServer;
let Suspense;

describe('ReactDOMFizzServer', () => {
beforeEach(() => {
Expand All @@ -23,8 +24,18 @@ describe('ReactDOMFizzServer', () => {
if (__EXPERIMENTAL__) {
ReactDOMFizzServer = require('react-dom/unstable-fizz.browser');
}
Suspense = React.Suspense;
});

const theError = new Error('This is an error');
function Throw() {
throw theError;
}
const theInfinitePromise = new Promise(() => {});
function InfiniteSuspend() {
throw theInfinitePromise;
}

async function readResult(stream) {
const reader = stream.getReader();
let result = '';
Expand All @@ -45,4 +56,58 @@ describe('ReactDOMFizzServer', () => {
const result = await readResult(stream);
expect(result).toBe('<div>hello world</div>');
});

// @gate experimental
it('should error the stream when an error is thrown at the root', async () => {
const stream = ReactDOMFizzServer.renderToReadableStream(
<div>
<Throw />
</div>,
);

let caughtError = null;
let result = '';
try {
result = await readResult(stream);
} catch (x) {
caughtError = x;
}
expect(caughtError).toBe(theError);
expect(result).toBe('');
});

// @gate experimental
it('should error the stream when an error is thrown inside a fallback', async () => {
const stream = ReactDOMFizzServer.renderToReadableStream(
<div>
<Suspense fallback={<Throw />}>
<InfiniteSuspend />
</Suspense>
</div>,
);

let caughtError = null;
let result = '';
try {
result = await readResult(stream);
} catch (x) {
caughtError = x;
}
expect(caughtError).toBe(theError);
expect(result).toBe('');
});

// @gate experimental
it('should not error the stream when an error is thrown inside suspense boundary', async () => {
const stream = ReactDOMFizzServer.renderToReadableStream(
<div>
<Suspense fallback={<div>Loading</div>}>
<Throw />
</Suspense>
</div>,
);

const result = await readResult(stream);
expect(result).toContain('Loading');
});
});
74 changes: 73 additions & 1 deletion packages/react-dom/src/__tests__/ReactDOMFizzServerNode-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
let Stream;
let React;
let ReactDOMFizzServer;
let Suspense;

describe('ReactDOMFizzServer', () => {
beforeEach(() => {
Expand All @@ -22,21 +23,92 @@ describe('ReactDOMFizzServer', () => {
ReactDOMFizzServer = require('react-dom/unstable-fizz');
}
Stream = require('stream');
Suspense = React.Suspense;
});

function getTestWritable() {
const writable = new Stream.PassThrough();
writable.setEncoding('utf8');
writable.result = '';
writable.on('data', chunk => (writable.result += chunk));
writable.on('data', chunk => {
writable.result += chunk;
});
writable.on('error', error => {
writable.error = error;
});
return writable;
}

function waitUntilClose(writable) {
return new Promise(resolve => writable.on('close', resolve));
}

const theError = new Error('This is an error');
function Throw() {
throw theError;
}
const theInfinitePromise = new Promise(() => {});
function InfiniteSuspend() {
throw theInfinitePromise;
}

// @gate experimental
it('should call pipeToNodeWritable', () => {
const writable = getTestWritable();
ReactDOMFizzServer.pipeToNodeWritable(<div>hello world</div>, writable);
jest.runAllTimers();
expect(writable.result).toBe('<div>hello world</div>');
});

// @gate experimental
it('should error the stream when an error is thrown at the root', async () => {
const writable = getTestWritable();
ReactDOMFizzServer.pipeToNodeWritable(
<div>
<Throw />
</div>,
writable,
);

await waitUntilClose(writable);

expect(writable.error).toBe(theError);
expect(writable.result).toBe('');
});

// @gate experimental
it('should error the stream when an error is thrown inside a fallback', async () => {
const writable = getTestWritable();
ReactDOMFizzServer.pipeToNodeWritable(
<div>
<Suspense fallback={<Throw />}>
<InfiniteSuspend />
</Suspense>
</div>,
writable,
);

await waitUntilClose(writable);

expect(writable.error).toBe(theError);
expect(writable.result).toBe('');
});

// @gate experimental
it('should not error the stream when an error is thrown inside suspense boundary', async () => {
const writable = getTestWritable();
ReactDOMFizzServer.pipeToNodeWritable(
<div>
<Suspense fallback={<div>Loading</div>}>
<Throw />
</Suspense>
</div>,
writable,
);

await waitUntilClose(writable);

expect(writable.error).toBe(undefined);
expect(writable.result).toContain('Loading');
});
});
1 change: 1 addition & 0 deletions packages/react-noop-renderer/src/ReactNoopFlightServer.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ const ReactNoopFlightServer = ReactFlightServer({
},
completeWriting(destination: Destination): void {},
close(destination: Destination): void {},
closeWithError(destination: Destination, error: mixed): void {},
flushBuffered(destination: Destination): void {},
convertStringToBuffer(content: string): Uint8Array {
return Buffer.from(content, 'utf8');
Expand Down
1 change: 1 addition & 0 deletions packages/react-noop-renderer/src/ReactNoopServer.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ const ReactNoopServer = ReactFizzServer({
},
completeWriting(destination: Destination): void {},
close(destination: Destination): void {},
closeWithError(destination: Destination, error: mixed): void {},
flushBuffered(destination: Destination): void {},

createResponseState(): null {
Expand Down
6 changes: 5 additions & 1 deletion packages/react-server/src/ReactFizzServer.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ import {
completeWriting,
flushBuffered,
close,
closeWithError,
} from './ReactServerStreamConfig';
import {
writePlaceholder,
Expand Down Expand Up @@ -205,7 +206,7 @@ function fatalError(request: Request, error: mixed): void {
// a suspense boundary or if the root suspense boundary's fallback errors.
// It's also called if React itself or its host configs errors.
request.status = CLOSED;
// TODO: Destroy the stream with an error. We weren't able to complete the root.
closeWithError(request.destination, error);
}

function renderNode(
Expand Down Expand Up @@ -237,6 +238,7 @@ function renderNode(
// Something suspended, we'll need to create a new segment and resolve it later.
const insertionIndex = segment.chunks.length;
const newSegment = createPendingSegment(request, insertionIndex, null);
segment.children.push(newSegment);
const suspendedWork = createSuspendedWork(
request,
node,
Expand Down Expand Up @@ -273,6 +275,7 @@ function renderNode(
insertionIndex,
newBoundary,
);
segment.children.push(boundarySegment);
// We create suspended work for the fallback because we don't want to actually work
// on it yet in case we finish the main content, so we queue for later.
const suspendedFallbackWork = createSuspendedWork(
Expand Down Expand Up @@ -326,6 +329,7 @@ function errorWork(
fatalError(request, error);
} else if (!boundary.forceClientRender) {
boundary.forceClientRender = true;

// Regardless of what happens next, this boundary won't be displayed,
// so we can flush it, if the parent already flushed.
if (boundary.parentFlushed) {
Expand Down
15 changes: 15 additions & 0 deletions packages/react-server/src/ReactServerStreamConfigBrowser.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,18 @@ const textEncoder = new TextEncoder();
export function convertStringToBuffer(content: string): Uint8Array {
return textEncoder.encode(content);
}

export function closeWithError(destination: Destination, error: mixed): void {
if (typeof destination.error === 'function') {
// $FlowFixMe: This is an Error object or the destination accepts other types.
destination.error(error);
} else {
// Earlier implementations doesn't support this method. In that environment you're
// supposed to throw from a promise returned but we don't return a promise in our
// approach. We could fork this implementation but this is environment is an edge
// case to begin with. It's even less common to run this in an older environment.
// Even then, this is not where errors are supposed to happen and they get reported
// to a global callback in addition to this anyway. So it's fine just to close this.
destination.close();
}
}
5 changes: 5 additions & 0 deletions packages/react-server/src/ReactServerStreamConfigNode.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,3 +64,8 @@ export function close(destination: Destination) {
export function convertStringToBuffer(content: string): Uint8Array {
return Buffer.from(content, 'utf8');
}

export function closeWithError(destination: Destination, error: mixed): void {
// $FlowFixMe: This is an Error object or the destination accepts other types.
destination.destroy(error);
}
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,5 @@ export const writeChunk = $$$hostConfig.writeChunk;
export const completeWriting = $$$hostConfig.completeWriting;
export const flushBuffered = $$$hostConfig.flushBuffered;
export const close = $$$hostConfig.close;
export const closeWithError = $$$hostConfig.closeWithError;
export const convertStringToBuffer = $$$hostConfig.convertStringToBuffer;

0 comments on commit bbb58f2

Please sign in to comment.