11cb0ef41Sopenharmony_ci'use strict'; 21cb0ef41Sopenharmony_ciconst common = require('../common'); 31cb0ef41Sopenharmony_ciconst { Writable } = require('stream'); 41cb0ef41Sopenharmony_ci 51cb0ef41Sopenharmony_ciconst assert = require('assert'); 61cb0ef41Sopenharmony_ciconst http = require('http'); 71cb0ef41Sopenharmony_ci 81cb0ef41Sopenharmony_ci// Check if Writable.toWeb works on the response object after creating a server. 91cb0ef41Sopenharmony_ciconst server = http.createServer( 101cb0ef41Sopenharmony_ci common.mustCall((req, res) => { 111cb0ef41Sopenharmony_ci const webStreamResponse = Writable.toWeb(res); 121cb0ef41Sopenharmony_ci assert.strictEqual(webStreamResponse instanceof WritableStream, true); 131cb0ef41Sopenharmony_ci res.end(); 141cb0ef41Sopenharmony_ci }) 151cb0ef41Sopenharmony_ci); 161cb0ef41Sopenharmony_ci 171cb0ef41Sopenharmony_ciserver.listen( 181cb0ef41Sopenharmony_ci 0, 191cb0ef41Sopenharmony_ci common.mustCall(() => { 201cb0ef41Sopenharmony_ci http.get( 211cb0ef41Sopenharmony_ci { 221cb0ef41Sopenharmony_ci port: server.address().port, 231cb0ef41Sopenharmony_ci }, 241cb0ef41Sopenharmony_ci common.mustCall(() => { 251cb0ef41Sopenharmony_ci server.close(); 261cb0ef41Sopenharmony_ci }) 271cb0ef41Sopenharmony_ci ); 281cb0ef41Sopenharmony_ci }) 291cb0ef41Sopenharmony_ci); 30