File size: 2,325 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
import { MockedRequest, MockedResponse } from './mock-request'

describe('MockedRequest', () => {
  it('should have the correct properties', () => {
    const req = new MockedRequest({
      url: '/hello',
      method: 'POST',
      headers: {
        'x-foo': 'bar',
      },
    })

    expect(req.url).toBe('/hello')
    expect(req.method).toBe('POST')
    expect(req.headers).toEqual({
      'x-foo': 'bar',
    })
  })
})

describe('MockedResponse', () => {
  it('should merge headers correctly when calling writeHead', () => {
    const res = new MockedResponse({})

    res.setHeader('x-foo', 'bar')
    res.setHeader('x-bar', 'foo')

    res.writeHead(200, { 'x-foo': 'bar, foo', 'x-bar': 'foo, bar' })
    expect(res.getHeaders()).toEqual({
      'x-foo': 'bar, foo',
      'x-bar': 'foo, bar',
    })

    res.writeHead(200, ['x-foo', 'foo, bar', 'x-bar', 'bar, foo'])
    expect(res.getHeaders()).toEqual({
      'x-foo': 'foo, bar',
      'x-bar': 'bar, foo',
    })

    res.writeHead(200, ['x-foo', ['bar', 'foo'], 'x-bar', ['foo', 'bar']])
    expect(res.getHeaders()).toEqual({
      'x-foo': 'bar, foo',
      'x-bar': 'foo, bar',
    })

    res.writeHead(200, ['x-foo', 1, 'x-bar', 2])
    expect(res.getHeaders()).toEqual({
      'x-foo': '1',
      'x-bar': '2',
    })
  })

  it('should update the statusMessage after calling writeHead', () => {
    const res = new MockedResponse({})

    // Default code and status message is 200 and ''.
    expect(res.statusCode).toBe(200)
    expect(res.statusMessage).toBe('')

    res.writeHead(200, 'OK')
    expect(res.statusCode).toBe(200)
    expect(res.statusMessage).toBe('OK')

    res.writeHead(400, 'Bad Request')
    expect(res.statusCode).toBe(400)
    expect(res.statusMessage).toBe('Bad Request')
  })

  it('should handle set-cookie headers correctly', () => {
    const res = new MockedResponse({})

    res.setHeader('set-cookie', ['foo=bar', 'bar=foo'])
    expect(res.getHeaders()).toEqual({
      'set-cookie': ['foo=bar', 'bar=foo'],
    })

    res.writeHead(200, { 'Set-Cookie': 'foo=bar2' })
    expect(res.getHeaders()).toEqual({
      'set-cookie': 'foo=bar2',
    })

    res.writeHead(200, { 'Set-Cookie': ['foo=bar2', 'bar2=foo'] })
    expect(res.getHeaders()).toEqual({
      'set-cookie': ['foo=bar2', 'bar2=foo'],
    })
  })
})