-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathobjects.test.js
More file actions
344 lines (340 loc) · 10.2 KB
/
objects.test.js
File metadata and controls
344 lines (340 loc) · 10.2 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
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
import Objects from './objects';
describe('.toCamelCase', () => {
it('converts object keys from snake_case to camelCase.', () => {
const input = {
first_key: 'value1',
second_key: 'value2',
nested_object: {
nested_key: 'nestedValue'
}
};
const expectedOutput = {
firstKey: 'value1',
secondKey: 'value2',
nestedObject: {
nestedKey: 'nestedValue'
}
};
expect(Objects.toCamelCase(input)).toEqual(expectedOutput);
});
it('converts object keys from snake_case to camelCase but retains always-caps words if non-first word in key.', () => {
const input = {
first_id: 'value1',
second_http: 'value2',
ftp: {
nested_key: 'nestedValue',
some_id: 133,
id_some: 323
}
};
const expectedOutput = {
firstID: 'value1',
secondHTTP: 'value2',
ftp: {
nestedKey: 'nestedValue',
someID: 133,
idSome: 323
}
};
expect(Objects.toCamelCase(input)).toEqual(expectedOutput);
});
it('converts array of objects keys from snake_case to camelCase.', () => {
const input = [
{ first_key: 'value1' },
{ second_key: 'value2' }
];
const expectedOutput = [
{ firstKey: 'value1' },
{ secondKey: 'value2' }
];
expect(Objects.toCamelCase(input)).toEqual(expectedOutput);
});
it('returns null if input is null.', () => {
expect(Objects.toCamelCase(null)).toBeNull();
});
it('returns the same value if input is not an object or array.', () => {
expect(Objects.toCamelCase('string')).toBe('string');
expect(Objects.toCamelCase(123)).toBe(123);
expect(Objects.toCamelCase(true)).toBe(true);
});
it('handles nested arrays and objects.', () => {
const input = {
first_key: 'value1',
nested_array: [
{ second_key: 'value2' },
{ third_key: 'value3' }
],
nested_object: {
fourth_key: 'value4',
another_nested_object: {
fifth_key: 'value5'
}
}
};
const expectedOutput = {
firstKey: 'value1',
nestedArray: [
{ secondKey: 'value2' },
{ thirdKey: 'value3' }
],
nestedObject: {
fourthKey: 'value4',
anotherNestedObject: {
fifthKey: 'value5'
}
}
};
expect(Objects.toCamelCase(input)).toEqual(expectedOutput);
});
});
describe('.toSnakeCase', () => {
it('converts object keys from camelCase to snake_case.', () => {
const input = {
firstKey: 'value1',
secondKey: 'value2',
nestedObject: {
nestedKey: 'nestedValue'
}
};
const expectedOutput = {
first_key: 'value1',
second_key: 'value2',
nested_object: {
nested_key: 'nestedValue'
}
};
expect(Objects.toSnakeCase(input)).toEqual(expectedOutput);
});
it('converts array of objects keys from camelCase to snake_case.', () => {
const input = [
{ firstKey: 'value1' },
{ secondKey: 'value2' }
];
const expectedOutput = [
{ first_key: 'value1' },
{ second_key: 'value2' }
];
expect(Objects.toSnakeCase(input)).toEqual(expectedOutput);
});
it('returns null if input is null.', () => {
expect(Objects.toSnakeCase(null)).toBeNull();
});
it('returns the same value if input is not an object or array.', () => {
expect(Objects.toSnakeCase('string')).toBe('string');
expect(Objects.toSnakeCase(123)).toBe(123);
expect(Objects.toSnakeCase(true)).toBe(true);
});
it('handles nested arrays and objects.', () => {
const input = {
firstKey: 'value1',
nestedArray: [
{ secondKey: 'value2' },
{ thirdKey: 'value3' }
],
nestedObject: {
fourthKey: 'value4',
anotherNestedObject: {
fifthKey: 'value5'
}
}
};
const expectedOutput = {
first_key: 'value1',
nested_array: [
{ second_key: 'value2' },
{ third_key: 'value3' }
],
nested_object: {
fourth_key: 'value4',
another_nested_object: {
fifth_key: 'value5'
}
}
};
expect(Objects.toSnakeCase(input)).toEqual(expectedOutput);
});
});
describe('.isLiteral', () => {
it('returns true when object is an object literal.', () => {
expect(Objects.isLiteral({})).toEqual(true);
expect(Objects.isLiteral(Object.create({}))).toEqual(true);
expect(Objects.isLiteral(Object.create(null))).toEqual(true);
expect(Objects.isLiteral(new Object())).toEqual(true);
});
it('returns true when object is not an object literal.', () => {
expect(Objects.isLiteral(new Date())).toEqual(false);
expect(Objects.isLiteral([{}])).toEqual(false);
expect(Objects.isLiteral(null)).toEqual(false);
expect(Objects.isLiteral(undefined)).toEqual(false);
});
});
describe('.flatten', () => {
it('flattens a simple object.', () => {
const input = {
a: 1,
b: 2,
c: 3
};
const expectedOutput = {
a: 1,
b: 2,
c: 3
};
expect(Objects.flatten(input)).toEqual(expectedOutput);
});
it('flattens a nested object.', () => {
const input = {
a: 1,
b: {
c: 2,
d: {
e: 3
}
}
};
const expectedOutput = {
'a': 1,
'b.c': 2,
'b.d.e': 3
};
expect(Objects.flatten(input)).toEqual(expectedOutput);
});
it('flattens an object with arrays.', () => {
const input = {
a: 1,
b: [2, 3, { c: 4 }]
};
const expectedOutput = {
'a': 1,
'b': [2, 3, { c: 4 }]
};
expect(Objects.flatten(input)).toEqual(expectedOutput);
});
it('flattens an object with other non-array, non-object, values.', () => {
let h = new Date();
const input = {
a: 1,
b: [2, 3, { c: 4 }],
c: true,
d: 'hello world',
e: {
f: null,
g: undefined,
h: h
}
};
const expectedOutput = {
a: 1,
b: [2, 3, { c: 4 }],
c: true,
d: 'hello world',
'e.f': null,
'e.g': undefined,
'e.h': h
};
expect(Objects.flatten(input)).toEqual(expectedOutput);
});
it('flattens an object with a custom separator.', () => {
const input = {
a: 1,
b: {
c: 2,
d: {
e: 3
}
}
};
const expectedOutput = {
'a': 1,
'b-c': 2,
'b-d-e': 3
};
expect(Objects.flatten(input, { separator: '-' })).toEqual(expectedOutput);
});
it('flattens an object with a blank separator to camelCase.', () => {
const input = {
a: 1,
b: {
comma: 2,
dongle: {
elephant: 3
}
}
};
const expectedOutput = {
'a': 1,
'bComma': 2,
'bDongleElephant': 3
};
expect(Objects.flatten(input, { separator: '' })).toEqual(expectedOutput);
});
it('flattens an object with a blank separator to camelCase handling words that are always in caps.', () => {
const input = {
a: 1,
b: {
id: 21,
dongle: {
http: 3
}
},
id: 'hi'
};
const expectedOutput = {
a: 1,
bID: 21,
bDongleHTTP: 3,
id: 'hi'
};
expect(Objects.flatten(input, { separator: '' })).toEqual(expectedOutput);
});
it('flattens an object, removing any excised keys', () => {
const input = {
a: 1,
dongle: {
test: 1
},
b: {
id: 21,
dongle: {
http: 3
}
},
id: 'hi'
};
const expectedOutput = {
a: 1,
bID: 21,
id: 'hi'
};
expect(Objects.flatten(input, { separator: '', excise: ['dongle'] })).toEqual(expectedOutput);
});
it('flattens an object with a prefix.', () => {
const input = {
a: 1,
b: {
c: 2
}
};
const expectedOutput = {
'prefix.a': 1,
'prefix.b.c': 2
};
expect(Objects.flatten(input, '.', 'prefix')).toEqual(expectedOutput);
});
it('returns an empty object if input is an empty object.', () => {
const input = {};
const expectedOutput = {};
expect(Objects.flatten(input)).toEqual(expectedOutput);
});
it('returns a null if input is null.', () => {
expect(Objects.flatten(null)).toBeNull();
});
it('returns a undefined if input is undefined.', () => {
expect(Objects.flatten(undefined)).toBeUndefined();
});
it('returns the same value if input is not an object.', () => {
expect(Objects.flatten('string')).toBe('string');
expect(Objects.flatten(123)).toBe(123);
expect(Objects.flatten(true)).toBe(true);
});
});