@based/schema 2.5.3 → 2.7.0
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/dist/src/compat/Untitled-1.d.ts +3 -0
- package/dist/src/compat/Untitled-1.js +205 -0
- package/dist/src/compat/index.d.ts +2 -0
- package/dist/src/compat/index.js +3 -0
- package/dist/src/compat/newToOld.d.ts +3 -0
- package/dist/src/compat/newToOld.js +213 -0
- package/dist/src/compat/oldSchemaType.d.ts +69 -0
- package/dist/src/compat/oldSchemaType.js +2 -0
- package/dist/src/compat/oldToNew.d.ts +3 -0
- package/dist/src/compat/oldToNew.js +210 -0
- package/dist/src/display/number.d.ts +2 -1
- package/dist/src/display/number.js +10 -0
- package/dist/src/display/string.d.ts +3 -1
- package/dist/src/display/string.js +5 -0
- package/dist/src/display/timestamp.d.ts +3 -1
- package/dist/src/display/timestamp.js +9 -0
- package/dist/src/error.d.ts +3 -1
- package/dist/src/error.js +2 -0
- package/dist/src/index.d.ts +2 -1
- package/dist/src/index.js +2 -1
- package/dist/src/types.d.ts +4 -3
- package/dist/src/types.js +74 -0
- package/dist/src/validateSchema/basedSchemaTypeValidator.d.ts +3 -0
- package/dist/src/validateSchema/basedSchemaTypeValidator.js +45 -0
- package/dist/src/validateSchema/fieldValidators.d.ts +27 -0
- package/dist/src/validateSchema/fieldValidators.js +352 -0
- package/dist/src/validateSchema/index.d.ts +17 -0
- package/dist/src/validateSchema/index.js +109 -0
- package/dist/src/validateSchema/utils.d.ts +21 -0
- package/dist/src/validateSchema/utils.js +53 -0
- package/dist/test/compat.js +15 -0
- package/dist/test/data/newSchemas.d.ts +2 -0
- package/dist/test/data/newSchemas.js +254 -0
- package/dist/test/data/oldSchemas.d.ts +2 -0
- package/dist/test/data/oldSchemas.js +5058 -0
- package/dist/test/validateSchema/basic.d.ts +1 -0
- package/dist/test/validateSchema/basic.js +94 -0
- package/dist/test/validateSchema/fields.d.ts +1 -0
- package/dist/test/validateSchema/fields.js +366 -0
- package/dist/test/validateSchema/languages.d.ts +1 -0
- package/dist/test/validateSchema/languages.js +124 -0
- package/package.json +4 -1
- package/dist/src/validateSchema.d.ts +0 -4
- package/dist/src/validateSchema.js +0 -35
- package/dist/test/validateSchema.js +0 -38
- /package/dist/test/{validateSchema.d.ts → compat.d.ts} +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
import anyTest from 'ava';
|
|
2
|
+
import { validateSchema } from '../../src/validateSchema/index.js';
|
|
3
|
+
import { ParseError } from '../../src/error.js';
|
|
4
|
+
const test = anyTest;
|
|
5
|
+
test('invalid properties in schema root should fail', async (t) => {
|
|
6
|
+
// @ts-ignore
|
|
7
|
+
t.deepEqual(await validateSchema({ invalidProperty: true }), {
|
|
8
|
+
errors: [{ code: ParseError.invalidProperty, path: ['invalidProperty'] }],
|
|
9
|
+
});
|
|
10
|
+
});
|
|
11
|
+
test('root', async (t) => {
|
|
12
|
+
t.deepEqual(await validateSchema({
|
|
13
|
+
root: {
|
|
14
|
+
// @ts-ignore
|
|
15
|
+
wawa: true,
|
|
16
|
+
},
|
|
17
|
+
}), {
|
|
18
|
+
errors: [{ code: ParseError.invalidProperty, path: ['root', 'wawa'] }],
|
|
19
|
+
});
|
|
20
|
+
for (const key of ['directory', 'title', 'description']) {
|
|
21
|
+
const result = await validateSchema({
|
|
22
|
+
root: {
|
|
23
|
+
// @ts-ignore
|
|
24
|
+
[key]: true,
|
|
25
|
+
},
|
|
26
|
+
});
|
|
27
|
+
t.deepEqual(result, {
|
|
28
|
+
errors: [{ code: ParseError.incorrectFormat, path: ['root', key] }],
|
|
29
|
+
});
|
|
30
|
+
}
|
|
31
|
+
t.deepEqual(await validateSchema({
|
|
32
|
+
root: {
|
|
33
|
+
// @ts-ignore
|
|
34
|
+
fields: 'wa',
|
|
35
|
+
},
|
|
36
|
+
}), {
|
|
37
|
+
errors: [{ code: ParseError.incorrectFormat, path: ['root', 'fields'] }],
|
|
38
|
+
});
|
|
39
|
+
t.deepEqual(await validateSchema({
|
|
40
|
+
root: {
|
|
41
|
+
prefix: 'wa',
|
|
42
|
+
},
|
|
43
|
+
}), {
|
|
44
|
+
errors: [{ code: ParseError.incorrectFormat, path: ['root', 'prefix'] }],
|
|
45
|
+
});
|
|
46
|
+
t.deepEqual(await validateSchema({
|
|
47
|
+
root: {
|
|
48
|
+
// @ts-ignore
|
|
49
|
+
prefix: true,
|
|
50
|
+
},
|
|
51
|
+
}), {
|
|
52
|
+
errors: [{ code: ParseError.incorrectFormat, path: ['root', 'prefix'] }],
|
|
53
|
+
});
|
|
54
|
+
t.deepEqual(await validateSchema({
|
|
55
|
+
root: {
|
|
56
|
+
prefix: 'ro',
|
|
57
|
+
},
|
|
58
|
+
}), {
|
|
59
|
+
valid: true,
|
|
60
|
+
});
|
|
61
|
+
t.deepEqual(await validateSchema({
|
|
62
|
+
root: {
|
|
63
|
+
required: ['astring'],
|
|
64
|
+
},
|
|
65
|
+
}), {
|
|
66
|
+
valid: true,
|
|
67
|
+
});
|
|
68
|
+
t.deepEqual(await validateSchema({
|
|
69
|
+
root: {
|
|
70
|
+
// @ts-ignore
|
|
71
|
+
required: 'anotherString',
|
|
72
|
+
},
|
|
73
|
+
}), {
|
|
74
|
+
errors: [
|
|
75
|
+
{ code: ParseError.incorrectFormat, path: ['root', 'required'] },
|
|
76
|
+
],
|
|
77
|
+
});
|
|
78
|
+
t.deepEqual(await validateSchema({
|
|
79
|
+
root: {
|
|
80
|
+
$delete: true,
|
|
81
|
+
},
|
|
82
|
+
}), {
|
|
83
|
+
valid: true,
|
|
84
|
+
});
|
|
85
|
+
t.deepEqual(await validateSchema({
|
|
86
|
+
root: {
|
|
87
|
+
// @ts-ignore
|
|
88
|
+
$delete: 'aString',
|
|
89
|
+
},
|
|
90
|
+
}), {
|
|
91
|
+
errors: [{ code: ParseError.incorrectFormat, path: ['root', '$delete'] }],
|
|
92
|
+
});
|
|
93
|
+
});
|
|
94
|
+
//# sourceMappingURL=basic.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,366 @@
|
|
|
1
|
+
import anyTest from 'ava';
|
|
2
|
+
import { validateSchema } from '../../src/validateSchema/index.js';
|
|
3
|
+
import { ParseError } from '../../src/error.js';
|
|
4
|
+
const test = anyTest;
|
|
5
|
+
test('shared', async (t) => {
|
|
6
|
+
t.deepEqual(await validateSchema({
|
|
7
|
+
root: {
|
|
8
|
+
fields: {
|
|
9
|
+
stringField: {
|
|
10
|
+
type: 'string',
|
|
11
|
+
// @ts-ignore
|
|
12
|
+
wawa: true,
|
|
13
|
+
},
|
|
14
|
+
},
|
|
15
|
+
},
|
|
16
|
+
}), {
|
|
17
|
+
errors: [
|
|
18
|
+
{
|
|
19
|
+
code: ParseError.invalidProperty,
|
|
20
|
+
path: ['root', 'fields', 'stringField', 'wawa'],
|
|
21
|
+
},
|
|
22
|
+
],
|
|
23
|
+
}, 'invalid property');
|
|
24
|
+
t.deepEqual(await validateSchema({
|
|
25
|
+
root: {
|
|
26
|
+
fields: {
|
|
27
|
+
stringField: {
|
|
28
|
+
type: 'string',
|
|
29
|
+
hooks: { hook: 'aHook' },
|
|
30
|
+
},
|
|
31
|
+
},
|
|
32
|
+
},
|
|
33
|
+
}), {
|
|
34
|
+
valid: true,
|
|
35
|
+
});
|
|
36
|
+
t.deepEqual(await validateSchema({
|
|
37
|
+
root: {
|
|
38
|
+
fields: {
|
|
39
|
+
stringField: {
|
|
40
|
+
type: 'string',
|
|
41
|
+
hooks: [
|
|
42
|
+
{ hook: 'aHook', interval: 1000 },
|
|
43
|
+
{ hook: 'anotherHook', interval: 2000 },
|
|
44
|
+
],
|
|
45
|
+
},
|
|
46
|
+
},
|
|
47
|
+
},
|
|
48
|
+
}), {
|
|
49
|
+
valid: true,
|
|
50
|
+
});
|
|
51
|
+
t.deepEqual(await validateSchema({
|
|
52
|
+
root: {
|
|
53
|
+
fields: {
|
|
54
|
+
stringField: {
|
|
55
|
+
type: 'string',
|
|
56
|
+
// @ts-ignore
|
|
57
|
+
hooks: true,
|
|
58
|
+
},
|
|
59
|
+
},
|
|
60
|
+
},
|
|
61
|
+
}), {
|
|
62
|
+
errors: [
|
|
63
|
+
{
|
|
64
|
+
code: ParseError.incorrectFormat,
|
|
65
|
+
path: ['root', 'fields', 'stringField', 'hooks'],
|
|
66
|
+
},
|
|
67
|
+
],
|
|
68
|
+
}, 'hooks format is wrong');
|
|
69
|
+
t.deepEqual(await validateSchema({
|
|
70
|
+
root: {
|
|
71
|
+
fields: {
|
|
72
|
+
stringField: {
|
|
73
|
+
type: 'string',
|
|
74
|
+
// @ts-ignore
|
|
75
|
+
hooks: {
|
|
76
|
+
hook: 'aHook',
|
|
77
|
+
// @ts-ignore
|
|
78
|
+
interval: '2000',
|
|
79
|
+
},
|
|
80
|
+
},
|
|
81
|
+
},
|
|
82
|
+
},
|
|
83
|
+
}), {
|
|
84
|
+
errors: [
|
|
85
|
+
{
|
|
86
|
+
code: ParseError.incorrectFormat,
|
|
87
|
+
path: ['root', 'fields', 'stringField', 'hooks', 'interval'],
|
|
88
|
+
},
|
|
89
|
+
],
|
|
90
|
+
}, 'hooks format is wrong');
|
|
91
|
+
t.deepEqual(await validateSchema({
|
|
92
|
+
root: {
|
|
93
|
+
fields: {
|
|
94
|
+
stringField: {
|
|
95
|
+
type: 'string',
|
|
96
|
+
// @ts-ignore
|
|
97
|
+
hooks: [
|
|
98
|
+
{ hook: 'aHook', interval: 1000 },
|
|
99
|
+
// @ts-ignore
|
|
100
|
+
{ hook: 'anotherHook', interval: '2000' },
|
|
101
|
+
],
|
|
102
|
+
},
|
|
103
|
+
},
|
|
104
|
+
},
|
|
105
|
+
}), {
|
|
106
|
+
errors: [
|
|
107
|
+
{
|
|
108
|
+
code: ParseError.incorrectFormat,
|
|
109
|
+
path: ['root', 'fields', 'stringField', 'hooks', '1', 'interval'],
|
|
110
|
+
},
|
|
111
|
+
],
|
|
112
|
+
}, 'hooks format is wrong');
|
|
113
|
+
});
|
|
114
|
+
test('string', async (t) => {
|
|
115
|
+
t.deepEqual(await validateSchema({
|
|
116
|
+
root: {
|
|
117
|
+
fields: {
|
|
118
|
+
stringField: {
|
|
119
|
+
type: 'string',
|
|
120
|
+
},
|
|
121
|
+
},
|
|
122
|
+
},
|
|
123
|
+
}), {
|
|
124
|
+
valid: true,
|
|
125
|
+
});
|
|
126
|
+
t.deepEqual(await validateSchema({
|
|
127
|
+
types: {
|
|
128
|
+
aType: {
|
|
129
|
+
fields: {
|
|
130
|
+
stringField: {
|
|
131
|
+
type: 'string',
|
|
132
|
+
},
|
|
133
|
+
},
|
|
134
|
+
},
|
|
135
|
+
},
|
|
136
|
+
}), {
|
|
137
|
+
valid: true,
|
|
138
|
+
});
|
|
139
|
+
t.deepEqual(await validateSchema({
|
|
140
|
+
root: {
|
|
141
|
+
fields: {
|
|
142
|
+
stringField: {
|
|
143
|
+
type: 'string',
|
|
144
|
+
// @ts-ignore
|
|
145
|
+
values: {
|
|
146
|
+
type: 'string',
|
|
147
|
+
},
|
|
148
|
+
},
|
|
149
|
+
},
|
|
150
|
+
},
|
|
151
|
+
}), {
|
|
152
|
+
errors: [
|
|
153
|
+
{
|
|
154
|
+
code: ParseError.invalidProperty,
|
|
155
|
+
path: ['root', 'fields', 'stringField', 'values'],
|
|
156
|
+
},
|
|
157
|
+
],
|
|
158
|
+
});
|
|
159
|
+
t.deepEqual(await validateSchema({
|
|
160
|
+
types: {
|
|
161
|
+
aType: {
|
|
162
|
+
fields: {
|
|
163
|
+
stringField: {
|
|
164
|
+
type: 'string',
|
|
165
|
+
// @ts-ignore
|
|
166
|
+
values: {
|
|
167
|
+
type: 'string',
|
|
168
|
+
},
|
|
169
|
+
},
|
|
170
|
+
},
|
|
171
|
+
},
|
|
172
|
+
},
|
|
173
|
+
}), {
|
|
174
|
+
errors: [
|
|
175
|
+
{
|
|
176
|
+
code: ParseError.invalidProperty,
|
|
177
|
+
path: ['types', 'aType', 'fields', 'stringField', 'values'],
|
|
178
|
+
},
|
|
179
|
+
],
|
|
180
|
+
});
|
|
181
|
+
});
|
|
182
|
+
test('objects', async (t) => {
|
|
183
|
+
t.deepEqual(await validateSchema({
|
|
184
|
+
root: {
|
|
185
|
+
fields: {
|
|
186
|
+
objectField: {
|
|
187
|
+
type: 'object',
|
|
188
|
+
properties: {
|
|
189
|
+
aStringField: {
|
|
190
|
+
type: 'string',
|
|
191
|
+
},
|
|
192
|
+
},
|
|
193
|
+
},
|
|
194
|
+
},
|
|
195
|
+
},
|
|
196
|
+
}), {
|
|
197
|
+
valid: true,
|
|
198
|
+
});
|
|
199
|
+
t.deepEqual(await validateSchema({
|
|
200
|
+
root: {
|
|
201
|
+
fields: {
|
|
202
|
+
objectField: {
|
|
203
|
+
type: 'object',
|
|
204
|
+
properties: {
|
|
205
|
+
aStringField: {
|
|
206
|
+
// @ts-ignore
|
|
207
|
+
wawa: true,
|
|
208
|
+
},
|
|
209
|
+
},
|
|
210
|
+
},
|
|
211
|
+
},
|
|
212
|
+
},
|
|
213
|
+
}), {
|
|
214
|
+
errors: [
|
|
215
|
+
{
|
|
216
|
+
code: ParseError.invalidProperty,
|
|
217
|
+
path: [
|
|
218
|
+
'root',
|
|
219
|
+
'fields',
|
|
220
|
+
'objectField',
|
|
221
|
+
'properties',
|
|
222
|
+
'aStringField',
|
|
223
|
+
'wawa',
|
|
224
|
+
],
|
|
225
|
+
},
|
|
226
|
+
],
|
|
227
|
+
});
|
|
228
|
+
t.deepEqual(await validateSchema({
|
|
229
|
+
root: {
|
|
230
|
+
fields: {
|
|
231
|
+
objectField: {
|
|
232
|
+
type: 'object',
|
|
233
|
+
properties: {
|
|
234
|
+
anotherObjectField: {
|
|
235
|
+
type: 'object',
|
|
236
|
+
properties: {
|
|
237
|
+
aWrongObjectField: {
|
|
238
|
+
type: 'object',
|
|
239
|
+
// @ts-ignore
|
|
240
|
+
values: { type: 'string' },
|
|
241
|
+
},
|
|
242
|
+
},
|
|
243
|
+
},
|
|
244
|
+
},
|
|
245
|
+
},
|
|
246
|
+
},
|
|
247
|
+
},
|
|
248
|
+
}), {
|
|
249
|
+
errors: [
|
|
250
|
+
{
|
|
251
|
+
code: ParseError.invalidProperty,
|
|
252
|
+
path: [
|
|
253
|
+
'root',
|
|
254
|
+
'fields',
|
|
255
|
+
'objectField',
|
|
256
|
+
'properties',
|
|
257
|
+
'anotherObjectField',
|
|
258
|
+
'properties',
|
|
259
|
+
'aWrongObjectField',
|
|
260
|
+
'values',
|
|
261
|
+
],
|
|
262
|
+
},
|
|
263
|
+
],
|
|
264
|
+
});
|
|
265
|
+
});
|
|
266
|
+
test('records', async (t) => {
|
|
267
|
+
t.deepEqual(await validateSchema({
|
|
268
|
+
root: {
|
|
269
|
+
fields: {
|
|
270
|
+
recordField: {
|
|
271
|
+
type: 'record',
|
|
272
|
+
values: {
|
|
273
|
+
type: 'string',
|
|
274
|
+
},
|
|
275
|
+
},
|
|
276
|
+
},
|
|
277
|
+
},
|
|
278
|
+
}), {
|
|
279
|
+
valid: true,
|
|
280
|
+
});
|
|
281
|
+
t.deepEqual(await validateSchema({
|
|
282
|
+
root: {
|
|
283
|
+
fields: {
|
|
284
|
+
recordField: {
|
|
285
|
+
type: 'record',
|
|
286
|
+
values: {
|
|
287
|
+
type: 'object',
|
|
288
|
+
properties: {
|
|
289
|
+
aWrongObjectField: {
|
|
290
|
+
type: 'object',
|
|
291
|
+
// @ts-ignore
|
|
292
|
+
values: { type: 'string' },
|
|
293
|
+
},
|
|
294
|
+
},
|
|
295
|
+
},
|
|
296
|
+
},
|
|
297
|
+
},
|
|
298
|
+
},
|
|
299
|
+
}), {
|
|
300
|
+
errors: [
|
|
301
|
+
{
|
|
302
|
+
code: ParseError.invalidProperty,
|
|
303
|
+
path: [
|
|
304
|
+
'root',
|
|
305
|
+
'fields',
|
|
306
|
+
'recordField',
|
|
307
|
+
'values',
|
|
308
|
+
'properties',
|
|
309
|
+
'aWrongObjectField',
|
|
310
|
+
'values',
|
|
311
|
+
],
|
|
312
|
+
},
|
|
313
|
+
],
|
|
314
|
+
});
|
|
315
|
+
});
|
|
316
|
+
test('arrays', async (t) => {
|
|
317
|
+
t.deepEqual(await validateSchema({
|
|
318
|
+
root: {
|
|
319
|
+
fields: {
|
|
320
|
+
arrayField: {
|
|
321
|
+
type: 'array',
|
|
322
|
+
values: {
|
|
323
|
+
type: 'string',
|
|
324
|
+
},
|
|
325
|
+
},
|
|
326
|
+
},
|
|
327
|
+
},
|
|
328
|
+
}), {
|
|
329
|
+
valid: true,
|
|
330
|
+
});
|
|
331
|
+
t.deepEqual(await validateSchema({
|
|
332
|
+
root: {
|
|
333
|
+
fields: {
|
|
334
|
+
arrayField: {
|
|
335
|
+
type: 'array',
|
|
336
|
+
values: {
|
|
337
|
+
type: 'object',
|
|
338
|
+
properties: {
|
|
339
|
+
aWrongObjectField: {
|
|
340
|
+
type: 'object',
|
|
341
|
+
// @ts-ignore
|
|
342
|
+
values: { type: 'string' },
|
|
343
|
+
},
|
|
344
|
+
},
|
|
345
|
+
},
|
|
346
|
+
},
|
|
347
|
+
},
|
|
348
|
+
},
|
|
349
|
+
}), {
|
|
350
|
+
errors: [
|
|
351
|
+
{
|
|
352
|
+
code: ParseError.invalidProperty,
|
|
353
|
+
path: [
|
|
354
|
+
'root',
|
|
355
|
+
'fields',
|
|
356
|
+
'arrayField',
|
|
357
|
+
'values',
|
|
358
|
+
'properties',
|
|
359
|
+
'aWrongObjectField',
|
|
360
|
+
'values',
|
|
361
|
+
],
|
|
362
|
+
},
|
|
363
|
+
],
|
|
364
|
+
});
|
|
365
|
+
});
|
|
366
|
+
//# sourceMappingURL=fields.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
import anyTest from 'ava';
|
|
2
|
+
import { validateSchema } from '../../src/validateSchema/index.js';
|
|
3
|
+
import { ParseError } from '../../src/error.js';
|
|
4
|
+
const test = anyTest;
|
|
5
|
+
test('should not allow non object schemas', async (t) => {
|
|
6
|
+
t.deepEqual(await validateSchema(undefined), {
|
|
7
|
+
errors: [{ code: ParseError.invalidSchemaFormat }],
|
|
8
|
+
});
|
|
9
|
+
t.deepEqual(await validateSchema(null), {
|
|
10
|
+
errors: [{ code: ParseError.invalidSchemaFormat }],
|
|
11
|
+
});
|
|
12
|
+
// @ts-ignore
|
|
13
|
+
t.deepEqual(await validateSchema('this is a string'), {
|
|
14
|
+
errors: [{ code: ParseError.invalidSchemaFormat }],
|
|
15
|
+
});
|
|
16
|
+
// @ts-ignore
|
|
17
|
+
t.deepEqual(await validateSchema(1), {
|
|
18
|
+
errors: [{ code: ParseError.invalidSchemaFormat }],
|
|
19
|
+
});
|
|
20
|
+
});
|
|
21
|
+
test('`languages` property', async (t) => {
|
|
22
|
+
t.deepEqual(await validateSchema({ language: 'en' }), {
|
|
23
|
+
valid: true,
|
|
24
|
+
});
|
|
25
|
+
// @ts-ignore
|
|
26
|
+
t.deepEqual(await validateSchema({ language: 'xx' }), {
|
|
27
|
+
errors: [{ code: ParseError.languageNotSupported, path: ['language'] }],
|
|
28
|
+
});
|
|
29
|
+
});
|
|
30
|
+
test('`translations` property', async (t) => {
|
|
31
|
+
t.deepEqual(await validateSchema({
|
|
32
|
+
language: 'en',
|
|
33
|
+
translations: ['fr', 'pt'],
|
|
34
|
+
}), {
|
|
35
|
+
valid: true,
|
|
36
|
+
});
|
|
37
|
+
t.deepEqual(await validateSchema({
|
|
38
|
+
language: 'en',
|
|
39
|
+
// @ts-ignore
|
|
40
|
+
translations: 'de',
|
|
41
|
+
}), {
|
|
42
|
+
errors: [{ code: ParseError.incorrectFormat, path: ['translations'] }],
|
|
43
|
+
});
|
|
44
|
+
t.deepEqual(await validateSchema({
|
|
45
|
+
language: 'en',
|
|
46
|
+
// @ts-ignore
|
|
47
|
+
translations: ['pt', 'xx'],
|
|
48
|
+
}), {
|
|
49
|
+
errors: [
|
|
50
|
+
{ code: ParseError.languageNotSupported, path: ['translations'] },
|
|
51
|
+
],
|
|
52
|
+
});
|
|
53
|
+
});
|
|
54
|
+
test('`languageFallbacks` property', async (t) => {
|
|
55
|
+
t.deepEqual(await validateSchema({
|
|
56
|
+
language: 'en',
|
|
57
|
+
translations: ['fr', 'pt'],
|
|
58
|
+
languageFallbacks: {
|
|
59
|
+
fr: ['en'],
|
|
60
|
+
pt: ['fr', 'pt'],
|
|
61
|
+
},
|
|
62
|
+
}), {
|
|
63
|
+
valid: true,
|
|
64
|
+
});
|
|
65
|
+
t.deepEqual(await validateSchema({
|
|
66
|
+
language: 'en',
|
|
67
|
+
translations: ['fr', 'pt'],
|
|
68
|
+
// @ts-ignore
|
|
69
|
+
languageFallbacks: 'pt',
|
|
70
|
+
}), {
|
|
71
|
+
errors: [
|
|
72
|
+
{ code: ParseError.incorrectFormat, path: ['languageFallbacks'] },
|
|
73
|
+
],
|
|
74
|
+
});
|
|
75
|
+
t.deepEqual(await validateSchema({
|
|
76
|
+
language: 'en',
|
|
77
|
+
translations: ['fr', 'pt'],
|
|
78
|
+
// @ts-ignore
|
|
79
|
+
languageFallbacks: ['pt'],
|
|
80
|
+
}), {
|
|
81
|
+
errors: [
|
|
82
|
+
{ code: ParseError.incorrectFormat, path: ['languageFallbacks'] },
|
|
83
|
+
],
|
|
84
|
+
});
|
|
85
|
+
t.deepEqual(await validateSchema({
|
|
86
|
+
language: 'en',
|
|
87
|
+
translations: ['fr', 'pt'],
|
|
88
|
+
languageFallbacks: {
|
|
89
|
+
fr: ['en'],
|
|
90
|
+
// @ts-ignore
|
|
91
|
+
pt: ['xx', 'pt'],
|
|
92
|
+
},
|
|
93
|
+
}), {
|
|
94
|
+
errors: [
|
|
95
|
+
{ code: ParseError.noLanguageFound, path: ['languageFallbacks'] },
|
|
96
|
+
],
|
|
97
|
+
});
|
|
98
|
+
t.deepEqual(await validateSchema({
|
|
99
|
+
language: 'en',
|
|
100
|
+
translations: ['fr', 'pt'],
|
|
101
|
+
languageFallbacks: {
|
|
102
|
+
// @ts-ignore
|
|
103
|
+
fr: 'en',
|
|
104
|
+
},
|
|
105
|
+
}), {
|
|
106
|
+
errors: [
|
|
107
|
+
{ code: ParseError.incorrectFormat, path: ['languageFallbacks'] },
|
|
108
|
+
],
|
|
109
|
+
});
|
|
110
|
+
t.deepEqual(await validateSchema({
|
|
111
|
+
language: 'en',
|
|
112
|
+
translations: ['fr', 'pt'],
|
|
113
|
+
languageFallbacks: {
|
|
114
|
+
fr: ['en'],
|
|
115
|
+
// @ts-ignore
|
|
116
|
+
xx: ['fr', 'pt'],
|
|
117
|
+
},
|
|
118
|
+
}), {
|
|
119
|
+
errors: [
|
|
120
|
+
{ code: ParseError.noLanguageFound, path: ['languageFallbacks'] },
|
|
121
|
+
],
|
|
122
|
+
});
|
|
123
|
+
});
|
|
124
|
+
//# sourceMappingURL=languages.js.map
|
package/package.json
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@based/schema",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.7.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "dist/src/index.js",
|
|
6
6
|
"files": [
|
|
7
7
|
"dist",
|
|
8
|
+
"README.md",
|
|
9
|
+
"package.json",
|
|
8
10
|
"!dist/**/*.js.map"
|
|
9
11
|
],
|
|
10
12
|
"scripts": {
|
|
@@ -29,6 +31,7 @@
|
|
|
29
31
|
},
|
|
30
32
|
"devDependencies": {
|
|
31
33
|
"type-fest": "^3.12.0",
|
|
34
|
+
"@saulx/tsconfig": "^1.1.0",
|
|
32
35
|
"ts-node": "10.9.1",
|
|
33
36
|
"typescript": "^5.1.6",
|
|
34
37
|
"rimraf": "^3.0.2",
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
import { BasedSchemaPartial, BasedSchemaFieldPartial, BasedSchemaTypePartial } from './types.js';
|
|
2
|
-
export declare const validateType: (_fromSchema: BasedSchemaPartial, typeName: string, type: BasedSchemaTypePartial) => void;
|
|
3
|
-
export declare const validateField: (_fromSchema: BasedSchemaPartial, _path: string[], _field: BasedSchemaFieldPartial) => void;
|
|
4
|
-
export declare const validateSchema: (schema: BasedSchemaPartial) => BasedSchemaPartial;
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
// gaurd in the schema for refs in arrays
|
|
2
|
-
export const validateType = (_fromSchema, typeName, type) => {
|
|
3
|
-
if (type.prefix &&
|
|
4
|
-
(typeof type.prefix !== 'string' || type.prefix.length !== 2)) {
|
|
5
|
-
throw new Error(`Incorrect prefix "${type.prefix}" for type "${typeName}" has to be a string of 2 alphanumerical characters e.g. "Az", "ab", "cc", "10"`);
|
|
6
|
-
}
|
|
7
|
-
};
|
|
8
|
-
export const validateField = (_fromSchema, _path, _field) => {
|
|
9
|
-
//
|
|
10
|
-
};
|
|
11
|
-
export const validateSchema = (schema) => {
|
|
12
|
-
// rewrite schema things like required / required: []
|
|
13
|
-
if (typeof schema !== 'object') {
|
|
14
|
-
throw new Error('Schema is not an object');
|
|
15
|
-
}
|
|
16
|
-
if (schema.language && typeof schema.language !== 'string') {
|
|
17
|
-
throw new Error('Language must be a string');
|
|
18
|
-
}
|
|
19
|
-
if (schema.translations && !Array.isArray(schema.translations)) {
|
|
20
|
-
throw new Error('Translations needs to be an array');
|
|
21
|
-
}
|
|
22
|
-
if (schema.$defs) {
|
|
23
|
-
// first defs ofc
|
|
24
|
-
}
|
|
25
|
-
if (schema.root) {
|
|
26
|
-
validateType(schema, 'root', schema.root);
|
|
27
|
-
}
|
|
28
|
-
if (schema.types) {
|
|
29
|
-
for (const type in schema.types) {
|
|
30
|
-
validateType(schema, type, schema.types[type]);
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
return schema;
|
|
34
|
-
};
|
|
35
|
-
//# sourceMappingURL=validateSchema.js.map
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
import test from 'ava';
|
|
2
|
-
import { validateSchema } from '../src/index.js';
|
|
3
|
-
test.serial('throw on invalid schema', async (t) => {
|
|
4
|
-
const prefixError = t.throws(() => {
|
|
5
|
-
validateSchema({
|
|
6
|
-
$defs: {
|
|
7
|
-
yuzi: {
|
|
8
|
-
type: 'string',
|
|
9
|
-
title: 'BLA',
|
|
10
|
-
description: 'SNURP',
|
|
11
|
-
},
|
|
12
|
-
},
|
|
13
|
-
types: {
|
|
14
|
-
bla: {
|
|
15
|
-
prefix: 'fix',
|
|
16
|
-
fields: {
|
|
17
|
-
yuzi: {
|
|
18
|
-
type: 'object',
|
|
19
|
-
customValidator: async (_value, _path, _target) => {
|
|
20
|
-
return true;
|
|
21
|
-
},
|
|
22
|
-
properties: {
|
|
23
|
-
gurt: {
|
|
24
|
-
$ref: '/$defs/yuzi',
|
|
25
|
-
},
|
|
26
|
-
flap: {
|
|
27
|
-
enum: ['bla', 'blap', 'flip'],
|
|
28
|
-
},
|
|
29
|
-
},
|
|
30
|
-
},
|
|
31
|
-
},
|
|
32
|
-
},
|
|
33
|
-
},
|
|
34
|
-
});
|
|
35
|
-
});
|
|
36
|
-
t.is(prefixError.message, 'Incorrect prefix "fix" for type "bla" has to be a string of 2 alphanumerical characters e.g. "Az", "ab", "cc", "10"');
|
|
37
|
-
});
|
|
38
|
-
//# sourceMappingURL=validateSchema.js.map
|
|
File without changes
|