summaryrefslogtreecommitdiff
path: root/test/parallel/test-http-server-de-chunked-trailer.js
blob: dad744209ee4199c60e558342a1309fce0888b91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
'use strict';
const common = require('../common');

// This test ensures that a Trailer header is set only when a chunked transfer
// encoding is used.

const assert = require('assert');
const http = require('http');

const server = http.createServer(common.mustCall(function(req, res) {
  res.setHeader('Trailer', 'baz');
  const trailerInvalidErr = {
    code: 'ERR_HTTP_TRAILER_INVALID',
    message: 'Trailers are invalid with this transfer encoding',
    type: Error
  };
  common.expectsError(() => res.writeHead(200, { 'Content-Length': '2' }),
                      trailerInvalidErr);
  res.removeHeader('Trailer');
  res.end('ok');
}));
server.listen(0, common.mustCall(() => {
  http.get({ port: server.address().port }, common.mustCall((res) => {
    assert.strictEqual(res.statusCode, 200);
    let buf = '';
    res.on('data', (chunk) => {
      buf += chunk;
    }).on('end', common.mustCall(() => {
      assert.strictEqual(buf, 'ok');
    }));
    server.close();
  }));
}));