From 8d2847756271a1b4eb06a27b044b4096bd21f55c Mon Sep 17 00:00:00 2001 From: toasted-nutbread Date: Sun, 13 Sep 2020 19:59:02 -0400 Subject: Fix default options missing profiles (#829) * Add minItems requirement for profiles array * Use minItems/maxItems for default value construction --- ext/bg/js/json-schema.js | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'ext/bg/js') diff --git a/ext/bg/js/json-schema.js b/ext/bg/js/json-schema.js index cdfd339f..357432e5 100644 --- a/ext/bg/js/json-schema.js +++ b/ext/bg/js/json-schema.js @@ -653,6 +653,21 @@ class JsonSchemaValidator { value[i] = this.getValidValueOrDefault(propertySchema, value[i]); } + const minItems = schema.minItems; + if (typeof minItems === 'number' && value.length < minItems) { + for (let i = value.length; i < minItems; ++i) { + const propertySchema = this._getPropertySchema(schema, i, value, null); + if (propertySchema === null) { break; } + const item = this.getValidValueOrDefault(propertySchema); + value.push(item); + } + } + + const maxItems = schema.maxItems; + if (typeof maxItems === 'number' && value.length > maxItems) { + value.splice(maxItems, value.length - maxItems); + } + return value; } -- cgit v1.2.3