Skip to content

Commit 83e866b

Browse files
authored
Merge pull request #763 from michaelmior/propertynames-const
Add tests for propertyNames with const/enum
2 parents c5a9703 + b4c09b6 commit 83e866b

File tree

4 files changed

+230
-0
lines changed

4 files changed

+230
-0
lines changed

tests/draft2019-09/propertyNames.json

+53
Original file line numberDiff line numberDiff line change
@@ -111,5 +111,58 @@
111111
"valid": true
112112
}
113113
]
114+
},
115+
{
116+
"description": "propertyNames with const",
117+
"schema": {
118+
"$schema": "https://json-schema.org/draft/2019-09/schema",
119+
"propertyNames": {"const": "foo"}
120+
},
121+
"tests": [
122+
{
123+
"description": "object with property foo is valid",
124+
"data": {"foo": 1},
125+
"valid": true
126+
},
127+
{
128+
"description": "object with any other property is invalid",
129+
"data": {"bar": 1},
130+
"valid": false
131+
},
132+
{
133+
"description": "empty object is valid",
134+
"data": {},
135+
"valid": true
136+
}
137+
]
138+
},
139+
{
140+
"description": "propertyNames with enum",
141+
"schema": {
142+
"$schema": "https://json-schema.org/draft/2019-09/schema",
143+
"propertyNames": {"enum": ["foo", "bar"]}
144+
},
145+
"tests": [
146+
{
147+
"description": "object with property foo is valid",
148+
"data": {"foo": 1},
149+
"valid": true
150+
},
151+
{
152+
"description": "object with property foo and bar is valid",
153+
"data": {"foo": 1, "bar": 1},
154+
"valid": true
155+
},
156+
{
157+
"description": "object with any other property is invalid",
158+
"data": {"baz": 1},
159+
"valid": false
160+
},
161+
{
162+
"description": "empty object is valid",
163+
"data": {},
164+
"valid": true
165+
}
166+
]
114167
}
115168
]

tests/draft2020-12/propertyNames.json

+83
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,36 @@
4444
}
4545
]
4646
},
47+
{
48+
"description": "propertyNames validation with pattern",
49+
"schema": {
50+
"$schema": "https://json-schema.org/draft/2020-12/schema",
51+
"propertyNames": { "pattern": "^a+$" }
52+
},
53+
"tests": [
54+
{
55+
"description": "matching property names valid",
56+
"data": {
57+
"a": {},
58+
"aa": {},
59+
"aaa": {}
60+
},
61+
"valid": true
62+
},
63+
{
64+
"description": "non-matching property name is invalid",
65+
"data": {
66+
"aaA": {}
67+
},
68+
"valid": false
69+
},
70+
{
71+
"description": "object without properties is valid",
72+
"data": {},
73+
"valid": true
74+
}
75+
]
76+
},
4777
{
4878
"description": "propertyNames with boolean schema true",
4979
"schema": {
@@ -81,5 +111,58 @@
81111
"valid": true
82112
}
83113
]
114+
},
115+
{
116+
"description": "propertyNames with const",
117+
"schema": {
118+
"$schema": "https://json-schema.org/draft/2020-12/schema",
119+
"propertyNames": {"const": "foo"}
120+
},
121+
"tests": [
122+
{
123+
"description": "object with property foo is valid",
124+
"data": {"foo": 1},
125+
"valid": true
126+
},
127+
{
128+
"description": "object with any other property is invalid",
129+
"data": {"bar": 1},
130+
"valid": false
131+
},
132+
{
133+
"description": "empty object is valid",
134+
"data": {},
135+
"valid": true
136+
}
137+
]
138+
},
139+
{
140+
"description": "propertyNames with enum",
141+
"schema": {
142+
"$schema": "https://json-schema.org/draft/2020-12/schema",
143+
"propertyNames": {"enum": ["foo", "bar"]}
144+
},
145+
"tests": [
146+
{
147+
"description": "object with property foo is valid",
148+
"data": {"foo": 1},
149+
"valid": true
150+
},
151+
{
152+
"description": "object with property foo and bar is valid",
153+
"data": {"foo": 1, "bar": 1},
154+
"valid": true
155+
},
156+
{
157+
"description": "object with any other property is invalid",
158+
"data": {"baz": 1},
159+
"valid": false
160+
},
161+
{
162+
"description": "empty object is valid",
163+
"data": {},
164+
"valid": true
165+
}
166+
]
84167
}
85168
]

tests/draft6/propertyNames.json

+47
Original file line numberDiff line numberDiff line change
@@ -103,5 +103,52 @@
103103
"valid": true
104104
}
105105
]
106+
},
107+
{
108+
"description": "propertyNames with const",
109+
"schema": {"propertyNames": {"const": "foo"}},
110+
"tests": [
111+
{
112+
"description": "object with property foo is valid",
113+
"data": {"foo": 1},
114+
"valid": true
115+
},
116+
{
117+
"description": "object with any other property is invalid",
118+
"data": {"bar": 1},
119+
"valid": false
120+
},
121+
{
122+
"description": "empty object is valid",
123+
"data": {},
124+
"valid": true
125+
}
126+
]
127+
},
128+
{
129+
"description": "propertyNames with enum",
130+
"schema": {"propertyNames": {"enum": ["foo", "bar"]}},
131+
"tests": [
132+
{
133+
"description": "object with property foo is valid",
134+
"data": {"foo": 1},
135+
"valid": true
136+
},
137+
{
138+
"description": "object with property foo and bar is valid",
139+
"data": {"foo": 1, "bar": 1},
140+
"valid": true
141+
},
142+
{
143+
"description": "object with any other property is invalid",
144+
"data": {"baz": 1},
145+
"valid": false
146+
},
147+
{
148+
"description": "empty object is valid",
149+
"data": {},
150+
"valid": true
151+
}
152+
]
106153
}
107154
]

tests/draft7/propertyNames.json

+47
Original file line numberDiff line numberDiff line change
@@ -103,5 +103,52 @@
103103
"valid": true
104104
}
105105
]
106+
},
107+
{
108+
"description": "propertyNames with const",
109+
"schema": {"propertyNames": {"const": "foo"}},
110+
"tests": [
111+
{
112+
"description": "object with property foo is valid",
113+
"data": {"foo": 1},
114+
"valid": true
115+
},
116+
{
117+
"description": "object with any other property is invalid",
118+
"data": {"bar": 1},
119+
"valid": false
120+
},
121+
{
122+
"description": "empty object is valid",
123+
"data": {},
124+
"valid": true
125+
}
126+
]
127+
},
128+
{
129+
"description": "propertyNames with enum",
130+
"schema": {"propertyNames": {"enum": ["foo", "bar"]}},
131+
"tests": [
132+
{
133+
"description": "object with property foo is valid",
134+
"data": {"foo": 1},
135+
"valid": true
136+
},
137+
{
138+
"description": "object with property foo and bar is valid",
139+
"data": {"foo": 1, "bar": 1},
140+
"valid": true
141+
},
142+
{
143+
"description": "object with any other property is invalid",
144+
"data": {"baz": 1},
145+
"valid": false
146+
},
147+
{
148+
"description": "empty object is valid",
149+
"data": {},
150+
"valid": true
151+
}
152+
]
106153
}
107154
]

0 commit comments

Comments
 (0)