forked from eclipse-thingweb/playground
-
Notifications
You must be signed in to change notification settings - Fork 0
/
assertionTests-tm.js
504 lines (456 loc) · 17.4 KB
/
assertionTests-tm.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
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
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
/*
* Copyright (c) 2023 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0, or the W3C Software Notice and
* Document License (2015-05-13) which is available at
* https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document.
*
* SPDX-License-Identifier: EPL-2.0 OR W3C-20150513
*/
// used to check whether the supplied data is utf8
const isUtf8 = require("is-utf8");
// The usual library used for validation
const Ajv = require("ajv");
const addFormats = require("ajv-formats");
const apply = require("ajv-formats-draft2019");
// Imports from utils
const validate = require("./util").validate;
const createParents = require("./util").createParents;
const mergeIdenticalResults = require("./util").mergeIdenticalResults;
// Imports from playground core
const checkTmOptionalPointer = require("@thing-description-playground/core").checkTmOptionalPointer;
const tmSchema = require("@thing-description-playground/core/tm-schema.json");
const tmPlaceholderSchema = require("./assertions-tm/tm-placeholder.json");
const tmRefSchema = require("./assertions-tm/tm-tmRef1.json");
module.exports = validateTM;
/**
* validates the TM in the first argument according to the assertions given in the second argument
* manual assertions given in the third argument are pushed to the end of the array after sorting the results array
* return is a JSON array of result JSON objects
* if there is a throw, it gives the failed assertion id
* @param {Buffer} tmData Buffer of the TM data, has to be utf8 encoded (e.g. by fs.readFileSync(file.json) )
* @param {Array<object>} assertions An array containing all assertion objects (already parsed)
* @param {Array<object>} manualAssertions An array containing all manual assertions
* @param {Function} loggingFunction Logging function, needed to differentiate between web and cli
*/
function validateTM(tmData, assertions, manualAssertions, loggingFunction) {
// a JSON file that will be returned containing the result for each assertion as a JSON Object
let results = [];
// !!! uses console info on purpose, to be able to deactivate it, without overwriting console.log !!!
// console.info("=================================================================")
// it is commented out to make sure that the output to std is also a valid csv file
// todo Not sure what to do in this case
// check whether it is a valid JSON
let tmJson;
try {
tmJson = JSON.parse(tmData);
// results.push({
// "ID": "td-json-open",
// "Status": "pass"
// })
} catch (error) {
throw new Error("td-json-open");
}
// check whether it is a valid UTF-8
if (isUtf8(tmData)) {
// results.push({
// "ID": "td-json-open_utf-8",
// "Status": "pass"
// })
} else {
throw new Error("td-json-open_utf-8");
}
// // checking whether two interactions of the same interaction affordance type have the same names
// // This requires to use the string version of the TM that will be passed down to the jsonvalidator library
// const tmDataString = tmData.toString()
// results.push(...checkUniqueness(tmDataString))
// Normal TM Schema validation but this allows us to test multiple assertions at once
try {
results.push(...checkTMVocabulary(tmJson));
} catch (error) {
loggingFunction({
ID: error,
Status: "fail",
});
let logName = ""; // this will be id and or title
if (tmJson.hasOwnProperty("title") && tmJson.hasOwnProperty("id")) {
logName = "title: " + tmJson.title + " id: " + tmJson.id;
} else if (tmJson.hasOwnProperty("title")) {
logName = "title: " + tmJson.title;
} else if (tmJson.hasOwnProperty("id")) {
logName = "id: " + tmJson.id;
} else {
// if no id or title present, put the whole td as string
logName = JSON.stringify(tmJson) + "\n";
}
throw new Error(logName, " : Invalid TM");
}
// additional checks
results.push(...checkTmOptionalPointer(tmJson));
// Iterating through assertions
for (let index = 0; index < assertions.length; index++) {
const curAssertion = assertions[index];
const schema = curAssertion;
if (schema.title === "tm-placeholder") {
results.push(...validateTmPlaceholder(tmJson, loggingFunction));
continue;
}
if (schema.title === "tm-tmRef1") {
results.push(...validateTmRef(tmJson, loggingFunction));
continue;
}
// Validation starts here
const validPayload = validate(tmJson, schema, loggingFunction);
/*
TODO: when is implemented?
If valid then it is not implemented
if error says not-impl then it is not implemented
If somehow error says fail then it is failed
Output is structured as follows:
[main assertion]:[sub assertion if exists]=[result]
*/
if (schema["is-complex"]) {
if (validPayload.valid) {
results.push({
ID: schema.title,
Status: "not-impl",
});
if (schema.hasOwnProperty("also")) {
const otherAssertions = schema.also;
otherAssertions.forEach(function (asser) {
results.push({
ID: asser,
Status: "not-impl",
});
});
}
} else {
try {
const output = validPayload.ajvObject.errors[0].params.allowedValue;
const resultStart = output.indexOf("=");
const result = output.slice(resultStart + 1);
if (result === "pass") {
results.push({
ID: schema.title,
Status: result,
});
} else {
results.push({
ID: schema.title,
Status: result,
Comment: validPayload.ajvObject.errorsText(),
});
}
if (schema.hasOwnProperty("also")) {
const otherAssertions = schema.also;
otherAssertions.forEach(function (asser) {
results.push({
ID: asser,
Status: result,
});
});
}
// there was some other error, so it is fail
} catch (error1) {
results.push({
ID: schema.title,
Status: "fail",
Comment: "Make sure you validate your TM before",
});
if (schema.hasOwnProperty("also")) {
const otherAssertions = schema.also;
otherAssertions.forEach(function (asser) {
results.push({
ID: asser,
Status: "fail",
Comment: "Make sure you validate your TM before",
});
});
}
}
}
} else {
if (validPayload.valid) {
results.push({
ID: schema.title,
Status: "pass",
});
if (schema.hasOwnProperty("also")) {
const otherAssertions = schema.also;
otherAssertions.forEach(function (asser) {
results.push({
ID: asser,
Status: "pass",
});
});
}
} else {
// failed because a required is not implemented
if (validPayload.ajvObject.errorsText().indexOf("required") > -1) {
// failed because it doesnt have required key which is a non implemented feature
results.push({
ID: schema.title,
Status: "not-impl",
Comment: validPayload.ajvObject.errorsText(),
});
if (schema.hasOwnProperty("also")) {
const otherAssertions = schema.also;
otherAssertions.forEach(function (asser) {
results.push({
ID: asser,
Status: "not-impl",
Comment: validPayload.ajvObject.errorsText(),
});
});
}
} else {
// failed because of some other reason
results.push({
ID: schema.title,
Status: "fail",
Comment: validPayload.ajvObject.errorsText(),
});
if (schema.hasOwnProperty("also")) {
const otherAssertions = schema.also;
otherAssertions.forEach(function (asser) {
results.push({
ID: asser,
Status: "fail",
Comment: validPayload.ajvObject.errorsText(),
});
});
}
}
}
}
}
results = mergeIdenticalResults(results);
results = createParents(results);
// sort according to the ID in each item
orderedResults = results.sort(function (a, b) {
const idA = a.ID;
const idB = b.ID;
if (idA < idB) {
return -1;
}
if (idA > idB) {
return 1;
}
// if ids are equal
return 0;
});
results = orderedResults.concat(manualAssertions);
return results;
}
/**
* Validates the following assertions:
* todo TBD
* @param {object} tmJson The tm to validate
*/
function checkTMVocabulary(tmJson) {
const results = [];
let ajv = new Ajv({ strict: false });
ajv = addFormats(ajv); // ajv does not support formats by default anymore
ajv = apply(ajv); // new formats that include iri
ajv.addSchema(tmSchema, "tm");
ajv.addVocabulary(["is-complex", "also"]);
const valid = ajv.validate("tm", tmJson);
const otherAssertions = ["tm-placeholder-value", "tm-td-generation-inconsistencies", "tm-context-requirement"];
if (valid) {
// results.push({
// "ID": "td-processor",
// "Status": "pass"
// })
otherAssertions.forEach(function (asser) {
results.push({
ID: asser,
Status: "pass",
});
});
return results;
} else {
console.log(ajv.errorsText());
throw new Error("Invalid TM");
}
}
/**
* A script for validating tm-placeholder
* @param {object} obj
* @returns {array} results array
*/
function validateTmPlaceholder(tmObj, results) {
const scopedResults = [];
let FOUND_TM_PLACEHOLDER = false;
const tmpResults = [];
let validPayload = null;
checkObjContainsTmPlaceholder(tmObj); // this internally sets FOUND_TM_PLACEHOLDER
let otherAssertion = [];
if (tmPlaceholderSchema.also && tmPlaceholderSchema.also.length >= 1) otherAssertion = tmPlaceholderSchema.also;
if (FOUND_TM_PLACEHOLDER) {
// Return a fail result if found
for (const result of tmpResults) {
if (result && !result.valid) return result;
}
// if no fail was found, return a valid result
validPayload = tmpResults[0];
}
if (FOUND_TM_PLACEHOLDER) {
if (validPayload && validPayload.valid) {
scopedResults.push({
ID: "tm-placeholder",
Status: "pass",
});
for (const asser of otherAssertion) {
scopedResults.push({
ID: asser,
Status: "pass",
});
}
} else if (validPayload && validPayload.valid === false) {
scopedResults.push({
ID: "tm-placeholder",
Status: "fail",
Comment: validPayload.ajvObject.errorsText(),
});
for (const asser of otherAssertion) {
scopedResults.push({
ID: asser,
Status: "fail",
Comment: validPayload.ajvObject.errorsText(),
});
}
}
} else {
scopedResults.push({
ID: "tm-placeholder",
Status: "not-impl",
});
for (const asser of otherAssertion) {
scopedResults.push({
ID: asser,
Status: "not-impl",
});
}
}
return scopedResults;
/**
* In addition to checking the assertion for the placeholder, this internally sets FOUND_TM_PLACEHOLDER
* @param {object} obj
* @returns {{valid: boolean, ajvObject: object} | null} true if validation passes, else false
*/
function checkObjContainsTmPlaceholder(obj) {
for (const key in obj) {
if (Object.prototype.hasOwnProperty.call(obj, key)) {
const value = obj[key];
if (typeof value === "string") {
const regex = /^.*[{]{2}[ -~]+[}]{2}.*$/;
if (value.match(regex)) {
FOUND_TM_PLACEHOLDER = true;
const result = { valid: true, ajvObject: {} };
tmpResults.push(result);
}
}
if (typeof obj[key] === "object") {
checkObjContainsTmPlaceholder(obj[key]);
}
}
}
return null;
}
}
/**
* A script for validating tm-tmRef-1
* @param {object} obj
* @param {function} logFunc
* @returns {array} results array
*/
function validateTmRef(tmObj, logFunc) {
const scopedResults = [];
const tmpResults = [];
let FOUND_TM_REF = false;
let validPayload = checkObjContainsTmRef(tmObj, logFunc);
let otherAssertion = [];
if (tmRefSchema.also && tmRefSchema.also.length >= 1) otherAssertion = tmRefSchema.also;
if (FOUND_TM_REF) {
// Return a fail result if found
for (const result of tmpResults) {
if (result && !result.valid) return result;
}
// if no fail was found, return a valid result
validPayload = tmpResults[0];
}
if (FOUND_TM_REF) {
if (validPayload && validPayload.valid) {
scopedResults.push({
ID: "tm-tmRef1",
Status: "pass",
});
for (const asser of otherAssertion) {
scopedResults.push({
ID: asser,
Status: "pass",
});
}
} else if (validPayload && !validPayload.valid) {
scopedResults.push({
ID: "tm-tmRef1",
Status: "fail",
Comment: validPayload.ajvObject.errorsText(),
});
for (const asser of otherAssertion) {
scopedResults.push({
ID: asser,
Status: "fail",
Comment: validPayload.ajvObject.errorsText(),
});
}
}
} else {
scopedResults.push({
ID: "tm-tmRef1",
Status: "not-impl",
});
for (const asser of otherAssertion) {
scopedResults.push({
ID: asser,
Status: "not-impl",
});
}
}
return scopedResults;
/**
*
* @param {object} obj
* @param {function} logFuncLow
* @returns {{valid: boolean, ajvObject: object} | null} true if validation passes, else false
*/
// eslint-disable-next-line no-shadow
function checkObjContainsTmRef(obj, logFuncLow) {
for (const key in obj) {
if (Object.prototype.hasOwnProperty.call(obj, key)) {
if (key === "tm:ref") {
FOUND_TM_REF = true;
const result = validate(obj, tmRefSchema, logFuncLow);
tmpResults.push(result);
}
if (typeof obj[key] == "object") {
checkObjContainsTmRef(obj[key]);
}
}
}
if (FOUND_TM_REF) {
// Return a fail result if found
for (const result of tmpResults) {
if (result && !result.valid) return result;
}
// if no fail was found, return a valid result
return scopedResults[0];
}
return null;
}
}