detailed-xml-validator
Advanced tools
Comparing version
{ | ||
"name": "detailed-xml-validator", | ||
"version": "0.0.5", | ||
"version": "0.0.6", | ||
"description": "Validate for XML schema and returns all the possible failures", | ||
@@ -5,0 +5,0 @@ "main": "./src/validator.js", |
# detailed-xml-validator | ||
Validate for XML schema and returns all the possible failures | ||
This module uses it's own rule file which is different than XSD and looks more like XML data file. More features would be added in future versions. Currently, it just ensures frequency, type, range, value length, value pattern and null validations only on top of syntax check done by FXP. | ||
If there is no syntax error, then this module reports all failures and don't exit on first faliure. So you can report all the issues in one go. | ||
Sample Rules file | ||
@@ -55,2 +58,5 @@ ```xml | ||
* **pattern**: regex | ||
* **pattern_i**: regex (case insensitive) | ||
* **pattern_m**: regex (multiline) | ||
* **pattern_im**: regex (case insencitive and multiline) | ||
@@ -57,0 +63,0 @@ Sample code |
@@ -130,2 +130,40 @@ const { assert, expect } = require('chai'); | ||
}); | ||
it("when pattern doesn't match with modifier", function(){ | ||
const xmlData = ` | ||
<root> | ||
<a>0</a> | ||
<a>amitguptagmail.com</a> | ||
<a>amit@gmail.com</a> | ||
<a>amitgupta@gmail.com</a> | ||
<a>AmitGupta@Gmail.com</a> | ||
</root>`; | ||
const rules = ` | ||
<root> | ||
<a repeatable pattern_i="[a-z]+@gmail.com" minLength="15"></a> | ||
</root>`; | ||
const validator = new Validator(rules); | ||
const actual = validator.validate(xmlData); | ||
// console.log(actual); | ||
expect(actual).to.deep.equal([ | ||
{ code: 'minLength', path: 'root.a[0]', actual: '0', expected: 15 }, | ||
{ | ||
code: 'pattern_i', | ||
path: 'root.a[0]', | ||
actual: '0', | ||
expected: '[a-z]+@gmail.com' | ||
}, | ||
{ | ||
code: 'pattern_i', | ||
path: 'root.a[1]', | ||
actual: 'amitguptagmail.com', | ||
expected: '[a-z]+@gmail.com' | ||
}, | ||
{ | ||
code: 'minLength', | ||
path: 'root.a[2]', | ||
actual: 'amit@gmail.com', | ||
expected: 15 | ||
} | ||
]); | ||
}); | ||
@@ -132,0 +170,0 @@ //type:boolean |
@@ -206,6 +206,8 @@ /// @ts-check | ||
// } | ||
["pattern"].forEach( rule => { | ||
["pattern", "pattern_i", "pattern_im", "pattern_mi"].forEach( rule => { | ||
if(rules[rule] !== undefined){ | ||
let modifier = ""; | ||
if(rule.length > 8) modifier = rule.substring(8); | ||
const expected = rules[rule]; | ||
if( !validations.string[rule](expected, actual) ){ | ||
if( !validations.string["pattern"](expected, actual, modifier) ){ | ||
this.setInvalidValueError(rule, newpath, actual, expected); | ||
@@ -212,0 +214,0 @@ }; |
@@ -11,4 +11,4 @@ module.exports.string = { | ||
}, | ||
pattern: function(expected, actual){ | ||
const regxp = new RegExp(expected); | ||
pattern: function(expected, actual, modifier){ | ||
const regxp = new RegExp(expected, modifier); | ||
return regxp.test(actual); | ||
@@ -15,0 +15,0 @@ } |
Sorry, the diff of this file is not supported yet
50382
4.11%1203
3.44%95
6.74%