11cb0ef41Sopenharmony_ci'use strict'; 21cb0ef41Sopenharmony_ci 31cb0ef41Sopenharmony_ciconst common = require('../common'); 41cb0ef41Sopenharmony_ciif (!common.hasCrypto) 51cb0ef41Sopenharmony_ci common.skip('missing crypto'); 61cb0ef41Sopenharmony_ci 71cb0ef41Sopenharmony_ciconst Countdown = require('../common/countdown'); 81cb0ef41Sopenharmony_ciconst http2 = require('http2'); 91cb0ef41Sopenharmony_ci 101cb0ef41Sopenharmony_ciconst server = http2.createServer(); 111cb0ef41Sopenharmony_ci 121cb0ef41Sopenharmony_cilet session; 131cb0ef41Sopenharmony_ci 141cb0ef41Sopenharmony_ciconst countdown = new Countdown(2, () => { 151cb0ef41Sopenharmony_ci server.close(common.mustSucceed()); 161cb0ef41Sopenharmony_ci session.close(); 171cb0ef41Sopenharmony_ci}); 181cb0ef41Sopenharmony_ci 191cb0ef41Sopenharmony_ciserver.listen(0, common.mustCall(() => { 201cb0ef41Sopenharmony_ci const client = http2.connect(`http://localhost:${server.address().port}`); 211cb0ef41Sopenharmony_ci client.on('connect', common.mustCall(() => countdown.dec())); 221cb0ef41Sopenharmony_ci})); 231cb0ef41Sopenharmony_ci 241cb0ef41Sopenharmony_ciserver.on('session', common.mustCall((s) => { 251cb0ef41Sopenharmony_ci session = s; 261cb0ef41Sopenharmony_ci countdown.dec(); 271cb0ef41Sopenharmony_ci})); 28