summaryrefslogtreecommitdiffstats
path: root/toolkit/modules/tests/xpcshell/test_CanonicalJSON.js
blob: fa61f5a0105be3f54e885ae32a2f70e6fa0d3010 (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
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
const { CanonicalJSON } = Components.utils.import("resource://gre/modules/CanonicalJSON.jsm");

function stringRepresentation(obj) {
  const clone = JSON.parse(JSON.stringify(obj));
  return JSON.stringify(clone);
}

add_task(function* test_canonicalJSON_should_preserve_array_order() {
  const input = ['one', 'two', 'three'];
  // No sorting should be done on arrays.
  do_check_eq(CanonicalJSON.stringify(input), '["one","two","three"]');
});

add_task(function* test_canonicalJSON_orders_object_keys() {
  const input = [{
    b: ['two', 'three'],
    a: ['zero', 'one']
  }];
  do_check_eq(
    CanonicalJSON.stringify(input),
    '[{"a":["zero","one"],"b":["two","three"]}]'
  );
});

add_task(function* test_canonicalJSON_orders_nested_object_keys() {
  const input = [{
    b: {d: 'd', c: 'c'},
    a: {b: 'b', a: 'a'}
  }];
  do_check_eq(
    CanonicalJSON.stringify(input),
    '[{"a":{"a":"a","b":"b"},"b":{"c":"c","d":"d"}}]'
  );
});

add_task(function* test_canonicalJSON_escapes_unicode_values() {
  do_check_eq(
    CanonicalJSON.stringify([{key: '✓'}]),
    '[{"key":"\\u2713"}]'
  );
  // Unicode codepoints should be output in lowercase.
  do_check_eq(
    CanonicalJSON.stringify([{key: 'é'}]),
    '[{"key":"\\u00e9"}]'
  );
});

add_task(function* test_canonicalJSON_escapes_unicode_object_keys() {
  do_check_eq(
    CanonicalJSON.stringify([{'é': 'check'}]),
    '[{"\\u00e9":"check"}]'
  );
});


add_task(function* test_canonicalJSON_does_not_alter_input() {
  const records = [
    {'foo': 'bar', 'last_modified': '12345', 'id': '1'},
    {'bar': 'baz', 'last_modified': '45678', 'id': '2'}
  ];
  const serializedJSON = JSON.stringify(records);
  CanonicalJSON.stringify(records);
  do_check_eq(JSON.stringify(records), serializedJSON);
});


add_task(function* test_canonicalJSON_preserves_data() {
  const records = [
    {'foo': 'bar', 'last_modified': '12345', 'id': '1'},
    {'bar': 'baz', 'last_modified': '45678', 'id': '2'},
  ]
  const serialized = CanonicalJSON.stringify(records);
  const expected = '[{"foo":"bar","id":"1","last_modified":"12345"},' +
                   '{"bar":"baz","id":"2","last_modified":"45678"}]';
  do_check_eq(CanonicalJSON.stringify(records), expected);
});

add_task(function* test_canonicalJSON_does_not_add_space_separators() {
  const records = [
    {'foo': 'bar', 'last_modified': '12345', 'id': '1'},
    {'bar': 'baz', 'last_modified': '45678', 'id': '2'},
  ]
  const serialized = CanonicalJSON.stringify(records);
  do_check_false(serialized.includes(" "));
});

add_task(function* test_canonicalJSON_serializes_empty_object() {
  do_check_eq(CanonicalJSON.stringify({}), "{}");
});

add_task(function* test_canonicalJSON_serializes_empty_array() {
  do_check_eq(CanonicalJSON.stringify([]), "[]");
});

add_task(function* test_canonicalJSON_serializes_NaN() {
  do_check_eq(CanonicalJSON.stringify(NaN), "null");
});

add_task(function* test_canonicalJSON_serializes_inf() {
  // This isn't part of the JSON standard.
  do_check_eq(CanonicalJSON.stringify(Infinity), "null");
});


add_task(function* test_canonicalJSON_serializes_empty_string() {
  do_check_eq(CanonicalJSON.stringify(""), '""');
});

add_task(function* test_canonicalJSON_escapes_backslashes() {
  do_check_eq(CanonicalJSON.stringify("This\\and this"), '"This\\\\and this"');
});

add_task(function* test_canonicalJSON_handles_signed_zeros() {
  // do_check_eq doesn't support comparison of -0 and 0 properly.
  do_check_true(CanonicalJSON.stringify(-0) === '-0');
  do_check_true(CanonicalJSON.stringify(0) === '0');
});


add_task(function* test_canonicalJSON_with_deeply_nested_dicts() {
  const records = [{
    'a': {
      'b': 'b',
      'a': 'a',
      'c': {
        'b': 'b',
        'a': 'a',
        'c': ['b', 'a', 'c'],
        'd': {'b': 'b', 'a': 'a'},
        'id': '1',
        'e': 1,
        'f': [2, 3, 1],
        'g': {2: 2, 3: 3, 1: {
          'b': 'b', 'a': 'a', 'c': 'c'}}}},
    'id': '1'}]
  const expected =
    '[{"a":{"a":"a","b":"b","c":{"a":"a","b":"b","c":["b","a","c"],' +
    '"d":{"a":"a","b":"b"},"e":1,"f":[2,3,1],"g":{' +
    '"1":{"a":"a","b":"b","c":"c"},"2":2,"3":3},"id":"1"}},"id":"1"}]';

  do_check_eq(CanonicalJSON.stringify(records), expected);
});

function run_test() {
  run_next_test();
}