@@ -11,7 +11,9 @@ const testResBody = 'response content\n';
11
11
12
12
const server = http . createServer ( common . mustCall ( ( req , res ) => {
13
13
debug ( 'Server sending early hints...' ) ;
14
- res . writeEarlyHints ( '</styles.css>; rel=preload; as=style' ) ;
14
+ res . writeEarlyHints ( {
15
+ link : '</styles.css>; rel=preload; as=style'
16
+ } ) ;
15
17
16
18
debug ( 'Server sending full response...' ) ;
17
19
res . end ( testResBody ) ;
@@ -53,10 +55,12 @@ const testResBody = 'response content\n';
53
55
54
56
const server = http . createServer ( common . mustCall ( ( req , res ) => {
55
57
debug ( 'Server sending early hints...' ) ;
56
- res . writeEarlyHints ( [
57
- '</styles.css>; rel=preload; as=style' ,
58
- '</scripts.js>; rel=preload; as=script' ,
59
- ] ) ;
58
+ res . writeEarlyHints ( {
59
+ link : [
60
+ '</styles.css>; rel=preload; as=style' ,
61
+ '</scripts.js>; rel=preload; as=script' ,
62
+ ]
63
+ } ) ;
60
64
61
65
debug ( 'Server sending full response...' ) ;
62
66
res . end ( testResBody ) ;
@@ -100,7 +104,147 @@ const testResBody = 'response content\n';
100
104
101
105
const server = http . createServer ( common . mustCall ( ( req , res ) => {
102
106
debug ( 'Server sending early hints...' ) ;
103
- res . writeEarlyHints ( [ ] ) ;
107
+ res . writeEarlyHints ( {
108
+ link : [ ]
109
+ } ) ;
110
+
111
+ debug ( 'Server sending full response...' ) ;
112
+ res . end ( testResBody ) ;
113
+ } ) ) ;
114
+
115
+ server . listen ( 0 , common . mustCall ( ( ) => {
116
+ const req = http . request ( {
117
+ port : server . address ( ) . port , path : '/'
118
+ } ) ;
119
+ debug ( 'Client sending request...' ) ;
120
+
121
+ req . on ( 'information' , common . mustNotCall ( ) ) ;
122
+
123
+ req . on ( 'response' , common . mustCall ( ( res ) => {
124
+ let body = '' ;
125
+
126
+ assert . strictEqual ( res . statusCode , 200 , `Final status code was ${ res . statusCode } , not 200.` ) ;
127
+
128
+ res . on ( 'data' , ( chunk ) => {
129
+ body += chunk ;
130
+ } ) ;
131
+
132
+ res . on ( 'end' , common . mustCall ( ( ) => {
133
+ debug ( 'Got full response.' ) ;
134
+ assert . strictEqual ( body , testResBody ) ;
135
+ server . close ( ) ;
136
+ } ) ) ;
137
+ } ) ) ;
138
+
139
+ req . end ( ) ;
140
+ } ) ) ;
141
+ }
142
+
143
+ {
144
+ // Happy flow - object argument with string
145
+
146
+ const server = http . createServer ( common . mustCall ( ( req , res ) => {
147
+ debug ( 'Server sending early hints...' ) ;
148
+ res . writeEarlyHints ( {
149
+ 'link' : '</styles.css>; rel=preload; as=style' ,
150
+ 'x-trace-id' : 'id for diagnostics'
151
+ } ) ;
152
+
153
+ debug ( 'Server sending full response...' ) ;
154
+ res . end ( testResBody ) ;
155
+ } ) ) ;
156
+
157
+ server . listen ( 0 , common . mustCall ( ( ) => {
158
+ const req = http . request ( {
159
+ port : server . address ( ) . port , path : '/'
160
+ } ) ;
161
+ debug ( 'Client sending request...' ) ;
162
+
163
+ req . on ( 'information' , common . mustCall ( ( res ) => {
164
+ assert . strictEqual (
165
+ res . headers . link ,
166
+ '</styles.css>; rel=preload; as=style'
167
+ ) ;
168
+ assert . strictEqual ( res . headers [ 'x-trace-id' ] , 'id for diagnostics' ) ;
169
+ } ) ) ;
170
+
171
+ req . on ( 'response' , common . mustCall ( ( res ) => {
172
+ let body = '' ;
173
+
174
+ assert . strictEqual ( res . statusCode , 200 , `Final status code was ${ res . statusCode } , not 200.` ) ;
175
+
176
+ res . on ( 'data' , ( chunk ) => {
177
+ body += chunk ;
178
+ } ) ;
179
+
180
+ res . on ( 'end' , common . mustCall ( ( ) => {
181
+ debug ( 'Got full response.' ) ;
182
+ assert . strictEqual ( body , testResBody ) ;
183
+ server . close ( ) ;
184
+ } ) ) ;
185
+ } ) ) ;
186
+
187
+ req . end ( ) ;
188
+ } ) ) ;
189
+ }
190
+
191
+ {
192
+ // Happy flow - object argument with array of strings
193
+
194
+ const server = http . createServer ( common . mustCall ( ( req , res ) => {
195
+ debug ( 'Server sending early hints...' ) ;
196
+ res . writeEarlyHints ( {
197
+ 'link' : [
198
+ '</styles.css>; rel=preload; as=style' ,
199
+ '</scripts.js>; rel=preload; as=script' ,
200
+ ] ,
201
+ 'x-trace-id' : 'id for diagnostics'
202
+ } ) ;
203
+
204
+ debug ( 'Server sending full response...' ) ;
205
+ res . end ( testResBody ) ;
206
+ } ) ) ;
207
+
208
+ server . listen ( 0 , common . mustCall ( ( ) => {
209
+ const req = http . request ( {
210
+ port : server . address ( ) . port , path : '/'
211
+ } ) ;
212
+ debug ( 'Client sending request...' ) ;
213
+
214
+ req . on ( 'information' , common . mustCall ( ( res ) => {
215
+ assert . strictEqual (
216
+ res . headers . link ,
217
+ '</styles.css>; rel=preload; as=style, </scripts.js>; rel=preload; as=script'
218
+ ) ;
219
+ assert . strictEqual ( res . headers [ 'x-trace-id' ] , 'id for diagnostics' ) ;
220
+ } ) ) ;
221
+
222
+ req . on ( 'response' , common . mustCall ( ( res ) => {
223
+ let body = '' ;
224
+
225
+ assert . strictEqual ( res . statusCode , 200 , `Final status code was ${ res . statusCode } , not 200.` ) ;
226
+
227
+ res . on ( 'data' , ( chunk ) => {
228
+ body += chunk ;
229
+ } ) ;
230
+
231
+ res . on ( 'end' , common . mustCall ( ( ) => {
232
+ debug ( 'Got full response.' ) ;
233
+ assert . strictEqual ( body , testResBody ) ;
234
+ server . close ( ) ;
235
+ } ) ) ;
236
+ } ) ) ;
237
+
238
+ req . end ( ) ;
239
+ } ) ) ;
240
+ }
241
+
242
+ {
243
+ // Happy flow - empty object
244
+
245
+ const server = http . createServer ( common . mustCall ( ( req , res ) => {
246
+ debug ( 'Server sending early hints...' ) ;
247
+ res . writeEarlyHints ( { } ) ;
104
248
105
249
debug ( 'Server sending full response...' ) ;
106
250
res . end ( testResBody ) ;
0 commit comments