aboutsummaryrefslogtreecommitdiffstats
path: root/test/JsonSpec.js
blob: 736e6032fc1ec7b2c3e74ffa8364286cb9309075 (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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
'use strict';

describe('json', function() {
  it('should serialize primitives', function() {
    expect(toJson(0/0)).toEqual('null');
    expect(toJson(null)).toEqual('null');
    expect(toJson(true)).toEqual('true');
    expect(toJson(false)).toEqual('false');
    expect(toJson(123.45)).toEqual("123.45");
    expect(toJson("abc")).toEqual('"abc"');
    expect(toJson("a \t \n \r b \\")).toEqual('"a \\t \\n \\r b \\\\"');
  });

  it('should not serialize $$properties', function() {
    expect(toJson({$$some:'value', 'this':1, '$parent':1}, false)).toEqual('{}');
  });

  it('should not serialize this or $parent', function() {
    expect(toJson({'this':'value', $parent:'abc'}, false)).toEqual('{}');
  });

  it('should serialize strings with escaped characters', function() {
    expect(toJson("7\\\"7")).toEqual("\"7\\\\\\\"7\"");
  });

  it('should serialize objects', function() {
    expect(toJson({a:1,b:2})).toEqual('{"a":1,"b":2}');
    expect(toJson({a:{b:2}})).toEqual('{"a":{"b":2}}');
    expect(toJson({a:{b:{c:0}}})).toEqual('{"a":{"b":{"c":0}}}');
    expect(toJson({a:{b:0/0}})).toEqual('{"a":{"b":null}}');
  });

  it('should format objects pretty', function() {
    expect(toJson({a:1,b:2}, true)).toEqual('{\n  "a":1,\n  "b":2}');
    expect(toJson({a:{b:2}}, true)).toEqual('{\n  "a":{\n    "b":2}}');
  });

  it('should serialize array', function() {
    expect(toJson([])).toEqual('[]');
    expect(toJson([1,"b"])).toEqual('[1,"b"]');
  });

  it('should serialize RegExp', function() {
    expect(toJson(/foo/)).toEqual('"/foo/"');
    expect(toJson([1,new RegExp("foo")])).toEqual('[1,"/foo/"]');
  });

  it('should ignore functions', function() {
    expect(toJson([function() {},1])).toEqual('[null,1]');
    expect(toJson({a:function() {}})).toEqual('{}');
  });

  it('should parse null', function() {
    expect(fromJson("null")).toBeNull();
  });

  it('should parse boolean', function() {
    expect(fromJson("true")).toBeTruthy();
    expect(fromJson("false")).toBeFalsy();
  });

  it('should serialize array with empty items', function() {
    var a = [];
    a[1] = "X";
    expect(toJson(a)).toEqual('[null,"X"]');
  });

  it('should escape unicode', function() {
    expect("\u00a0".length).toEqual(1);
    expect(toJson("\u00a0").length).toEqual(8);
    expect(fromJson(toJson("\u00a0")).length).toEqual(1);
  });

  it('should serialize UTC dates', function() {
    var date = jsonStringToDate("2009-10-09T01:02:03.027Z");
    expect(toJson(date)).toEqual('"2009-10-09T01:02:03.027Z"');
    expect(fromJson('"2009-10-09T01:02:03.027Z"').getTime()).toEqual(date.getTime());
  });

  it('should prevent recursion', function() {
    var obj = {a:'b'};
    obj.recursion = obj;
    expect(angular.toJson(obj)).toEqual('{"a":"b","recursion":RECURSION}');
  });

  it('should serialize $ properties', function() {
    var obj = {$a: 'a'};
    expect(angular.toJson(obj)).toEqual('{"$a":"a"}');
  });

  it('should NOT serialize inherited properties', function() {
    // This is what native Browser does
    var obj = inherit({p:'p'});
    obj.a = 'a';
    expect(angular.toJson(obj)).toEqual('{"a":"a"}');
  });

  it('should serialize same objects multiple times', function() {
    var obj = {a:'b'};
    expect(angular.toJson({A:obj, B:obj})).toEqual('{"A":{"a":"b"},"B":{"a":"b"}}');
  });

  it('should not serialize undefined values', function() {
    expect(angular.toJson({A:undefined})).toEqual('{}');
  });

  it('should not serialize $window object', function() {
    expect(toJson(window)).toEqual('WINDOW');
  });

  it('should not serialize $document object', function() {
    expect(toJson(document)).toEqual('DOCUMENT');
  });

  it('should parse floats', function() {
    expect(fromJson("{value:2.55, name:'misko'}")).toEqual({value:2.55, name:'misko'});
  });

  it('should parse negative / possitve numbers', function() {
    expect(fromJson("{neg:-2.55, pos:+.3, a:[-2, +.1, -.2, +.3]}")).toEqual({neg:-2.55, pos:+.3, a:[-2, +.1, -.2, +.3]});
  });

  it('should parse exponents', function() {
    expect(fromJson("{exp:1.2E10}")).toEqual({exp:1.2E10});
    expect(fromJson("{exp:1.2E-10}")).toEqual({exp:1.2E-10});
    expect(fromJson("{exp:1.2e+10}")).toEqual({exp:1.2E10});
    expect(fromJson("{exp:1.2e-10}")).toEqual({exp:1.2E-10});
  });

  it('should ignore non-strings', function() {
    expect(fromJson([])).toEqual([]);
    expect(fromJson({})).toEqual({});
    expect(fromJson(null)).toEqual(null);
    expect(fromJson(undefined)).toEqual(undefined);
  });


  //run these tests only in browsers that have native JSON parser
  if (JSON && JSON.parse) {

    describe('native parser', function() {

      var nativeParser = JSON.parse;

      afterEach(function() {
        JSON.parse = nativeParser;
      });


      it('should delegate to native parser if available and boolean flag is passed', function() {
        var spy = this.spyOn(JSON, 'parse').andCallThrough();

        expect(fromJson('{}')).toEqual({});
        expect(spy).not.toHaveBeenCalled();

        expect(fromJson('{}', true)).toEqual({});
        expect(spy).toHaveBeenCalled();
      });


      it('should convert timestamp strings to Date objects', function() {
        expect(fromJson('"2010-12-22T17:23:17.974Z"', true) instanceof Date).toBe(true);
        expect(fromJson('["2010-12-22T17:23:17.974Z"]', true)[0] instanceof Date).toBe(true);
        expect(fromJson('{"t":"2010-12-22T17:23:17.974Z"}', true).t instanceof Date).toBe(true);
        expect(fromJson('{"t":["2010-12-22T17:23:17.974Z"]}', true).t[0] instanceof Date).toBe(true);
        expect(fromJson('{"t":{"t":"2010-12-22T17:23:17.974Z"}}', true).t.t instanceof Date).toBe(true);
      });
    });

  }


  describe('security', function() {
    it('should not allow naked expressions', function() {
      expect(function() {fromJson('1+2');}).
        toThrow(new Error("Syntax Error: Token '+' is an unexpected token at column 2 of the expression [1+2] starting at [+2]."));
    });

    it('should not allow naked expressions group', function() {
      expect(function() {fromJson('(1+2)');}).
        toThrow(new Error("Syntax Error: Token '(' is not valid json at column 1 of the expression [(1+2)] starting at [(1+2)]."));
    });

    it('should not allow expressions in objects', function() {
      expect(function() {fromJson('{a:abc()}');}).
        toThrow(new Error("Syntax Error: Token 'abc' is not valid json at column 4 of the expression [{a:abc()}] starting at [abc()}]."));
    });

    it('should not allow expressions in arrays', function() {
      expect(function() {fromJson('[1+2]');}).
        toThrow(new Error("Syntax Error: Token '+' is not valid json at column 3 of the expression [[1+2]] starting at [+2]]."));
    });

    it('should not allow vars', function() {
      expect(function() {fromJson('[1, x]');}).
        toThrow(new Error("Syntax Error: Token 'x' is not valid json at column 5 of the expression [[1, x]] starting at [x]]."));
    });

    it('should not allow dereference', function() {
      expect(function() {fromJson('["".constructor]');}).
        toThrow(new Error("Syntax Error: Token '.' is not valid json at column 4 of the expression [[\"\".constructor]] starting at [.constructor]]."));
    });

    it('should not allow expressions ofter valid json', function() {
      expect(function() {fromJson('[].constructor');}).
        toThrow(new Error("Syntax Error: Token '.' is not valid json at column 3 of the expression [[].constructor] starting at [.constructor]."));
    });

    it('should not allow object dereference', function() {
      expect(function() {fromJson('{a:1, b: $location, c:1}');}).toThrow();
      expect(function() {fromJson("{a:1, b:[1]['__parent__']['location'], c:1}");}).toThrow();
    });

    it('should not allow assignments', function() {
      expect(function() {fromJson("{a:1, b:[1]=1, c:1}");}).toThrow();
      expect(function() {fromJson("{a:1, b:=1, c:1}");}).toThrow();
      expect(function() {fromJson("{a:1, b:x=1, c:1}");}).toThrow();
    });

  });

  
  it('should read/write to date', function() {
    var date = new Date("Sep 10 2003 13:02:03 GMT");
    assertEquals("2003-09-10T13:02:03.000Z", jsonDateToString(date));
    assertEquals(date.getTime(), jsonStringToDate(jsonDateToString(date)).getTime());
  });
  
  
  it('should convert to date', function() {
    //full ISO8061
    expect(jsonStringToDate("2003-09-10T13:02:03.000Z")).
      toEqual(new Date("Sep 10 2003 13:02:03 GMT"));

    //no millis
    expect(jsonStringToDate("2003-09-10T13:02:03Z")).
      toEqual(new Date("Sep 10 2003 13:02:03 GMT"));

    //no seconds
    expect(jsonStringToDate("2003-09-10T13:02Z")).
      toEqual(new Date("Sep 10 2003 13:02:00 GMT"));

    //no minutes
    expect(jsonStringToDate("2003-09-10T13Z")).
      toEqual(new Date("Sep 10 2003 13:00:00 GMT"));

    //no time
    expect(jsonStringToDate("2003-09-10")).
      toEqual(new Date("Sep 10 2003 00:00:00 GMT"));
  });

  
  it('should parse date', function() {
    var date = jsonStringToDate("2003-09-10T13:02:03.000Z");
    assertEquals("2003-09-10T13:02:03.000Z", jsonDateToString(date));
    assertEquals("str", jsonStringToDate("str"));
  });


  describe('string', function() {
    it('should quote', function() {
      assertEquals(quoteUnicode('a'), '"a"');
      assertEquals(quoteUnicode('\\'), '"\\\\"');
      assertEquals(quoteUnicode("'a'"), '"\'a\'"');
      assertEquals(quoteUnicode('"a"'), '"\\"a\\""');
      assertEquals(quoteUnicode('\n\f\r\t'), '"\\n\\f\\r\\t"');
    });

    it('should quote slashes', function() {
      assertEquals('"7\\\\\\\"7"', quoteUnicode("7\\\"7"));
    });

    it('should quote unicode', function() {
      assertEquals('"abc\\u00a0def"', quoteUnicode('abc\u00A0def'));
    });

  });
  
});