xref: /third_party/node/test/parallel/test-http2-server-http1-client.js
  • Home
  • History
  • Annotate Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
  • only in /third_party/node/test/parallel/
11cb0ef41Sopenharmony_ci'use strict';
21cb0ef41Sopenharmony_ci// Flags: --expose-internals
31cb0ef41Sopenharmony_ci
41cb0ef41Sopenharmony_ciconst common = require('../common');
51cb0ef41Sopenharmony_ci
61cb0ef41Sopenharmony_ciif (!common.hasCrypto)
71cb0ef41Sopenharmony_ci  common.skip('missing crypto');
81cb0ef41Sopenharmony_ci
91cb0ef41Sopenharmony_ciconst http = require('http');
101cb0ef41Sopenharmony_ciconst http2 = require('http2');
111cb0ef41Sopenharmony_ciconst { NghttpError } = require('internal/http2/util');
121cb0ef41Sopenharmony_ci
131cb0ef41Sopenharmony_ciconst server = http2.createServer();
141cb0ef41Sopenharmony_ciserver.on('stream', common.mustNotCall());
151cb0ef41Sopenharmony_ciserver.on('session', common.mustCall((session) => {
161cb0ef41Sopenharmony_ci  session.on('close', common.mustCall());
171cb0ef41Sopenharmony_ci  session.on('error', common.expectsError({
181cb0ef41Sopenharmony_ci    code: 'ERR_HTTP2_ERROR',
191cb0ef41Sopenharmony_ci    constructor: NghttpError,
201cb0ef41Sopenharmony_ci    message: 'Received bad client magic byte string'
211cb0ef41Sopenharmony_ci  }));
221cb0ef41Sopenharmony_ci}));
231cb0ef41Sopenharmony_ci
241cb0ef41Sopenharmony_ciserver.listen(0, common.mustCall(() => {
251cb0ef41Sopenharmony_ci  const req = http.get(`http://localhost:${server.address().port}`);
261cb0ef41Sopenharmony_ci  req.on('error', (error) => server.close());
271cb0ef41Sopenharmony_ci}));
28

Indexes created Thu Nov 07 10:32:03 CST 2024