11cb0ef41Sopenharmony_ci'use strict'; 21cb0ef41Sopenharmony_ciconst common = require('../common'); 31cb0ef41Sopenharmony_ciconst assert = require('assert'); 41cb0ef41Sopenharmony_ciconst http = require('http'); 51cb0ef41Sopenharmony_ci 61cb0ef41Sopenharmony_ciconst server = http.createServer(); 71cb0ef41Sopenharmony_ci 81cb0ef41Sopenharmony_ciserver.on('request', function(req, res) { 91cb0ef41Sopenharmony_ci res.writeHead(200, { 'foo': 'bar' }); 101cb0ef41Sopenharmony_ci res.flushHeaders(); 111cb0ef41Sopenharmony_ci res.flushHeaders(); // Should be idempotent. 121cb0ef41Sopenharmony_ci}); 131cb0ef41Sopenharmony_ciserver.listen(0, common.localhostIPv4, function() { 141cb0ef41Sopenharmony_ci const req = http.request({ 151cb0ef41Sopenharmony_ci method: 'GET', 161cb0ef41Sopenharmony_ci host: common.localhostIPv4, 171cb0ef41Sopenharmony_ci port: this.address().port, 181cb0ef41Sopenharmony_ci }, onResponse); 191cb0ef41Sopenharmony_ci 201cb0ef41Sopenharmony_ci req.end(); 211cb0ef41Sopenharmony_ci 221cb0ef41Sopenharmony_ci function onResponse(res) { 231cb0ef41Sopenharmony_ci assert.strictEqual(res.headers.foo, 'bar'); 241cb0ef41Sopenharmony_ci res.destroy(); 251cb0ef41Sopenharmony_ci server.close(); 261cb0ef41Sopenharmony_ci } 271cb0ef41Sopenharmony_ci}); 28