forked from facebook/react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathImmutableObject-test.js
More file actions
296 lines (261 loc) · 8.79 KB
/
ImmutableObject-test.js
File metadata and controls
296 lines (261 loc) · 8.79 KB
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
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
/**
* Copyright 2013-2014 Facebook, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* @emails react-core
*/
"use strict";
require('mock-modules')
.dontMock('ImmutableObject');
var ImmutableObject;
/**
* To perform performance testing of using `ImmutableObject` vs. not using
* `ImmutableObject`, such testing must be done with __DEV__ set to false.
*/
describe('ImmutableObject', function() {
var message;
beforeEach(function() {
require('mock-modules').dumpCache();
ImmutableObject = require('ImmutableObject');
this.addMatchers({
/**
* Equivalent with respect to serialization. Must stringify because
* constructors are different and other comparison methods will not
* consider them structurally equal. Probably not useful for use outside
* of this test module.
*/
toBeSeriallyEqualTo: function(expected) {
var actual = this.actual;
var notText = this.isNot ? " not" : "";
this.message = function () {
return "Expected " + JSON.stringify(actual) + notText +
" to be serially equal to " + JSON.stringify(expected);
};
return JSON.stringify(actual) === JSON.stringify(expected);
}
});
});
/**
* We are in __DEV__ by default.
*/
var testDev = function(message, testFunc) {
it(message, testFunc);
};
var testProd = function(message, testFunc) {
// Temporarily enter production mode
window.__DEV__ = false;
it(message, testFunc);
window.__DEV__ = true;
};
var testDevAndProd = function(message, testFunc) {
testDev(message + ':DEV', testFunc);
testProd(message + ':PROD', testFunc);
};
testDev('should be running in DEV', function() {
expect(window.__DEV__).toBe(true);
});
testDev('should require initial map to be an object', function() {
expect(function() {
new ImmutableObject([1,2,3]);
}).toThrow();
expect(function() {
new ImmutableObject('asdf');
}).toThrow();
expect(function() {
new ImmutableObject({oldField: 'asdf', fieldTwo: null});
}).not.toThrow();
});
testDev('should not exceed maximum call stack size with nodes', function() {
var node = document.createElement('div');
var object = new ImmutableObject({node: node});
expect(object.node).toBe(node);
});
testDevAndProd('should not throw when not mutating directly', function() {
var io = new ImmutableObject({oldField: 'asdf'});
expect(function() {
ImmutableObject.set(io, {newField: null}); // not a mutation!
}).not.toThrow();
});
testDev('should prevent shallow field addition when strict', function() {
if (window.callPhantom) return;
expect(function() {
var io = new ImmutableObject({oldField: 'asdf'});
io.newField = 'this will not work';
}).toThrow();
});
testDev('should prevent shallow field mutation when strict', function() {
if (window.callPhantom) return;
expect(function() {
var io = new ImmutableObject({oldField: 'asdf'});
io.oldField = 'this will not work!';
}).toThrow();
});
testDev('should prevent deep field addition when strict', function() {
if (window.callPhantom) return;
expect(function() {
var io =
new ImmutableObject({shallowField: {deepField: {oldField: null}}});
io.shallowField.deepField.oldField = 'this will not work!';
}).toThrow();
});
testDev('should prevent deep field mutation when strict', function() {
if (window.callPhantom) return;
expect(function() {
var io =
new ImmutableObject({shallowField: {deepField: {oldField: null}}});
io.shallowField.deepField.newField = 'this will not work!';
}).toThrow();
});
testDevAndProd(
'should create object with same structure when set with {}',
function() {
var beforeIO =
new ImmutableObject({shallowField: {deepField: {oldField: null}}});
var afterIO = ImmutableObject.set(beforeIO, {});
expect(afterIO).toBeSeriallyEqualTo(beforeIO);
expect(afterIO).not.toBe(beforeIO);
}
);
testDevAndProd(
'should create distinct object with shallow field insertion',
function() {
var beforeStructure = {
oldShallowField: {
deepField: {
oldField: null
}
}
};
var delta = {
newShallowField: 'newShallowFieldHere'
};
var expectedAfterStructure = {
oldShallowField: {
deepField: {
oldField: null
}
},
newShallowField: 'newShallowFieldHere'
};
var beforeIO = new ImmutableObject(beforeStructure);
var afterIO = ImmutableObject.set(beforeIO, delta);
expect(afterIO).toBeSeriallyEqualTo(expectedAfterStructure);
expect(afterIO).not.toBe(beforeIO);
}
);
testDevAndProd(
'should create distinct object with shallow field mutation',
function() {
var beforeStructure = {
oldShallowField: {
deepField: {
oldField: null
}
}
};
var delta = {
oldShallowField: 'this will clobber the old field'
};
var expectedAfterStructure = {
oldShallowField: 'this will clobber the old field'
};
var beforeIO = new ImmutableObject(beforeStructure);
var afterIO = ImmutableObject.set(beforeIO, delta);
expect(afterIO).toBeSeriallyEqualTo(expectedAfterStructure);
expect(afterIO).not.toBe(beforeIO);
}
);
message = 'should create distinct object with deep field insertion';
testDevAndProd(message, function() {
var beforeStructure = {
oldShallowField: {
deepField: {
oldField: null
}
}
};
var delta = {
oldShallowField: {newDeepField: 'hello'}
};
// ImmutableObject does not yet support deep merging with
// ImmutableObject.set().
var expectedAfterStructure = {
oldShallowField: {newDeepField: 'hello'}
};
var beforeIO = new ImmutableObject(beforeStructure);
var afterIO = ImmutableObject.set(beforeIO, delta);
expect(afterIO).toBeSeriallyEqualTo(expectedAfterStructure);
expect(afterIO).not.toBe(beforeIO);
});
message =
'should tolerate arrays at deeper levels and prevent mutation on them';
testDevAndProd(message, function() {
if (window.callPhantom) {
// PhantomJS has a bug with Object.freeze and Arrays.
// https://github.com/ariya/phantomjs/issues/10817
return;
}
var beforeStructure = {
shallowField: [1,'second field',3]
};
var io = new ImmutableObject(beforeStructure);
expect(function() {
io.newField = 'nope!';
}).toThrow();
expect(function() {
io.shallowField[0] = 'nope!';
}).toThrow();
expect(io.shallowField[1]).toEqual('second field');
});
message = 'should provide a setField interface as sugar for set()';
testDevAndProd(message, function() {
var beforeIO = new ImmutableObject({initialField: null});
var afterIO =
ImmutableObject.setField(beforeIO, 'anotherField', 'anotherValue');
expect(afterIO).toBeSeriallyEqualTo({
initialField: null,
anotherField: 'anotherValue'
});
expect(afterIO).not.toBe(beforeIO);
});
message = 'should recursively create distinct objects when deep copying';
testDevAndProd(message, function() {
var beforeIO = new ImmutableObject({
a: {b: 'b', c: {}, d: 'd', e: new ImmutableObject({f: 'f'}) }
});
var afterIO = ImmutableObject.setDeep(beforeIO, {
a: {b: {}, c: 'C', e: {f: 'F', g: 'G'}, h: 'H'}
});
expect(afterIO).toBeSeriallyEqualTo({
a: {b: {}, c: 'C', d: 'd', e: {f: 'F', g: 'G'}, h: 'H'}
});
expect(afterIO).not.toBe(beforeIO);
expect(afterIO.a).not.toBe(beforeIO.a);
expect(afterIO.a.e).not.toBe(beforeIO.a.e);
});
testDevAndProd('should deep copy member immutability', function() {
var beforeIO = new ImmutableObject({
a: {b: new ImmutableObject({c: 'c'}), e: {f: 'f'}}
});
var afterIO = ImmutableObject.setDeep(beforeIO, {
a: {b: {d: 'D'}, e: new ImmutableObject({g: 'G'})}
});
expect(afterIO).toBeSeriallyEqualTo({
a: {b: {c: 'c', d: 'D'}, e: {f: 'f', g: 'G'}}
});
expect(afterIO instanceof ImmutableObject).toBe(true);
expect(afterIO.a.b instanceof ImmutableObject).toBe(true);
expect(afterIO.a.e instanceof ImmutableObject).toBe(true);
});
});