Skip to content

Commit f1aab53

Browse files
authoredSep 15, 2021
fix(sample-gen): generate the correct number of properties (#7432)
This commit fixes correct number of additionalProperties when minProperties is used.
1 parent cc700f0 commit f1aab53

File tree

2 files changed

+33
-2
lines changed
  • src/core/plugins/samples
  • test/unit/core/plugins/samples

2 files changed

+33
-2
lines changed
 

‎src/core/plugins/samples/fn.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -480,8 +480,8 @@ export const sampleFromSchemaGeneric = (schema, config={}, exampleOverride = und
480480
} else {
481481
const toGenerateCount = schema.minProperties !== null && schema.minProperties !== undefined && propertyAddedCounter < schema.minProperties
482482
? schema.minProperties - propertyAddedCounter
483-
: 4
484-
for (let i = 1; i < toGenerateCount; i++) {
483+
: 3
484+
for (let i = 1; i <= toGenerateCount; i++) {
485485
if(hasExceededMaxProperties()) {
486486
return res
487487
}

‎test/unit/core/plugins/samples/fn.js

+31
Original file line numberDiff line numberDiff line change
@@ -789,6 +789,23 @@ describe("sampleFromSchema", () => {
789789
})
790790

791791
it("should handle minProperties in conjunction with additionalProperties", () => {
792+
const definition = {
793+
type: "object",
794+
minProperties: 2,
795+
additionalProperties: {
796+
type: "string"
797+
}
798+
}
799+
800+
const expected = {
801+
additionalProp1: "string",
802+
additionalProp2: "string"
803+
}
804+
805+
expect(sampleFromSchema(definition)).toEqual(expected)
806+
})
807+
808+
it("should handle minProperties in conjunction with properties and additionalProperties", () => {
792809
const definition = {
793810
type: "object",
794811
minProperties: 2,
@@ -854,6 +871,20 @@ describe("sampleFromSchema", () => {
854871
expect(sampleFromSchema(definition)).toEqual(expected)
855872
})
856873

874+
it("should handle maxProperties in conjunction with additionalProperties", () => {
875+
const definition = {
876+
type: "object",
877+
maxProperties: 1,
878+
additionalProperties: true
879+
}
880+
881+
const expected = {
882+
additionalProp1: {}
883+
}
884+
885+
expect(sampleFromSchema(definition)).toEqual(expected)
886+
})
887+
857888
it("should handle maxProperties in conjunction with anyOf", () => {
858889
const definition = {
859890
type: "object",

0 commit comments

Comments
 (0)
Please sign in to comment.