mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-31 03:45:17 +00:00
Added nil support
This commit is contained in:
parent
181a1282e0
commit
50610af82d
2 changed files with 181 additions and 2 deletions
|
@ -70,7 +70,7 @@ func validateResourceElement(value, pattern interface{}, path string) result.Rul
|
|||
}
|
||||
|
||||
return validateArray(typedValue, typedPattern, path)
|
||||
case string, float64, int, int64, bool:
|
||||
case string, float64, int, int64, bool, nil:
|
||||
if !ValidateValueWithPattern(value, pattern) {
|
||||
res.FailWithMessagef("Failed to validate value %v with pattern %v. Path: %s", value, pattern, path)
|
||||
}
|
||||
|
@ -135,7 +135,7 @@ func validateArray(resourceArray, patternArray []interface{}, path string) resul
|
|||
res.Messages = append(res.Messages, mapValidationResult.Messages...)
|
||||
}
|
||||
}
|
||||
case string, float64, int, int64, bool:
|
||||
case string, float64, int, int64, bool, nil:
|
||||
for _, value := range resourceArray {
|
||||
if !ValidateValueWithPattern(value, pattern) {
|
||||
res.FailWithMessagef("Failed to validate value %v with pattern %v. Path: %s", value, pattern, path)
|
||||
|
|
|
@ -692,6 +692,185 @@ func TestValidateMap_AsteriskFieldIsMissing(t *testing.T) {
|
|||
assert.Assert(t, res.ToError() != nil)
|
||||
}
|
||||
|
||||
func TestValidateMap_livenessProbeIsNull(t *testing.T) {
|
||||
rawPattern := []byte(`{
|
||||
"spec":{
|
||||
"template":{
|
||||
"spec":{
|
||||
"containers":[
|
||||
{
|
||||
"name":"*",
|
||||
"livenessProbe":null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}`)
|
||||
rawMap := []byte(`{
|
||||
"apiVersion":"apps/v1",
|
||||
"kind":"StatefulSet",
|
||||
"metadata":{
|
||||
"name":"game-web",
|
||||
"labels":{
|
||||
"originalLabel":"isHere"
|
||||
}
|
||||
},
|
||||
"spec":{
|
||||
"selector":{
|
||||
"matchLabels":{
|
||||
"app":"nginxo"
|
||||
}
|
||||
},
|
||||
"serviceName":"nginxo",
|
||||
"replicas":3,
|
||||
"template":{
|
||||
"metadata":{
|
||||
"labels":{
|
||||
"app":"nginxo"
|
||||
}
|
||||
},
|
||||
"spec":{
|
||||
"terminationGracePeriodSeconds":10,
|
||||
"containers":[
|
||||
{
|
||||
"name":"nginxo",
|
||||
"image":"k8s.gcr.io/nginx-but-no-slim:0.8",
|
||||
"ports":[
|
||||
{
|
||||
"containerPort":8780,
|
||||
"name":"webp"
|
||||
}
|
||||
],
|
||||
"volumeMounts":[
|
||||
{
|
||||
"name":"www",
|
||||
"mountPath":"/usr/share/nginxo/html"
|
||||
}
|
||||
],
|
||||
"livenessProbe":null
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"volumeClaimTemplates":[
|
||||
{
|
||||
"metadata":{
|
||||
"name":"www"
|
||||
},
|
||||
"spec":{
|
||||
"accessModes":[
|
||||
"ReadWriteOnce"
|
||||
],
|
||||
"storageClassName":"my-storage-class",
|
||||
"resources":{
|
||||
"requests":{
|
||||
"storage":"1Gi"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}`)
|
||||
|
||||
var pattern, resource map[string]interface{}
|
||||
json.Unmarshal(rawPattern, &pattern)
|
||||
json.Unmarshal(rawMap, &resource)
|
||||
|
||||
res := validateMap(resource, pattern, "/")
|
||||
assert.NilError(t, res.ToError())
|
||||
}
|
||||
|
||||
func TestValidateMap_livenessProbeIsMissing(t *testing.T) {
|
||||
rawPattern := []byte(`{
|
||||
"spec":{
|
||||
"template":{
|
||||
"spec":{
|
||||
"containers":[
|
||||
{
|
||||
"name":"*",
|
||||
"livenessProbe" : null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}`)
|
||||
rawMap := []byte(`{
|
||||
"apiVersion":"apps/v1",
|
||||
"kind":"StatefulSet",
|
||||
"metadata":{
|
||||
"name":"game-web",
|
||||
"labels":{
|
||||
"originalLabel":"isHere"
|
||||
}
|
||||
},
|
||||
"spec":{
|
||||
"selector":{
|
||||
"matchLabels":{
|
||||
"app":"nginxo"
|
||||
}
|
||||
},
|
||||
"serviceName":"nginxo",
|
||||
"replicas":3,
|
||||
"template":{
|
||||
"metadata":{
|
||||
"labels":{
|
||||
"app":"nginxo"
|
||||
}
|
||||
},
|
||||
"spec":{
|
||||
"terminationGracePeriodSeconds":10,
|
||||
"containers":[
|
||||
{
|
||||
"name":"nginxo",
|
||||
"image":"k8s.gcr.io/nginx-but-no-slim:0.8",
|
||||
"ports":[
|
||||
{
|
||||
"containerPort":8780,
|
||||
"name":"webp"
|
||||
}
|
||||
],
|
||||
"volumeMounts":[
|
||||
{
|
||||
"name":"www",
|
||||
"mountPath":"/usr/share/nginxo/html"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"volumeClaimTemplates":[
|
||||
{
|
||||
"metadata":{
|
||||
"name":"www"
|
||||
},
|
||||
"spec":{
|
||||
"accessModes":[
|
||||
"ReadWriteOnce"
|
||||
],
|
||||
"storageClassName":"my-storage-class",
|
||||
"resources":{
|
||||
"requests":{
|
||||
"storage":"1Gi"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}`)
|
||||
|
||||
var pattern, resource map[string]interface{}
|
||||
json.Unmarshal(rawPattern, &pattern)
|
||||
json.Unmarshal(rawMap, &resource)
|
||||
|
||||
res := validateMap(resource, pattern, "/")
|
||||
assert.NilError(t, res.ToError())
|
||||
}
|
||||
|
||||
func TestValidateMapElement_TwoElementsInArrayOnePass(t *testing.T) {
|
||||
rawPattern := []byte(`[
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue