mirror of https://github.com/knative/caching.git
158 lines
4.9 KiB
Go
158 lines
4.9 KiB
Go
/*
|
|
Copyright 2019 The Knative Authors
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package testing
|
|
|
|
import (
|
|
"context"
|
|
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"knative.dev/pkg/apis"
|
|
)
|
|
|
|
// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
|
|
|
|
// InnerDefaultResource is a simple resource that's compatible with our webhook. It differs from
|
|
// Resource by not omitting empty `spec`, so can change when it round trips
|
|
// JSON -> Golang type -> JSON.
|
|
type InnerDefaultResource struct {
|
|
metav1.TypeMeta `json:",inline"`
|
|
metav1.ObjectMeta `json:"metadata,omitempty"`
|
|
|
|
// Note that this does _not_ have omitempty. So when JSON is round tripped through the Golang
|
|
// type, `spec: {}` will automatically be injected.
|
|
Spec InnerDefaultSpec `json:"spec"`
|
|
|
|
// Status is a simple status.
|
|
Status InnerDefaultStatus `json:"status,omitempty"`
|
|
}
|
|
|
|
// InnerDefaultSpec is the spec for InnerDefaultResource.
|
|
type InnerDefaultSpec struct {
|
|
Generation int64 `json:"generation,omitempty"`
|
|
|
|
FieldWithDefault string `json:"fieldWithDefault,omitempty"`
|
|
|
|
// Deprecated: This field is deprecated.
|
|
DeprecatedField string `json:"field,omitempty"`
|
|
|
|
SubFields *InnerDefaultSubSpec `json:"subfields,omitempty"`
|
|
}
|
|
|
|
// InnerDefaultSubSpec is a helper to test strict deprecated validation.
|
|
type InnerDefaultSubSpec struct {
|
|
// Deprecated: This field is deprecated.
|
|
DeprecatedString string `json:"string,omitempty"`
|
|
|
|
// Deprecated: This field is deprecated.
|
|
DeprecatedStringPtr *string `json:"stringPtr,omitempty"`
|
|
|
|
// Deprecated: This field is deprecated.
|
|
DeprecatedInt int64 `json:"int,omitempty"`
|
|
|
|
// Deprecated: This field is deprecated.
|
|
DeprecatedIntPtr *int64 `json:"intPtr,omitempty"`
|
|
|
|
// Deprecated: This field is deprecated.
|
|
DeprecatedMap map[string]string `json:"map,omitempty"`
|
|
|
|
// Deprecated: This field is deprecated.
|
|
DeprecatedSlice []string `json:"slice,omitempty"`
|
|
|
|
// Deprecated: This field is deprecated.
|
|
DeprecatedStruct InnerDefaultStruct `json:"struct,omitempty"`
|
|
|
|
// Deprecated: This field is deprecated.
|
|
DeprecatedStructPtr *InnerDefaultStruct `json:"structPtr,omitempty"`
|
|
|
|
InlinedStruct `json:",inline"`
|
|
*InlinedPtrStruct `json:",inline"`
|
|
|
|
// Deprecated: This field is deprecated.
|
|
DeprecatedNotJson string
|
|
}
|
|
|
|
// Adding complication helper.
|
|
type InnerDefaultStruct struct {
|
|
FieldAsString string `json:"fieldAsString,omitempty"`
|
|
|
|
// Deprecated: This field is deprecated.
|
|
DeprecatedField string `json:"field,omitempty"`
|
|
}
|
|
|
|
type InlinedStruct struct {
|
|
// Deprecated: This field is deprecated.
|
|
DeprecatedField string `json:"fieldA,omitempty"`
|
|
*InlinedPtrStruct `json:",inline"`
|
|
}
|
|
|
|
type InlinedPtrStruct struct {
|
|
// Deprecated: This field is deprecated.
|
|
DeprecatedField string `json:"fieldB,omitempty"`
|
|
}
|
|
|
|
// InnerDefaultStatus is the status for InnerDefaultResource.
|
|
type InnerDefaultStatus struct {
|
|
FieldAsString string `json:"fieldAsString,omitempty"`
|
|
}
|
|
|
|
// Check that ImmutableDefaultResource may be validated and defaulted.
|
|
var _ apis.Validatable = (*InnerDefaultResource)(nil)
|
|
var _ apis.Defaultable = (*InnerDefaultResource)(nil)
|
|
|
|
// SetDefaults sets default values.
|
|
func (i *InnerDefaultResource) SetDefaults(ctx context.Context) {
|
|
i.Spec.SetDefaults(ctx)
|
|
}
|
|
|
|
// SetDefaults sets default values.
|
|
func (cs *InnerDefaultSpec) SetDefaults(ctx context.Context) {
|
|
if cs.FieldWithDefault == "" {
|
|
cs.FieldWithDefault = "I'm a default."
|
|
}
|
|
}
|
|
|
|
// Validate validates the resource.
|
|
func (i *InnerDefaultResource) Validate(ctx context.Context) *apis.FieldError {
|
|
var errs *apis.FieldError
|
|
if apis.IsInUpdate(ctx) {
|
|
org := apis.GetBaseline(ctx).(*InnerDefaultResource)
|
|
errs = apis.CheckDeprecatedUpdate(ctx, i.Spec, org.Spec).ViaField("spec")
|
|
if i.Spec.SubFields != nil {
|
|
var orgSubFields interface{}
|
|
if org != nil && org.Spec.SubFields != nil {
|
|
orgSubFields = org.Spec.SubFields
|
|
}
|
|
|
|
errs = errs.Also(apis.CheckDeprecatedUpdate(ctx, i.Spec.SubFields, orgSubFields).ViaField("spec", "subFields"))
|
|
|
|
var orgDepStruct interface{}
|
|
if orgSubFields != nil {
|
|
orgDepStruct = org.Spec.SubFields.DeprecatedStruct
|
|
}
|
|
|
|
errs = errs.Also(apis.CheckDeprecatedUpdate(ctx, i.Spec.SubFields.DeprecatedStruct, orgDepStruct).ViaField("spec", "subFields", "deprecatedStruct"))
|
|
}
|
|
} else {
|
|
errs = apis.CheckDeprecated(ctx, i.Spec).ViaField("spec")
|
|
if i.Spec.SubFields != nil {
|
|
errs = errs.Also(apis.CheckDeprecated(ctx, i.Spec.SubFields).ViaField("spec", "subFields").
|
|
Also(apis.CheckDeprecated(ctx, i.Spec.SubFields.DeprecatedStruct).ViaField("deprecatedStruct")))
|
|
}
|
|
}
|
|
return errs
|
|
}
|