test-requirement
v1.5.1
Published
Node module to test if an object satisfies certain requirements
Downloads
4
Readme
test-requirement
Node module to test if an object satisfies certain requirements
Installation
npm install test-requirement
var Test = require('test-requirement');
Examples
Sample object:
var SAMPLE_OBJECT = {
"a": "hello",
"b": 12,
"list": [
"one",
"two",
"three"
]
};
Test key value
var spec = {
"a": "hello"
};
Test(SAMPLE_OBJECT, spec); // returns true
Test key value where object value is array
var spec = {
"list": "one"
}
Test(SAMPLE_OBJECT, spec); // returns true bc 'one' is a value in SAMPLE_OBJECT.list
Test key value where test specifies an array
var spec = {
"a": ["hello", "goodbye"]
}
Test(SAMPLE_OBJECT, spec); return true // returns true bc one of the test spec values for "a" matches SAMPLE_OBJECT.a
Test key value within numerical range
var spec = {
"b": {
"gt": 5, // SAMPLE_OBJECT.b (12) is greater than 5
"lt": 17, // 12 is less than 17
"gte": 12, // 12 is greater than or equal to 12
"lte": 17 // 12 is less than or equal to 17
}
};
Test(SAMPLE_OBJECT, spec); // return true bc SAMPLE_OBJECT.b (12) satisfies range requirements
Test key value matches substrings
var spec = {
"a": {
"substring": ["ell", "no match"] // "ell" is substring of SAMPLE_OBJECT.a ("hello"), so test will pass
}
};
Test(Sample_OBJECT, spec); // returns true