File size: 1,934 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
/* eslint-env jest */
// These tests are based on https://github.com/zertosh/htmlescape/blob/3e6cf0614dd0f778fd0131e69070b77282150c15/test/htmlescape-test.js
// License: https://github.com/zertosh/htmlescape/blob/0527ca7156a524d256101bb310a9f970f63078ad/LICENSE
import { htmlEscapeJsonString } from 'next/dist/server/htmlescape'
import vm from 'vm'

describe('htmlescape', () => {
  test('with angle brackets should escape', () => {
    const evilObj = { evil: '<script></script>' }
    expect(htmlEscapeJsonString(JSON.stringify(evilObj))).toBe(
      '{"evil":"\\u003cscript\\u003e\\u003c/script\\u003e"}'
    )
  })

  test('with angle brackets should parse back', () => {
    const evilObj = { evil: '<script></script>' }
    expect(
      JSON.parse(htmlEscapeJsonString(JSON.stringify(evilObj)))
    ).toMatchObject(evilObj)
  })

  test('with ampersands should escape', () => {
    const evilObj = { evil: '&' }
    expect(htmlEscapeJsonString(JSON.stringify(evilObj))).toBe(
      '{"evil":"\\u0026"}'
    )
  })

  test('with ampersands should parse back', () => {
    const evilObj = { evil: '&' }
    expect(
      JSON.parse(htmlEscapeJsonString(JSON.stringify(evilObj)))
    ).toMatchObject(evilObj)
  })

  test('with "LINE SEPARATOR" and "PARAGRAPH SEPARATOR" should escape', () => {
    const evilObj = { evil: '\u2028\u2029' }
    expect(htmlEscapeJsonString(JSON.stringify(evilObj))).toBe(
      '{"evil":"\\u2028\\u2029"}'
    )
  })

  test('with "LINE SEPARATOR" and "PARAGRAPH SEPARATOR" should parse back', () => {
    const evilObj = { evil: '\u2028\u2029' }
    expect(
      JSON.parse(htmlEscapeJsonString(JSON.stringify(evilObj)))
    ).toMatchObject(evilObj)
  })

  test('escaped line terminators should work', () => {
    expect(() => {
      vm.runInNewContext(
        '(' +
          htmlEscapeJsonString(JSON.stringify({ evil: '\u2028\u2029' })) +
          ')'
      )
    }).not.toThrow()
  })
})