-
Notifications
You must be signed in to change notification settings - Fork 153
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
205 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
184 changes: 184 additions & 0 deletions
184
src/System/Router/Utils/__tests__/renderToStream.jest.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,184 @@ | ||
import { flushPromiseQueue } from "DevTools/flushPromiseQueue" | ||
import { renderToPipeableStream, renderToStaticMarkup } from "react-dom/server" | ||
import { ArtsyResponse } from "Server/middleware/artsyExpress" | ||
import { ServerStyleSheet } from "styled-components" | ||
import { renderToStream } from "System/Router/Utils/renderToStream" | ||
|
||
jest.mock("react-dom/server", () => ({ | ||
...jest.requireActual("react-dom/server"), | ||
renderToPipeableStream: jest.fn(), | ||
})) | ||
|
||
describe("renderToStream", () => { | ||
const mockRenderToPipeableStream = renderToPipeableStream as jest.Mock | ||
|
||
const res = ({ | ||
statusCode: 0, | ||
setHeader: jest.fn(), | ||
} as unknown) as ArtsyResponse | ||
|
||
const sheet = ({ | ||
_emitSheetCSS: jest.fn(() => "mock-css"), | ||
instance: { | ||
clearTag: jest.fn(), | ||
}, | ||
} as unknown) as ServerStyleSheet | ||
|
||
afterEach(() => { | ||
jest.clearAllMocks() | ||
}) | ||
|
||
it("should set the response status and content type on shell ready", async () => { | ||
const mockPipe = jest.fn() | ||
const mockAbort = jest.fn() | ||
|
||
mockRenderToPipeableStream.mockImplementation((_, options) => { | ||
setTimeout(() => { | ||
options.onShellReady() | ||
}) | ||
|
||
return { pipe: mockPipe, abort: mockAbort } | ||
}) | ||
|
||
const jsx = <div>Hello World</div> | ||
renderToStream({ jsx, sheet, res }) | ||
|
||
await flushPromiseQueue() | ||
|
||
expect(res.statusCode).toBe(200) | ||
expect(res.setHeader).toHaveBeenCalledWith( | ||
"Content-Type", | ||
"text/html; charset=utf-8" | ||
) | ||
expect(mockPipe).toHaveBeenCalled() | ||
}) | ||
|
||
it("should handle onError and set didError to true", async () => { | ||
const mockPipe = jest.fn() | ||
const mockAbort = jest.fn() | ||
|
||
mockRenderToPipeableStream.mockImplementation((_, options) => { | ||
options.onError(new Error("Test error")) | ||
|
||
setTimeout(() => { | ||
options.onShellReady() | ||
}) | ||
|
||
return { pipe: mockPipe, abort: mockAbort } | ||
}) | ||
|
||
const jsx = <div>Hello Error</div> | ||
renderToStream({ jsx, sheet, res }) | ||
|
||
await flushPromiseQueue() | ||
|
||
expect(res.statusCode).toBe(500) | ||
expect(mockPipe).toHaveBeenCalled() | ||
}) | ||
|
||
it("should handle onShellError and set didError to true", async () => { | ||
const mockPipe = jest.fn() | ||
const mockAbort = jest.fn() | ||
|
||
mockRenderToPipeableStream.mockImplementation((_, options) => { | ||
options.onShellError(new Error("Test error")) | ||
|
||
setTimeout(() => { | ||
options.onShellReady() | ||
}) | ||
|
||
return { pipe: mockPipe, abort: mockAbort } | ||
}) | ||
|
||
const jsx = <div>Hello Error</div> | ||
renderToStream({ jsx, sheet, res }) | ||
|
||
await flushPromiseQueue() | ||
|
||
expect(res.statusCode).toBe(500) | ||
expect(mockPipe).toHaveBeenCalled() | ||
}) | ||
|
||
it("should call abort if STREAM_TIMEOUT is reached", () => { | ||
jest.useFakeTimers() | ||
const mockAbort = jest.fn() | ||
|
||
mockRenderToPipeableStream.mockImplementation((_, options) => { | ||
return { pipe: jest.fn(), abort: mockAbort } | ||
}) | ||
|
||
const jsx = <div>Timeout Test</div> | ||
renderToStream({ jsx, sheet, res }) | ||
|
||
jest.advanceTimersByTime(5000) | ||
|
||
expect(mockAbort).toHaveBeenCalled() | ||
jest.useRealTimers() | ||
}) | ||
|
||
it("should transform the stream and inject CSS into the HTML", async () => { | ||
const mockPipe = jest.fn() | ||
const mockAbort = jest.fn() | ||
|
||
mockRenderToPipeableStream.mockImplementation((_, options) => { | ||
setTimeout(() => { | ||
options.onShellReady() | ||
}) | ||
return { pipe: mockPipe, abort: mockAbort } | ||
}) | ||
|
||
const jsx = <div>Stream Test</div> | ||
const stream = renderToStream({ jsx, sheet, res }) | ||
|
||
stream.write("<html><head></head><body></body></html>") | ||
|
||
const chunks: string[] = [] | ||
stream.on("data", chunk => { | ||
chunks.push(chunk) | ||
}) | ||
|
||
stream.on("end", () => { | ||
const result = chunks.join("") | ||
expect(result).toContain( | ||
"<html><head>mock-css</head><body></body></html>" | ||
) | ||
}) | ||
|
||
stream.end() | ||
}) | ||
|
||
it("should insert the rendered JSX markup into the HTML body", async () => { | ||
const jsx = <div id="content">JSX Markup</div> | ||
|
||
const mockPipe = jest.fn(stream => { | ||
stream.write(renderToStaticMarkup(jsx)) | ||
stream.end() | ||
}) | ||
const mockAbort = jest.fn() | ||
|
||
mockRenderToPipeableStream.mockImplementation((_, options) => { | ||
setTimeout(() => { | ||
options.onShellReady() | ||
}) | ||
return { pipe: mockPipe, abort: mockAbort } | ||
}) | ||
|
||
const stream = renderToStream({ jsx, sheet, res }) | ||
|
||
stream.write("<html><head></head><body></body></html>") | ||
|
||
const chunks: string[] = [] | ||
stream.on("data", chunk => { | ||
chunks.push(chunk) | ||
}) | ||
|
||
await new Promise(resolve => { | ||
stream.on("end", resolve) | ||
}) | ||
|
||
const result = chunks.join("") | ||
expect(result).toContain( | ||
'<html><head>mock-css</head><body></body></html><div id="content">JSX Markup</div>' | ||
) | ||
}) | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters