11cb0ef41Sopenharmony_ci'use strict';
21cb0ef41Sopenharmony_ci
31cb0ef41Sopenharmony_ciconst common = require('../common');
41cb0ef41Sopenharmony_ciif (!common.hasCrypto)
51cb0ef41Sopenharmony_ci  common.skip('missing crypto');
61cb0ef41Sopenharmony_ciconst assert = require('assert');
71cb0ef41Sopenharmony_ciconst http2 = require('http2');
81cb0ef41Sopenharmony_ciconst Countdown = require('../common/countdown');
91cb0ef41Sopenharmony_ci
101cb0ef41Sopenharmony_ci// Check that pushStream handles method HEAD correctly
111cb0ef41Sopenharmony_ci// - stream should end immediately (no body)
121cb0ef41Sopenharmony_ci
131cb0ef41Sopenharmony_ciconst server = http2.createServer();
141cb0ef41Sopenharmony_ciserver.on('stream', common.mustCall((stream, headers) => {
151cb0ef41Sopenharmony_ci  const port = server.address().port;
161cb0ef41Sopenharmony_ci  if (headers[':path'] === '/') {
171cb0ef41Sopenharmony_ci    stream.pushStream({
181cb0ef41Sopenharmony_ci      ':scheme': 'http',
191cb0ef41Sopenharmony_ci      ':method': 'HEAD',
201cb0ef41Sopenharmony_ci      ':authority': `localhost:${port}`,
211cb0ef41Sopenharmony_ci    }, common.mustCall((err, push, headers) => {
221cb0ef41Sopenharmony_ci      assert.strictEqual(push._writableState.ended, true);
231cb0ef41Sopenharmony_ci      push.respond();
241cb0ef41Sopenharmony_ci      // Cannot write to push() anymore
251cb0ef41Sopenharmony_ci      push.on('error', common.expectsError({
261cb0ef41Sopenharmony_ci        name: 'Error',
271cb0ef41Sopenharmony_ci        code: 'ERR_STREAM_WRITE_AFTER_END',
281cb0ef41Sopenharmony_ci        message: 'write after end'
291cb0ef41Sopenharmony_ci      }));
301cb0ef41Sopenharmony_ci      assert(!push.write('test'));
311cb0ef41Sopenharmony_ci      stream.end('test');
321cb0ef41Sopenharmony_ci    }));
331cb0ef41Sopenharmony_ci  }
341cb0ef41Sopenharmony_ci  stream.respond({
351cb0ef41Sopenharmony_ci    'content-type': 'text/html',
361cb0ef41Sopenharmony_ci    ':status': 200
371cb0ef41Sopenharmony_ci  });
381cb0ef41Sopenharmony_ci}));
391cb0ef41Sopenharmony_ci
401cb0ef41Sopenharmony_ciserver.listen(0, common.mustCall(() => {
411cb0ef41Sopenharmony_ci  const port = server.address().port;
421cb0ef41Sopenharmony_ci  const client = http2.connect(`http://localhost:${port}`);
431cb0ef41Sopenharmony_ci
441cb0ef41Sopenharmony_ci  const countdown = new Countdown(2, () => {
451cb0ef41Sopenharmony_ci    server.close();
461cb0ef41Sopenharmony_ci    client.close();
471cb0ef41Sopenharmony_ci  });
481cb0ef41Sopenharmony_ci
491cb0ef41Sopenharmony_ci  const req = client.request();
501cb0ef41Sopenharmony_ci  req.setEncoding('utf8');
511cb0ef41Sopenharmony_ci
521cb0ef41Sopenharmony_ci  client.on('stream', common.mustCall((stream, headers) => {
531cb0ef41Sopenharmony_ci    assert.strictEqual(headers[':method'], 'HEAD');
541cb0ef41Sopenharmony_ci    assert.strictEqual(headers[':scheme'], 'http');
551cb0ef41Sopenharmony_ci    assert.strictEqual(headers[':path'], '/');
561cb0ef41Sopenharmony_ci    assert.strictEqual(headers[':authority'], `localhost:${port}`);
571cb0ef41Sopenharmony_ci    stream.on('push', common.mustCall(() => {
581cb0ef41Sopenharmony_ci      stream.on('data', common.mustNotCall());
591cb0ef41Sopenharmony_ci      stream.on('end', common.mustCall());
601cb0ef41Sopenharmony_ci    }));
611cb0ef41Sopenharmony_ci    stream.on('close', common.mustCall(() => countdown.dec()));
621cb0ef41Sopenharmony_ci  }));
631cb0ef41Sopenharmony_ci
641cb0ef41Sopenharmony_ci  let data = '';
651cb0ef41Sopenharmony_ci
661cb0ef41Sopenharmony_ci  req.on('data', common.mustCall((d) => data += d));
671cb0ef41Sopenharmony_ci  req.on('end', common.mustCall(() => {
681cb0ef41Sopenharmony_ci    assert.strictEqual(data, 'test');
691cb0ef41Sopenharmony_ci  }));
701cb0ef41Sopenharmony_ci  req.on('close', common.mustCall(() => countdown.dec()));
711cb0ef41Sopenharmony_ci  req.end();
721cb0ef41Sopenharmony_ci}));
73