-
-
Notifications
You must be signed in to change notification settings - Fork 94
/
Copy pathindex.test.js
188 lines (160 loc) · 6.76 KB
/
index.test.js
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
import diff from './';
describe('.diff', () => {
describe('base case', () => {
describe('equal', () => {
test.each([
['int', 1],
['string', 'a'],
['boolean', true],
['null', null],
['undefined', undefined],
['object', { a: 1 }],
['array', [1]],
['function', () => ({})],
['NaN', NaN],
['date', new Date()],
['date with milliseconds', new Date('2017-01-01T00:00:00.637Z')],
])('returns empty object when given values of type %s are equal', (type, value) => {
expect(diff(value, value)).toEqual({});
});
});
describe('not equal and not object', () => {
test.each([
[1, 2],
['a', 'b'],
[true, false],
['hello', null],
['hello', undefined],
[null, undefined],
[undefined, null],
[null, { a: 1 }],
['872983', { areaCode: '+44', number: '872983' }],
[100, () => ({})],
[() => ({}), 100],
[new Date('2017-01-01'), new Date('2017-01-02')],
[new Date('2017-01-01T00:00:00.636Z'), new Date('2017-01-01T00:00:00.637Z')],
])('returns right hand side value when different to left hand side value (%s, %s)', (lhs, rhs) => {
expect(diff(lhs, rhs)).toEqual(rhs);
});
});
});
describe('recursive case', () => {
describe('object', () => {
test('returns right hand side value when given objects are different', () => {
expect(diff({ a: 1 }, { a: 2 })).toEqual({ a: 2 });
});
test('returns right hand side value when right hand side value is null', () => {
expect(diff({ a: 1 }, { a: null })).toEqual({ a: null });
});
test('returns subset of right hand side value when sibling objects differ', () => {
expect(diff({ a: { b: 1 }, c: 2 }, { a: { b: 1 }, c: 3 })).toEqual({ c: 3 });
});
test('returns subset of right hand side value when nested values differ', () => {
expect(diff({ a: { b: 1, c: 2 } }, { a: { b: 1, c: 3 } })).toEqual({ a: { c: 3 } });
});
test('returns subset of right hand side value when nested values differ at multiple paths', () => {
expect(diff({ a: { b: 1 }, c: 2, d: { e: 100 } }, { a: { b: 99 }, c: 3, d: { e: 100 } })).toEqual({ a: { b: 99 }, c: 3 });
});
test('returns subset of right hand side value when a key value has been deleted', () => {
expect(diff({ a: { b: 1 }, c: 2, d: { e: 100 } }, { a: { b: 1 }, c: 2, d: {} })).toEqual({ d: { e: undefined } });
});
test('returns subset of right hand side value when a key value has been added', () => {
expect(diff({ a: 1 }, { a: 1, b: 2 })).toEqual({ b: 2 });
});
test('returns keys as undefined when deleted from right hand side', () => {
expect(diff({ a: 1, b: { c: 2 } }, { a: 1 })).toEqual({ b: undefined });
});
});
describe('arrays', () => {
test('returns right hand side value as object of indices to value when arrays are different', () => {
expect(diff([1], [2])).toEqual({ 0: 2 });
});
test('returns subset of right hand side array as object of indices to value when arrays differs at multiple indicies', () => {
expect(diff([1, 2, 3], [9, 8, 3])).toEqual({ 0: 9, 1: 8 });
});
test('returns subset of right hand side array as object of indices to value when right hand side array has deletions', () => {
expect(diff([1, 2, 3], [1, 3])).toEqual({ 1: 3, 2: undefined });
});
test('returns subset of right hand side array as object of indices to value when right hand side array has additions', () => {
expect(diff([1, 2, 3], [1, 2, 3, 9])).toEqual({ 3: 9 });
});
});
describe('date', () => {
const lhs = new Date('2016');
const rhs = new Date('2017');
test('returns empty object when dates are equal', () => {
expect(diff(new Date('2016'), new Date('2016'))).toEqual({});
});
test('returns right hand side date when updated', () => {
expect(diff({ date: lhs }, { date: rhs })).toEqual({ date: rhs });
expect(diff([lhs], [rhs])).toEqual({ 0: rhs });
});
test('returns undefined when date deleted', () => {
expect(diff({ date: lhs }, {})).toEqual({ date: undefined });
expect(diff([lhs], [])).toEqual({ 0: undefined });
});
test('returns right hand side when date is added', () => {
expect(diff({}, { date: rhs })).toEqual({ date: rhs });
expect(diff([], [rhs])).toEqual({ 0: rhs });
});
});
describe('object create null', () => {
test('returns right hand side value when given objects are different', () => {
const lhs = Object.create(null);
lhs.a = 1;
const rhs = Object.create(null);
rhs.a = 2;
expect(diff(lhs, rhs)).toEqual({ a: 2 });
});
test('returns subset of right hand side value when sibling objects differ', () => {
const lhs = Object.create(null);
lhs.a = { b: 1 };
lhs.c = 2;
const rhs = Object.create(null);
rhs.a = { b: 1 };
rhs.c = 3;
expect(diff(lhs, rhs)).toEqual({ c: 3 });
});
test('returns subset of right hand side value when nested values differ', () => {
const lhs = Object.create(null);
lhs.a = { b: 1, c: 2 };
const rhs = Object.create(null);
rhs.a = { b: 1, c: 3 };
expect(diff(lhs, rhs)).toEqual({ a: { c: 3 } });
});
test('returns subset of right hand side value when nested values differ at multiple paths', () => {
const lhs = Object.create(null);
lhs.a = { b: 1 };
lhs.c = 2;
const rhs = Object.create(null);
rhs.a = { b: 99 };
rhs.c = 3;
expect(diff(lhs, rhs)).toEqual({ a: { b: 99 }, c: 3 });
});
test('returns subset of right hand side value when a key value has been deleted', () => {
const lhs = Object.create(null);
lhs.a = { b: 1 };
lhs.c = 2;
const rhs = Object.create(null);
rhs.a = { b: 1 };
expect(diff(lhs, rhs)).toEqual({ c: undefined });
});
test('returns subset of right hand side value when a key value has been added', () => {
const lhs = Object.create(null);
lhs.a = 1;
const rhs = Object.create(null);
rhs.a = 1;
rhs.b = 2;
expect(diff(lhs, rhs)).toEqual({ b: 2 });
});
});
describe('nested NaN', () => {
test('returns empty object when there is nested NaN value', () => {
expect(diff({ a: 1, b: NaN }, { a: 1, b: NaN })).toEqual({});
});
test('returns subset of right hand side when a left hand side value is not a NaN', () => {
expect(diff({ a: 1, b: 2 }, { a: 1, b: NaN })).toEqual({ b: NaN });
});
});
});
});