11cb0ef41Sopenharmony_ci'use strict'; 21cb0ef41Sopenharmony_ci// Serving up a zero-length buffer should work. 31cb0ef41Sopenharmony_ci 41cb0ef41Sopenharmony_ciconst common = require('../common'); 51cb0ef41Sopenharmony_ciconst http = require('http'); 61cb0ef41Sopenharmony_ci 71cb0ef41Sopenharmony_ciconst server = http.createServer((req, res) => { 81cb0ef41Sopenharmony_ci const buffer = Buffer.alloc(0); 91cb0ef41Sopenharmony_ci res.writeHead(200, { 'Content-Type': 'text/html', 101cb0ef41Sopenharmony_ci 'Content-Length': buffer.length }); 111cb0ef41Sopenharmony_ci res.end(buffer); 121cb0ef41Sopenharmony_ci}); 131cb0ef41Sopenharmony_ci 141cb0ef41Sopenharmony_ciserver.listen(0, common.mustCall(() => { 151cb0ef41Sopenharmony_ci http.get({ port: server.address().port }, common.mustCall((res) => { 161cb0ef41Sopenharmony_ci 171cb0ef41Sopenharmony_ci res.on('data', common.mustNotCall()); 181cb0ef41Sopenharmony_ci 191cb0ef41Sopenharmony_ci res.on('end', (d) => { 201cb0ef41Sopenharmony_ci server.close(); 211cb0ef41Sopenharmony_ci }); 221cb0ef41Sopenharmony_ci })); 231cb0ef41Sopenharmony_ci})); 24