-
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
4 changed files
with
146 additions
and
15 deletions.
There are no files selected for viewing
127 changes: 127 additions & 0 deletions
127
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,127 @@ | ||
import { flushPromiseQueue } from "DevTools/flushPromiseQueue" | ||
import { renderToPipeableStream } 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", () => ({ | ||
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 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() | ||
}) | ||
|
||
// eslint-disable-next-line jest/no-done-callback | ||
it("should transform the stream and inject CSS into the HTML", done => { | ||
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>" | ||
) | ||
done() | ||
}) | ||
|
||
stream.end() | ||
}) | ||
}) |
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