summaryrefslogtreecommitdiffstats
path: root/test/trailers.js
blob: ca56de23cc59413fd049f595afc09d5479944240 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
'use strict'

const { test } = require('tap')
const { Client } = require('..')
const { createServer } = require('http')

test('response trailers missing is OK', (t) => {
  t.plan(1)

  const server = createServer((req, res) => {
    res.writeHead(200, {
      Trailer: 'content-length'
    })
    res.end('response')
  })
  t.teardown(server.close.bind(server))
  server.listen(0, async () => {
    const client = new Client(`http://localhost:${server.address().port}`)
    t.teardown(client.destroy.bind(client))

    const { body } = await client.request({
      path: '/',
      method: 'GET',
      body: 'asd'
    })

    t.equal(await body.text(), 'response')
  })
})

test('response trailers missing w trailers is OK', (t) => {
  t.plan(2)

  const server = createServer((req, res) => {
    res.writeHead(200, {
      Trailer: 'content-length'
    })
    res.addTrailers({
      asd: 'foo'
    })
    res.end('response')
  })
  t.teardown(server.close.bind(server))
  server.listen(0, async () => {
    const client = new Client(`http://localhost:${server.address().port}`)
    t.teardown(client.destroy.bind(client))

    const { body, trailers } = await client.request({
      path: '/',
      method: 'GET',
      body: 'asd'
    })

    t.equal(await body.text(), 'response')
    t.same(trailers, { asd: 'foo' })
  })
})