@squiz/dx-json-schema-lib 1.82.2 → 1.82.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/README.md +132 -0
- package/lib/JsonSchemaService.allOf.spec.d.ts +1 -0
- package/lib/JsonSchemaService.allOf.spec.js +528 -0
- package/lib/JsonSchemaService.allOf.spec.js.map +1 -0
- package/lib/JsonSchemaService.d.ts +24 -0
- package/lib/JsonSchemaService.js +211 -2
- package/lib/JsonSchemaService.js.map +1 -1
- package/lib/hasAllOfCombinator.spec.d.ts +1 -0
- package/lib/hasAllOfCombinator.spec.js +394 -0
- package/lib/hasAllOfCombinator.spec.js.map +1 -0
- package/package.json +4 -2
- package/src/JsonSchemaService.allOf.spec.ts +573 -0
- package/src/JsonSchemaService.ts +231 -2
- package/src/hasAllOfCombinator.spec.ts +456 -0
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -0,0 +1,394 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const JsonSchemaService_1 = require("./JsonSchemaService");
|
|
4
|
+
const JsonSchemaService_2 = require("./JsonSchemaService");
|
|
5
|
+
const TypeResolverBuilder_1 = require("./jsonTypeResolution/TypeResolverBuilder");
|
|
6
|
+
describe('JSONSchemaService - hasAllOfCombinator', () => {
|
|
7
|
+
let jsonSchemaService;
|
|
8
|
+
beforeAll(() => {
|
|
9
|
+
const typeResolverBuilder = new TypeResolverBuilder_1.TypeResolverBuilder();
|
|
10
|
+
const typeResolver = typeResolverBuilder.build();
|
|
11
|
+
jsonSchemaService = new JsonSchemaService_1.JSONSchemaService(typeResolver, JsonSchemaService_2.ComponentInputMetaSchema);
|
|
12
|
+
});
|
|
13
|
+
// Helper to access private method
|
|
14
|
+
const hasAllOfCombinator = (schema) => jsonSchemaService.hasAllOfCombinator(schema);
|
|
15
|
+
describe('Direct allOf detection', () => {
|
|
16
|
+
it('should detect direct allOf usage', () => {
|
|
17
|
+
const schema = {
|
|
18
|
+
type: 'object',
|
|
19
|
+
allOf: [{ properties: { name: { type: 'string' } } }, { properties: { age: { type: 'number' } } }],
|
|
20
|
+
};
|
|
21
|
+
expect(hasAllOfCombinator(schema)).toBe(true);
|
|
22
|
+
});
|
|
23
|
+
it('should detect empty allOf array', () => {
|
|
24
|
+
const schema = {
|
|
25
|
+
type: 'object',
|
|
26
|
+
allOf: [],
|
|
27
|
+
};
|
|
28
|
+
expect(hasAllOfCombinator(schema)).toBe(true);
|
|
29
|
+
});
|
|
30
|
+
});
|
|
31
|
+
describe('Nested allOf detection', () => {
|
|
32
|
+
it('should detect allOf in properties', () => {
|
|
33
|
+
const schema = {
|
|
34
|
+
type: 'object',
|
|
35
|
+
properties: {
|
|
36
|
+
user: {
|
|
37
|
+
allOf: [{ properties: { name: { type: 'string' } } }, { properties: { email: { type: 'string' } } }],
|
|
38
|
+
},
|
|
39
|
+
},
|
|
40
|
+
};
|
|
41
|
+
expect(hasAllOfCombinator(schema)).toBe(true);
|
|
42
|
+
});
|
|
43
|
+
it('should detect allOf in deeply nested properties', () => {
|
|
44
|
+
const schema = {
|
|
45
|
+
type: 'object',
|
|
46
|
+
properties: {
|
|
47
|
+
componentContent: {
|
|
48
|
+
type: 'object',
|
|
49
|
+
properties: {
|
|
50
|
+
heroSection: {
|
|
51
|
+
allOf: [
|
|
52
|
+
{ properties: { title: { type: 'string' } } },
|
|
53
|
+
{ properties: { subtitle: { type: 'string' } } },
|
|
54
|
+
],
|
|
55
|
+
},
|
|
56
|
+
},
|
|
57
|
+
},
|
|
58
|
+
},
|
|
59
|
+
};
|
|
60
|
+
expect(hasAllOfCombinator(schema)).toBe(true);
|
|
61
|
+
});
|
|
62
|
+
it('should detect allOf in array items', () => {
|
|
63
|
+
const schema = {
|
|
64
|
+
type: 'object',
|
|
65
|
+
properties: {
|
|
66
|
+
items: {
|
|
67
|
+
type: 'array',
|
|
68
|
+
items: {
|
|
69
|
+
allOf: [{ properties: { id: { type: 'number' } } }, { properties: { name: { type: 'string' } } }],
|
|
70
|
+
},
|
|
71
|
+
},
|
|
72
|
+
},
|
|
73
|
+
};
|
|
74
|
+
expect(hasAllOfCombinator(schema)).toBe(true);
|
|
75
|
+
});
|
|
76
|
+
});
|
|
77
|
+
describe('Combinator traversal', () => {
|
|
78
|
+
it('should detect allOf within oneOf', () => {
|
|
79
|
+
const schema = {
|
|
80
|
+
type: 'object',
|
|
81
|
+
oneOf: [
|
|
82
|
+
{
|
|
83
|
+
allOf: [{ properties: { type: { const: 'A' } } }, { properties: { valueA: { type: 'string' } } }],
|
|
84
|
+
},
|
|
85
|
+
{ properties: { type: { const: 'B' } } },
|
|
86
|
+
],
|
|
87
|
+
};
|
|
88
|
+
expect(hasAllOfCombinator(schema)).toBe(true);
|
|
89
|
+
});
|
|
90
|
+
it('should detect allOf within anyOf', () => {
|
|
91
|
+
const schema = {
|
|
92
|
+
type: 'object',
|
|
93
|
+
anyOf: [
|
|
94
|
+
{ properties: { simple: { type: 'string' } } },
|
|
95
|
+
{
|
|
96
|
+
allOf: [{ properties: { complex: { type: 'object' } } }, { properties: { nested: { type: 'array' } } }],
|
|
97
|
+
},
|
|
98
|
+
],
|
|
99
|
+
};
|
|
100
|
+
expect(hasAllOfCombinator(schema)).toBe(true);
|
|
101
|
+
});
|
|
102
|
+
it('should detect allOf within not schema', () => {
|
|
103
|
+
const schema = {
|
|
104
|
+
type: 'object',
|
|
105
|
+
not: {
|
|
106
|
+
allOf: [{ properties: { forbidden: { type: 'string' } } }, { properties: { invalid: { type: 'number' } } }],
|
|
107
|
+
},
|
|
108
|
+
};
|
|
109
|
+
expect(hasAllOfCombinator(schema)).toBe(true);
|
|
110
|
+
});
|
|
111
|
+
});
|
|
112
|
+
describe('Conditional schema detection', () => {
|
|
113
|
+
it('should detect allOf in if condition', () => {
|
|
114
|
+
const schema = {
|
|
115
|
+
type: 'object',
|
|
116
|
+
if: {
|
|
117
|
+
allOf: [{ properties: { type: { const: 'special' } } }, { properties: { mode: { const: 'advanced' } } }],
|
|
118
|
+
},
|
|
119
|
+
then: { properties: { specialValue: { type: 'string' } } },
|
|
120
|
+
};
|
|
121
|
+
expect(hasAllOfCombinator(schema)).toBe(true);
|
|
122
|
+
});
|
|
123
|
+
it('should detect allOf in then branch', () => {
|
|
124
|
+
const schema = {
|
|
125
|
+
type: 'object',
|
|
126
|
+
if: { properties: { type: { const: 'special' } } },
|
|
127
|
+
then: {
|
|
128
|
+
allOf: [{ properties: { requiredProp: { type: 'string' } } }, { required: ['requiredProp'] }],
|
|
129
|
+
},
|
|
130
|
+
};
|
|
131
|
+
expect(hasAllOfCombinator(schema)).toBe(true);
|
|
132
|
+
});
|
|
133
|
+
it('should detect allOf in else branch', () => {
|
|
134
|
+
const schema = {
|
|
135
|
+
type: 'object',
|
|
136
|
+
if: { properties: { type: { const: 'simple' } } },
|
|
137
|
+
then: { properties: { simpleValue: { type: 'string' } } },
|
|
138
|
+
else: {
|
|
139
|
+
allOf: [
|
|
140
|
+
{ properties: { complexValue: { type: 'object' } } },
|
|
141
|
+
{ properties: { metadata: { type: 'object' } } },
|
|
142
|
+
],
|
|
143
|
+
},
|
|
144
|
+
};
|
|
145
|
+
expect(hasAllOfCombinator(schema)).toBe(true);
|
|
146
|
+
});
|
|
147
|
+
});
|
|
148
|
+
describe('Complex nested scenarios', () => {
|
|
149
|
+
it('should detect allOf in Hero Banner-like schema', () => {
|
|
150
|
+
const heroBannerSchema = {
|
|
151
|
+
type: 'object',
|
|
152
|
+
properties: {
|
|
153
|
+
componentContent: {
|
|
154
|
+
allOf: [
|
|
155
|
+
{
|
|
156
|
+
if: { properties: { heroType: { const: 'Supporting content' } } },
|
|
157
|
+
then: {
|
|
158
|
+
type: 'object',
|
|
159
|
+
properties: {
|
|
160
|
+
heroType: { type: 'string' },
|
|
161
|
+
heading: { type: 'string' },
|
|
162
|
+
content: { type: 'string' },
|
|
163
|
+
links: {
|
|
164
|
+
type: 'array',
|
|
165
|
+
items: {
|
|
166
|
+
type: 'object',
|
|
167
|
+
properties: {
|
|
168
|
+
text: { type: 'string' },
|
|
169
|
+
url: { type: 'string' },
|
|
170
|
+
target: { type: 'string' },
|
|
171
|
+
},
|
|
172
|
+
},
|
|
173
|
+
},
|
|
174
|
+
},
|
|
175
|
+
},
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
if: { properties: { heroType: { const: 'Supporting image' } } },
|
|
179
|
+
then: {
|
|
180
|
+
properties: {
|
|
181
|
+
image: { type: 'object' },
|
|
182
|
+
},
|
|
183
|
+
},
|
|
184
|
+
},
|
|
185
|
+
],
|
|
186
|
+
},
|
|
187
|
+
},
|
|
188
|
+
};
|
|
189
|
+
expect(hasAllOfCombinator(heroBannerSchema)).toBe(true);
|
|
190
|
+
});
|
|
191
|
+
it('should detect allOf in very deeply nested structure', () => {
|
|
192
|
+
const deepSchema = {
|
|
193
|
+
type: 'object',
|
|
194
|
+
properties: {
|
|
195
|
+
level1: {
|
|
196
|
+
properties: {
|
|
197
|
+
level2: {
|
|
198
|
+
oneOf: [
|
|
199
|
+
{
|
|
200
|
+
properties: {
|
|
201
|
+
level3: {
|
|
202
|
+
anyOf: [
|
|
203
|
+
{
|
|
204
|
+
allOf: [{ properties: { deep: { type: 'string' } } }],
|
|
205
|
+
},
|
|
206
|
+
],
|
|
207
|
+
},
|
|
208
|
+
},
|
|
209
|
+
},
|
|
210
|
+
],
|
|
211
|
+
},
|
|
212
|
+
},
|
|
213
|
+
},
|
|
214
|
+
},
|
|
215
|
+
};
|
|
216
|
+
expect(hasAllOfCombinator(deepSchema)).toBe(true);
|
|
217
|
+
});
|
|
218
|
+
});
|
|
219
|
+
describe('Negative cases - should return false', () => {
|
|
220
|
+
it('should return false for simple object schema', () => {
|
|
221
|
+
const schema = {
|
|
222
|
+
type: 'object',
|
|
223
|
+
properties: {
|
|
224
|
+
name: { type: 'string' },
|
|
225
|
+
age: { type: 'number' },
|
|
226
|
+
},
|
|
227
|
+
required: ['name'],
|
|
228
|
+
};
|
|
229
|
+
expect(hasAllOfCombinator(schema)).toBe(false);
|
|
230
|
+
});
|
|
231
|
+
it('should return false for schema with only oneOf', () => {
|
|
232
|
+
const schema = {
|
|
233
|
+
type: 'object',
|
|
234
|
+
oneOf: [{ properties: { typeA: { type: 'string' } } }, { properties: { typeB: { type: 'number' } } }],
|
|
235
|
+
};
|
|
236
|
+
expect(hasAllOfCombinator(schema)).toBe(false);
|
|
237
|
+
});
|
|
238
|
+
it('should return false for schema with only anyOf', () => {
|
|
239
|
+
const schema = {
|
|
240
|
+
type: 'object',
|
|
241
|
+
anyOf: [{ properties: { option1: { type: 'string' } } }, { properties: { option2: { type: 'boolean' } } }],
|
|
242
|
+
};
|
|
243
|
+
expect(hasAllOfCombinator(schema)).toBe(false);
|
|
244
|
+
});
|
|
245
|
+
it('should return false for array schema without allOf', () => {
|
|
246
|
+
const schema = {
|
|
247
|
+
type: 'array',
|
|
248
|
+
items: {
|
|
249
|
+
type: 'object',
|
|
250
|
+
properties: {
|
|
251
|
+
id: { type: 'number' },
|
|
252
|
+
name: { type: 'string' },
|
|
253
|
+
},
|
|
254
|
+
},
|
|
255
|
+
};
|
|
256
|
+
expect(hasAllOfCombinator(schema)).toBe(false);
|
|
257
|
+
});
|
|
258
|
+
it('should return false for conditional schema without allOf', () => {
|
|
259
|
+
const schema = {
|
|
260
|
+
type: 'object',
|
|
261
|
+
if: { properties: { type: { const: 'special' } } },
|
|
262
|
+
then: { properties: { specialValue: { type: 'string' } } },
|
|
263
|
+
else: { properties: { normalValue: { type: 'string' } } },
|
|
264
|
+
};
|
|
265
|
+
expect(hasAllOfCombinator(schema)).toBe(false);
|
|
266
|
+
});
|
|
267
|
+
});
|
|
268
|
+
describe('Edge cases', () => {
|
|
269
|
+
it('should return false for null', () => {
|
|
270
|
+
expect(hasAllOfCombinator(null)).toBe(false);
|
|
271
|
+
});
|
|
272
|
+
it('should return false for undefined', () => {
|
|
273
|
+
expect(hasAllOfCombinator(undefined)).toBe(false);
|
|
274
|
+
});
|
|
275
|
+
it('should return false for string', () => {
|
|
276
|
+
expect(hasAllOfCombinator('not an object')).toBe(false);
|
|
277
|
+
});
|
|
278
|
+
it('should return false for number', () => {
|
|
279
|
+
expect(hasAllOfCombinator(42)).toBe(false);
|
|
280
|
+
});
|
|
281
|
+
it('should return false for boolean', () => {
|
|
282
|
+
expect(hasAllOfCombinator(true)).toBe(false);
|
|
283
|
+
});
|
|
284
|
+
it('should return false for array', () => {
|
|
285
|
+
expect(hasAllOfCombinator(['not', 'a', 'schema'])).toBe(false);
|
|
286
|
+
});
|
|
287
|
+
it('should return false for empty object', () => {
|
|
288
|
+
expect(hasAllOfCombinator({})).toBe(false);
|
|
289
|
+
});
|
|
290
|
+
it('should handle circular references gracefully', () => {
|
|
291
|
+
const schema = {
|
|
292
|
+
type: 'object',
|
|
293
|
+
properties: {
|
|
294
|
+
self: null,
|
|
295
|
+
},
|
|
296
|
+
};
|
|
297
|
+
schema.properties.self = schema; // Create circular reference
|
|
298
|
+
// Should not crash and should return false (no allOf)
|
|
299
|
+
expect(hasAllOfCombinator(schema)).toBe(false);
|
|
300
|
+
});
|
|
301
|
+
it('should handle circular references with allOf', () => {
|
|
302
|
+
const schema = {
|
|
303
|
+
type: 'object',
|
|
304
|
+
allOf: [{ properties: { name: { type: 'string' } } }],
|
|
305
|
+
properties: {
|
|
306
|
+
self: null,
|
|
307
|
+
},
|
|
308
|
+
};
|
|
309
|
+
schema.properties.self = schema; // Create circular reference
|
|
310
|
+
// Should detect allOf despite circular reference
|
|
311
|
+
expect(hasAllOfCombinator(schema)).toBe(true);
|
|
312
|
+
});
|
|
313
|
+
it('should handle deeply circular references', () => {
|
|
314
|
+
const schemaA = {
|
|
315
|
+
type: 'object',
|
|
316
|
+
properties: {
|
|
317
|
+
b: null,
|
|
318
|
+
},
|
|
319
|
+
};
|
|
320
|
+
const schemaB = {
|
|
321
|
+
type: 'object',
|
|
322
|
+
properties: {
|
|
323
|
+
a: schemaA,
|
|
324
|
+
c: null,
|
|
325
|
+
},
|
|
326
|
+
};
|
|
327
|
+
const schemaC = {
|
|
328
|
+
type: 'object',
|
|
329
|
+
properties: {
|
|
330
|
+
b: schemaB,
|
|
331
|
+
},
|
|
332
|
+
};
|
|
333
|
+
// Create circular chain: A -> B -> C -> B
|
|
334
|
+
schemaA.properties.b = schemaB;
|
|
335
|
+
schemaB.properties.c = schemaC;
|
|
336
|
+
// Should not crash and should return false (no allOf in any of them)
|
|
337
|
+
expect(hasAllOfCombinator(schemaA)).toBe(false);
|
|
338
|
+
expect(hasAllOfCombinator(schemaB)).toBe(false);
|
|
339
|
+
expect(hasAllOfCombinator(schemaC)).toBe(false);
|
|
340
|
+
});
|
|
341
|
+
it('should handle malformed properties object', () => {
|
|
342
|
+
const schema = {
|
|
343
|
+
type: 'object',
|
|
344
|
+
properties: null, // Malformed properties
|
|
345
|
+
};
|
|
346
|
+
expect(hasAllOfCombinator(schema)).toBe(false);
|
|
347
|
+
});
|
|
348
|
+
});
|
|
349
|
+
describe('Performance characteristics', () => {
|
|
350
|
+
it('should quickly process large schema without allOf', () => {
|
|
351
|
+
const largeSchema = {
|
|
352
|
+
type: 'object',
|
|
353
|
+
properties: {},
|
|
354
|
+
};
|
|
355
|
+
// Generate 100 properties
|
|
356
|
+
for (let i = 0; i < 100; i++) {
|
|
357
|
+
largeSchema.properties[`prop${i}`] = {
|
|
358
|
+
type: 'object',
|
|
359
|
+
properties: {
|
|
360
|
+
[`nested${i}`]: { type: 'string' },
|
|
361
|
+
[`array${i}`]: {
|
|
362
|
+
type: 'array',
|
|
363
|
+
items: { type: 'number' },
|
|
364
|
+
},
|
|
365
|
+
},
|
|
366
|
+
};
|
|
367
|
+
}
|
|
368
|
+
const startTime = performance.now();
|
|
369
|
+
const result = hasAllOfCombinator(largeSchema);
|
|
370
|
+
const endTime = performance.now();
|
|
371
|
+
expect(result).toBe(false);
|
|
372
|
+
expect(endTime - startTime).toBeLessThan(10); // Should be very fast (< 10ms)
|
|
373
|
+
});
|
|
374
|
+
it('should quickly detect allOf in large schema', () => {
|
|
375
|
+
const largeSchemaWithAllOf = {
|
|
376
|
+
type: 'object',
|
|
377
|
+
allOf: [{ properties: { detected: { type: 'string' } } }],
|
|
378
|
+
properties: {},
|
|
379
|
+
};
|
|
380
|
+
// Generate 100 properties
|
|
381
|
+
for (let i = 0; i < 100; i++) {
|
|
382
|
+
largeSchemaWithAllOf.properties[`prop${i}`] = {
|
|
383
|
+
type: 'string',
|
|
384
|
+
};
|
|
385
|
+
}
|
|
386
|
+
const startTime = performance.now();
|
|
387
|
+
const result = hasAllOfCombinator(largeSchemaWithAllOf);
|
|
388
|
+
const endTime = performance.now();
|
|
389
|
+
expect(result).toBe(true);
|
|
390
|
+
expect(endTime - startTime).toBeLessThan(5); // Should be very fast due to early detection
|
|
391
|
+
});
|
|
392
|
+
});
|
|
393
|
+
});
|
|
394
|
+
//# sourceMappingURL=hasAllOfCombinator.spec.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"hasAllOfCombinator.spec.js","sourceRoot":"","sources":["../src/hasAllOfCombinator.spec.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@squiz/dx-json-schema-lib",
|
|
3
|
-
"version": "1.82.
|
|
3
|
+
"version": "1.82.4",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"private": false,
|
|
@@ -18,8 +18,9 @@
|
|
|
18
18
|
"license": "ISC",
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"@types/jest": "28.1.8",
|
|
21
|
+
"@types/lodash.clonedeep": "4.5.9",
|
|
21
22
|
"@types/node": "20.12.12",
|
|
22
|
-
"dotenv": "16.
|
|
23
|
+
"dotenv": "16.6.1",
|
|
23
24
|
"jest": "29.4.1",
|
|
24
25
|
"json-schema-to-typescript": "14.1.0",
|
|
25
26
|
"ts-jest": "29.0.5",
|
|
@@ -30,6 +31,7 @@
|
|
|
30
31
|
"@sagold/json-query": "^6.2.0",
|
|
31
32
|
"@squiz/json-schema-library": "^7.4.7",
|
|
32
33
|
"@types/exif": "^0.6.5",
|
|
34
|
+
"lodash.clonedeep": "4.5.0",
|
|
33
35
|
"ts-brand": "0.0.2"
|
|
34
36
|
}
|
|
35
37
|
}
|