11cb0ef41Sopenharmony_ci'use strict'; 21cb0ef41Sopenharmony_ciconst common = require('../common'); 31cb0ef41Sopenharmony_ciconst http = require('http'); 41cb0ef41Sopenharmony_ciconst { finished } = require('stream'); 51cb0ef41Sopenharmony_ci 61cb0ef41Sopenharmony_ci{ 71cb0ef41Sopenharmony_ci // Test abort before finished. 81cb0ef41Sopenharmony_ci 91cb0ef41Sopenharmony_ci const server = http.createServer(function(req, res) { 101cb0ef41Sopenharmony_ci res.write('asd'); 111cb0ef41Sopenharmony_ci }); 121cb0ef41Sopenharmony_ci 131cb0ef41Sopenharmony_ci server.listen(0, common.mustCall(function() { 141cb0ef41Sopenharmony_ci http.request({ 151cb0ef41Sopenharmony_ci port: this.address().port 161cb0ef41Sopenharmony_ci }) 171cb0ef41Sopenharmony_ci .on('response', (res) => { 181cb0ef41Sopenharmony_ci res.on('readable', () => { 191cb0ef41Sopenharmony_ci res.destroy(); 201cb0ef41Sopenharmony_ci }); 211cb0ef41Sopenharmony_ci finished(res, common.mustCall(() => { 221cb0ef41Sopenharmony_ci server.close(); 231cb0ef41Sopenharmony_ci })); 241cb0ef41Sopenharmony_ci }) 251cb0ef41Sopenharmony_ci .end(); 261cb0ef41Sopenharmony_ci })); 271cb0ef41Sopenharmony_ci} 28