Skip to content

Commit

Permalink
fix(environment): Validate against correct patch types
Browse files Browse the repository at this point in the history
Using the correct patch types requires changing the order in which xr
and env are passed to ApplyToObjects to the "correct" order (xr, env)
instead of (env, xr). Here env takes over the role of the composed
resource just like in `Apply`.

Signed-off-by: Maximilian Blatt <[email protected]>
  • Loading branch information
MisterMX committed Jan 11, 2024
1 parent 11be501 commit 06869e5
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 22 deletions.
22 changes: 10 additions & 12 deletions fn_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -658,9 +658,9 @@ func TestRunFunction(t *testing.T) {
Environment: &v1beta1.Environment{
Patches: []v1beta1.EnvironmentPatch{
{
Type: v1beta1.PatchTypeFromEnvironmentFieldPath,
Type: v1beta1.PatchTypeToCompositeFieldPath,
Patch: v1beta1.Patch{
FromFieldPath: ptr.To[string]("data.widgets"),
FromFieldPath: ptr.To[string]("widgets"),
ToFieldPath: ptr.To[string]("spec.watchers"),
Transforms: []v1beta1.Transform{
{
Expand Down Expand Up @@ -713,10 +713,10 @@ func TestRunFunction(t *testing.T) {
Environment: &v1beta1.Environment{
Patches: []v1beta1.EnvironmentPatch{
{
Type: v1beta1.PatchTypeToEnvironmentFieldPath,
Type: v1beta1.PatchTypeFromCompositeFieldPath,
Patch: v1beta1.Patch{
FromFieldPath: ptr.To[string]("spec.watchers"),
ToFieldPath: ptr.To[string]("data.widgets"),
ToFieldPath: ptr.To[string]("widgets"),
Transforms: []v1beta1.Transform{
{
Type: v1beta1.TransformTypeMath,
Expand Down Expand Up @@ -764,7 +764,7 @@ func TestRunFunction(t *testing.T) {
Patches: []v1beta1.ComposedPatch{{
Type: v1beta1.PatchTypeFromEnvironmentFieldPath,
Patch: v1beta1.Patch{
FromFieldPath: ptr.To[string]("data.widgets"),
FromFieldPath: ptr.To[string]("widgets"),
ToFieldPath: ptr.To[string]("spec.watchers"),
Transforms: []v1beta1.Transform{{
Type: v1beta1.TransformTypeConvert,
Expand Down Expand Up @@ -816,7 +816,7 @@ func TestRunFunction(t *testing.T) {
Patches: []v1beta1.ComposedPatch{{
Type: v1beta1.PatchTypeFromEnvironmentFieldPath,
Patch: v1beta1.Patch{
FromFieldPath: ptr.To[string]("data.widgets"),
FromFieldPath: ptr.To[string]("widgets"),
ToFieldPath: ptr.To[string]("spec.watchers"),
Transforms: []v1beta1.Transform{{
Type: v1beta1.TransformTypeConvert,
Expand Down Expand Up @@ -872,7 +872,7 @@ func TestRunFunction(t *testing.T) {
Patches: []v1beta1.ComposedPatch{{
Type: v1beta1.PatchTypeFromEnvironmentFieldPath,
Patch: v1beta1.Patch{
FromFieldPath: ptr.To[string]("data.widgets"),
FromFieldPath: ptr.To[string]("widgets"),
ToFieldPath: ptr.To[string]("spec.watchers"),
Transforms: []v1beta1.Transform{{
Type: v1beta1.TransformTypeConvert,
Expand Down Expand Up @@ -937,18 +937,16 @@ func TestRunFunction(t *testing.T) {
}

// Crossplane sends as context a fake resource:
// { "apiVersion": "internal.crossplane.io/v1alpha1", "kind": "Environment", "data": {... the actual environment content ...} }
// { "apiVersion": "internal.crossplane.io/v1alpha1", "kind": "Environment", ... the actual environment content ... }
// See: https://github.com/crossplane/crossplane/blob/806f0d20d146f6f4f1735c5ec6a7dc78923814b3/internal/controller/apiextensions/composite/environment_fetcher.go#L85C1-L85C1
// That's because the patching code expects a resource to be able to use
// runtime.DefaultUnstructuredConverter.FromUnstructured to convert it back to
// an object. This is also why all patches need to specify the full path from data.
// an object.
func contextWithEnvironment(data map[string]interface{}) *structpb.Struct {
if data == nil {
data = map[string]interface{}{}
}
u := unstructured.Unstructured{Object: map[string]interface{}{
"data": data,
}}
u := unstructured.Unstructured{Object: data}
u.SetGroupVersionKind(schema.GroupVersionKind{Group: "internal.crossplane.io", Version: "v1alpha1", Kind: "Environment"})
d, err := structpb.NewStruct(u.UnstructuredContent())
if err != nil {
Expand Down
10 changes: 5 additions & 5 deletions render.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,15 +66,15 @@ func RenderEnvironmentPatches(env *unstructured.Unstructured, oxr, dxr *composit
for i, p := range ps {
p := p
switch p.GetType() {
case v1beta1.PatchTypeToEnvironmentFieldPath, v1beta1.PatchTypeCombineToEnvironment:
if err := ApplyToObjects(&p, env, oxr); err != nil {
case v1beta1.PatchTypeFromCompositeFieldPath, v1beta1.PatchTypeCombineFromComposite:
if err := ApplyToObjects(&p, oxr, env); err != nil {
return errors.Wrapf(err, errFmtPatch, p.GetType(), i)
}
case v1beta1.PatchTypeFromEnvironmentFieldPath, v1beta1.PatchTypeCombineFromEnvironment:
if err := ApplyToObjects(&p, env, dxr); err != nil {
case v1beta1.PatchTypeToCompositeFieldPath, v1beta1.PatchTypeCombineToComposite:
if err := ApplyToObjects(&p, dxr, env); err != nil {
return errors.Wrapf(err, errFmtPatch, p.GetType(), i)
}
case v1beta1.PatchTypePatchSet, v1beta1.PatchTypeFromCompositeFieldPath, v1beta1.PatchTypeCombineFromComposite, v1beta1.PatchTypeToCompositeFieldPath, v1beta1.PatchTypeCombineToComposite:
case v1beta1.PatchTypePatchSet, v1beta1.PatchTypeFromEnvironmentFieldPath, v1beta1.PatchTypeCombineFromEnvironment, v1beta1.PatchTypeToEnvironmentFieldPath, v1beta1.PatchTypeCombineToEnvironment:
// nothing to do
}
}
Expand Down
11 changes: 6 additions & 5 deletions validate.go
Original file line number Diff line number Diff line change
Expand Up @@ -98,11 +98,12 @@ func ValidateEnvironment(e *v1beta1.Environment) *field.Error {
}
for i, p := range e.Patches {
p := p
switch p.GetType() { //nolint:exhaustive // Intentionally targeting only environment patches.
case v1beta1.PatchTypeCombineToEnvironment,
v1beta1.PatchTypeCombineFromEnvironment,
v1beta1.PatchTypeFromEnvironmentFieldPath,
v1beta1.PatchTypeToEnvironmentFieldPath:
switch p.GetType() { //nolint:exhaustive // Only target valid patches according the API spec
case
v1beta1.PatchTypeFromCompositeFieldPath,
v1beta1.PatchTypeToCompositeFieldPath,
v1beta1.PatchTypeCombineFromComposite,
v1beta1.PatchTypeCombineToComposite:
default:
return field.Invalid(field.NewPath("patches").Index(i).Key("type"), p.GetType(), "invalid environment patch type")
}
Expand Down

0 comments on commit 06869e5

Please sign in to comment.