upm/tests/node/test.js
Mihai Tudor Panu 0a0c352614 tests: add missing license block on project python and node tests
Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
2020-03-05 15:14:11 -08:00

218 lines
6.7 KiB
JavaScript

/********************************************************************************
* Copyright (c) 2017-2019 Intel Corporation
*
* This program and the accompanying materials are made available under the
* terms of the The MIT License which is available at
* https://opensource.org/licenses/MIT.
*
* SPDX-License-Identifier: MIT
********************************************************************************/
var shell = require('shelljs');
var path = require('path');
var expect = require('chai').expect;
var jsonQuery = require('json-query');
var rootPath = path.resolve(__dirname, '../../');
var srcPath = path.resolve(rootPath, 'src');
var examplesPath = path.resolve(rootPath, 'examples');
var imagesPath = path.resolve(rootPath, 'docs/images');
var sensorTemplateJson = require(path.join(srcPath, 'sensortemplate/sensortemplate.json'));
/**
* Get type name
*/
function getTypeName(value) {
if(Array.isArray(value)) {
return 'array'
}
return typeof value;
}
/**
* Check property
* @param {object} target Target Object to check
* @param {string} propertyName Target property to check in target object
* @param {object} propertySpecs Property specs
* @param {string} propertySpecs.comment
* @param {string} propertySpecs.type
* @param {boolean} propertySpecs.required
*/
function checkProperty(target, propertyName, propertySpecs) {
// Fail if a required property is missing
if (propertySpecs.required) {
expect(target).to.have.property(propertyName);
}
// Check non required property
if (target[propertyName]) {
var propertyType = getTypeName(target[propertyName]);
var errorMsg = propertyName + ' property should be a ' + propertySpecs.type + '.';
expect(propertyType).to.be.equal(propertySpecs.type, errorMsg);
}
}
/**
* Check object specs
* @param {object} object Json schema specification
* @param {object} target Json object to check
*/
function checkObjectSpecs(object, target) {
for (var key in object) {
/**
* Properties specs start with a // character
* Properties that are not specs are skipped
*/
if (key.indexOf('//') !== 0) {
continue;
}
/**
* We need to do a closure here to make
* async calls like it() to hold the
* current values of object and key in
* the iteration
*/
(function (object, key) {
var keySpecs = object[key];
var realKeyName = key.replace('// ', '');
/**
* "SensorTemplate" is a special case
* For objects, the SensorTemplate define
* the specs for each of the items in the object
*/
if (realKeyName === 'SensorTemplate') {
for (var key in target) {
(function(key, target){
/**
* Create a test case for each property in the
* target object. This test will check the property
* spectations
*/
it('Test for ' + key + ' property', function () {
checkProperty(target, key, keySpecs);
});
if (target[key] && keySpecs.type === 'object') {
(function (object, target) {
describe(key, function () {
checkObjectSpecs(object, target);
});
})(object['SensorTemplate'], target[key]);
}
})(key, target);
}
}
else {
/**
* Create a test case for each property in the
* target object. This test will check the property
* spectations
*/
it('Test for ' + realKeyName + ' property', function () {
checkProperty(target, realKeyName, keySpecs);
});
if (target[realKeyName] && keySpecs.type === 'object') {
(function (object, target) {
describe(realKeyName, function () {
checkObjectSpecs(object, target);
});
})(object[realKeyName], target[realKeyName]);
}
}
})(object, key);
}
}
/**
* Check if the included image in the target actually exists
* in docs/images folder
* @param {object} target The json object to check
*/
function checkImageLinks(target) {
var imageLinksArray = jsonQuery('Sensor Class[**]Image', {
data: target
}).value;
if(imageLinksArray) {
imageLinksArray.forEach(function (imageLink) {
it(imageLink + ' should exists in docs/images', function () {
var globalImagePath = path.join(imagesPath, imageLink);
var exists = shell.test('-e', globalImagePath);
var errorMsg = 'docs/images/' + imageLink + ' should exist, but was not found.';
expect(exists).to.be.equal(true, errorMsg);
});
});
}
}
/**
* Check if the included examples in the target actually exists
* in examples folder
* @param {object} target The json object to check
*/
function checkExamplesLinks(target) {
var examplesLinksArray = jsonQuery('Sensor Class[**]Examples', {
data: target
}).value;
function checkExamplesLinksForLanguage(language, examplesSubfolder) {
var examples = examplesLinksArray[0][language];
examples.forEach(function (example) {
it(example + ' should exists in examples/' + examplesSubfolder, function () {
var globalExamplePath = path.join(examplesPath, examplesSubfolder, example);
var exists = shell.test('-e', globalExamplePath);
var errorMsg = 'examples/' + examplesSubfolder + '/' + example + ' should exist, but was not found.';
expect(exists).to.be.equal(true, errorMsg);
});
});
}
if(examplesLinksArray[0]) {
// Check C++ examples
if(examplesLinksArray[0]['C++']) {
checkExamplesLinksForLanguage('C++', 'c++');
}
// Check C examples
if(examplesLinksArray[0]['C']) {
checkExamplesLinksForLanguage('C', 'c');
}
// Check Java examples
if(examplesLinksArray[0]['Java']) {
checkExamplesLinksForLanguage('Java', 'java');
}
// Check Python examples
if(examplesLinksArray[0]['Python']) {
checkExamplesLinksForLanguage('Python', 'python');
}
// Check Node.js examples
if(examplesLinksArray[0]['Node.js']) {
checkExamplesLinksForLanguage('Node.js', 'javascript');
}
}
}
shell.find(srcPath)
.filter(function (file) {
return file.match(/\.json$/);
})
.filter(function (file) {
// Filter sensortemplate.json file
return !file.match(/sensortemplate\.json$/);
})
.forEach(function (jsonFile) {
var relativePath = path.relative(rootPath, jsonFile);
/**
* For each json file found, create a Test Suite
*/
describe(relativePath, function () {
var parsedJson = require(jsonFile);
checkObjectSpecs(sensorTemplateJson, parsedJson);
checkImageLinks(parsedJson);
checkExamplesLinks(parsedJson);
});
});