13
13
let Stream ;
14
14
let React ;
15
15
let ReactDOMFizzServer ;
16
+ let Suspense ;
16
17
17
18
describe ( 'ReactDOMFizzServer' , ( ) => {
18
19
beforeEach ( ( ) => {
@@ -22,21 +23,96 @@ describe('ReactDOMFizzServer', () => {
22
23
ReactDOMFizzServer = require ( 'react-dom/unstable-fizz' ) ;
23
24
}
24
25
Stream = require ( 'stream' ) ;
26
+ Suspense = React . Suspense ;
25
27
} ) ;
26
28
27
29
function getTestWritable ( ) {
28
30
const writable = new Stream . PassThrough ( ) ;
29
31
writable . setEncoding ( 'utf8' ) ;
30
- writable . result = '' ;
31
- writable . on ( 'data' , chunk => ( writable . result += chunk ) ) ;
32
- return writable ;
32
+ const output = { result : '' , error : undefined } ;
33
+ writable . on ( 'data' , chunk => {
34
+ output . result += chunk ;
35
+ } ) ;
36
+ writable . on ( 'error' , error => {
37
+ output . error = error ;
38
+ } ) ;
39
+ const completed = new Promise ( resolve => {
40
+ writable . on ( 'finish' , ( ) => {
41
+ resolve ( ) ;
42
+ } ) ;
43
+ writable . on ( 'error' , ( ) => {
44
+ resolve ( ) ;
45
+ } ) ;
46
+ } ) ;
47
+ return { writable, completed, output} ;
48
+ }
49
+
50
+ const theError = new Error ( 'This is an error' ) ;
51
+ function Throw ( ) {
52
+ throw theError ;
53
+ }
54
+ const theInfinitePromise = new Promise ( ( ) => { } ) ;
55
+ function InfiniteSuspend ( ) {
56
+ throw theInfinitePromise ;
33
57
}
34
58
35
59
// @gate experimental
36
60
it ( 'should call pipeToNodeWritable' , ( ) => {
37
- const writable = getTestWritable ( ) ;
61
+ const { writable, output } = getTestWritable ( ) ;
38
62
ReactDOMFizzServer . pipeToNodeWritable ( < div > hello world</ div > , writable ) ;
39
63
jest . runAllTimers ( ) ;
40
- expect ( writable . result ) . toBe ( '<div>hello world</div>' ) ;
64
+ expect ( output . result ) . toBe ( '<div>hello world</div>' ) ;
65
+ } ) ;
66
+
67
+ // @gate experimental
68
+ it ( 'should error the stream when an error is thrown at the root' , async ( ) => {
69
+ const { writable, output, completed} = getTestWritable ( ) ;
70
+ ReactDOMFizzServer . pipeToNodeWritable (
71
+ < div >
72
+ < Throw />
73
+ </ div > ,
74
+ writable ,
75
+ ) ;
76
+
77
+ await completed ;
78
+
79
+ expect ( output . error ) . toBe ( theError ) ;
80
+ expect ( output . result ) . toBe ( '' ) ;
81
+ } ) ;
82
+
83
+ // @gate experimental
84
+ it ( 'should error the stream when an error is thrown inside a fallback' , async ( ) => {
85
+ const { writable, output, completed} = getTestWritable ( ) ;
86
+ ReactDOMFizzServer . pipeToNodeWritable (
87
+ < div >
88
+ < Suspense fallback = { < Throw /> } >
89
+ < InfiniteSuspend />
90
+ </ Suspense >
91
+ </ div > ,
92
+ writable ,
93
+ ) ;
94
+
95
+ await completed ;
96
+
97
+ expect ( output . error ) . toBe ( theError ) ;
98
+ expect ( output . result ) . toBe ( '' ) ;
99
+ } ) ;
100
+
101
+ // @gate experimental
102
+ it ( 'should not error the stream when an error is thrown inside suspense boundary' , async ( ) => {
103
+ const { writable, output, completed} = getTestWritable ( ) ;
104
+ ReactDOMFizzServer . pipeToNodeWritable (
105
+ < div >
106
+ < Suspense fallback = { < div > Loading</ div > } >
107
+ < Throw />
108
+ </ Suspense >
109
+ </ div > ,
110
+ writable ,
111
+ ) ;
112
+
113
+ await completed ;
114
+
115
+ expect ( output . error ) . toBe ( undefined ) ;
116
+ expect ( output . result ) . toContain ( 'Loading' ) ;
41
117
} ) ;
42
118
} ) ;
0 commit comments