-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathJsonDiffComponent.test.tsx
More file actions
193 lines (165 loc) · 4.79 KB
/
JsonDiffComponent.test.tsx
File metadata and controls
193 lines (165 loc) · 4.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
import { describe, expect } from '@jest/globals';
import * as fc from 'fast-check';
import renderer from 'react-test-renderer';
import React from 'react';
import { JsonValue, JsonDiffComponent, StyleCustomization } from './JsonDiffComponent';
const runSnapshotTest = (
jsonA: JsonValue,
jsonB: JsonValue,
styleCustomization: Partial<StyleCustomization>,
inlineSnapshotWithElisions?: string,
inlineSnapshotWithoutElisions?: string // Original json-diff behavior
) => {
// Original json-diff behavior
{
const tree = renderer
.create(
<JsonDiffComponent
jsonA={jsonA}
jsonB={jsonB}
styleCustomization={styleCustomization}
jsonDiffOptions={{ showElisionsForObjects: false }}
/>
)
.toJSON();
if (inlineSnapshotWithoutElisions != null) {
expect(tree).toMatchInlineSnapshot(inlineSnapshotWithoutElisions);
} else {
expect(tree).toMatchSnapshot();
}
}
// With elisions for objects
{
const tree = renderer
.create(
<JsonDiffComponent jsonA={jsonA} jsonB={jsonB} styleCustomization={styleCustomization} />
)
.toJSON();
if (inlineSnapshotWithElisions != null) {
expect(tree).toMatchInlineSnapshot(inlineSnapshotWithElisions);
} else {
expect(tree).toMatchSnapshot();
}
}
};
const runSimpleSnapshotTest = (jsonA: JsonValue, jsonB: JsonValue) => {
runSnapshotTest(jsonA, jsonB, {});
};
// A copy-paste of example from this page: https://en.wikipedia.org/wiki/JSON
const wikipediaJsonExample = {
firstName: 'John',
lastName: 'Smith',
isAlive: true,
age: 27,
address: {
streetAddress: '21 2nd Street',
city: 'New York',
state: 'NY',
postalCode: '10021-3100',
},
phoneNumbers: [
{
type: 'home',
number: '212 555-1234',
},
{
type: 'office',
number: '646 555-4567',
},
],
children: ['Catherine', 'Thomas', 'Trevor'],
spouse: null,
};
describe('<JsonDiffComponent />', () => {
it('it should render correctly (objects vs object)', () => {
const jsonA = {
key1: 'value1',
key2: 123,
key3: [1, 2, 3],
};
const jsonB = {
key1: 'value',
key2: 123,
key3: [1, 2, 3, 4],
};
runSimpleSnapshotTest(jsonA, jsonB);
});
it('it should render correctly (array vs array)', () => {
const jsonA = [1, 2, 3];
const jsonB = [1, 2, 3, 4];
runSimpleSnapshotTest(jsonA, jsonB);
});
it('it should render correctly (object vs array)', () => {
const jsonA = {
key1: 'value1',
key2: 123,
key3: [1, 2, 3],
};
const jsonB = [1, 2, 3, 4];
runSimpleSnapshotTest(jsonA, jsonB);
});
it('should pick up CSS classes from styleCustomization', () => {
const jsonA = { key1: 'value1', key2: 123, key3: [1, 2, 3] };
const jsonB = { key1: 'value', key2: 123, key3: [1, 2, 3, 4] };
const styleCustomization: Partial<StyleCustomization> = {
additionClassName: 'custom_addition_class',
deletionClassName: 'custom_deletion_class',
unchangedClassName: 'custom_unchanged_class',
frameClassName: 'custom_frame_class',
};
runSnapshotTest(jsonA, jsonB, styleCustomization);
});
it('should pick up CSS styles from styleCustomization', () => {
const jsonA = { key1: 'value1', key2: 123, key3: [1, 2, 3] };
const jsonB = { key1: 'value', key2: 123, key3: [1, 2, 3, 4] };
const styleCustomization: Partial<StyleCustomization> = {
additionLineStyle: { lineHeight: 1 },
deletionLineStyle: { lineHeight: 2 },
unchangedLineStyle: { lineHeight: 3 },
frameStyle: { backgroundColor: 'black' },
};
runSnapshotTest(jsonA, jsonB, styleCustomization);
});
it('should return an empty div if there are no changes (snapshot)', () => {
runSimpleSnapshotTest({}, {});
});
it('should return an empty div if there are no changes (property)', () => {
fc.assert(
fc.property(fc.json(), (json) => {
const parsedJson = JSON.parse(json);
const inlineSnapshot = `
<div
className="diff"
style={null}
/>
`;
runSnapshotTest(parsedJson, parsedJson, {}, inlineSnapshot, inlineSnapshot);
})
);
});
it('custom elisions renderer works', () => {
const jsonB = {
...wikipediaJsonExample,
age: 30,
phoneNumbers: [
{
type: 'home',
number: '212 555-1234',
},
],
};
const tree = renderer
.create(
<JsonDiffComponent
jsonA={wikipediaJsonExample}
jsonB={jsonB}
jsonDiffOptions={{
maxElisions: 2,
renderElision: (n, max) => (n < max ? [...Array(n)].map(() => '…') : `… (${n})`),
}}
/>
)
.toJSON();
expect(tree).toMatchSnapshot();
});
});