Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

✨ Fix roundtripping issue when genearting JSON patch #251

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion example/mutatingwebhook.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ func (a *podAnnotator) Handle(ctx context.Context, req types.Request) types.Resp
if err != nil {
return admission.ErrorResponse(http.StatusInternalServerError, err)
}
return admission.PatchResponse(pod, copy)
return admission.PatchResponse(pod, copy, req.AdmissionRequest.Object.Raw...)
}

// mutatePodsFn add an annotation to the given pod
Expand Down
18 changes: 13 additions & 5 deletions pkg/patch/patch.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,24 @@ import (
"k8s.io/apimachinery/pkg/runtime"
)

// NewJSONPatch calculates the JSON patch between original and current objects.
func NewJSONPatch(original, current runtime.Object) ([]jsonpatch.JsonPatchOperation, error) {
// NewJSONPatch calculates the JSON patch between original and current objects and
// an optional original object in raw bytes format.
// If the original raw object is provided, it will be used to calculate json patch.
// It is STRONGLY recommended to use the original raw object to avoid the roundtripping
// issue for non-pointer fields.
func NewJSONPatch(original, current runtime.Object, originalRaw ...byte) ([]jsonpatch.JsonPatchOperation, error) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since it is STRONGLY recommended to provide originalRaw, it will help to not to treat this field optional. I know that will introduce a breaking change, but I think thats ok (we can include this for next major release). Also using originalRaw... is also not intuitive (I know its clever because it keeps this change backward compatible) when you expect a slice of bytes.

So my recommendation would be to introduce it with breaking change with originalRaw []byte as the last arg.

originalGVK := original.GetObjectKind().GroupVersionKind()
currentGVK := current.GetObjectKind().GroupVersionKind()
if !reflect.DeepEqual(originalGVK, currentGVK) {
return nil, fmt.Errorf("GroupVersionKind %#v is expected to match %#v", originalGVK, currentGVK)
}
ori, err := json.Marshal(original)
if err != nil {
return nil, err
ori := originalRaw
if len(ori) == 0 {
var err error
ori, err = json.Marshal(original)
if err != nil {
return nil, err
}
}
cur, err := json.Marshal(current)
if err != nil {
Expand Down
192 changes: 192 additions & 0 deletions pkg/patch/patch_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,192 @@
/*
Copyright 2018 The Kubernetes 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 patch_test

import (
"encoding/json"
"fmt"
"reflect"
"testing"

jpatch "github.com/evanphx/json-patch"
"github.com/mattbaird/jsonpatch"

appsv1 "k8s.io/api/apps/v1"
corev1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/runtime"
"sigs.k8s.io/controller-runtime/pkg/patch"
)

type testcase struct {
original runtime.Object
current runtime.Object
originalRaw []byte
// expectedPatchesFromRaw is the expected json patches when using originalRaw
expectedPatchesFromRaw []jsonpatch.JsonPatchOperation
// expectedPatchesFromRaw is the expected json patches when NOT using originalRaw
expectedPatches []jsonpatch.JsonPatchOperation
}

var testcases = []testcase{
{
original: &appsv1.Deployment{
TypeMeta: metav1.TypeMeta{
APIVersion: "apps/v1",
Kind: "Deployment",
},
ObjectMeta: metav1.ObjectMeta{
Name: "test-deployment",
},
},
current: &appsv1.Deployment{
TypeMeta: metav1.TypeMeta{
APIVersion: "apps/v1",
Kind: "Deployment",
},
ObjectMeta: metav1.ObjectMeta{
Name: "test-deployment",
},
Spec: appsv1.DeploymentSpec{
Replicas: func(x int32) *int32 { return &x }(1),
Selector: &metav1.LabelSelector{
MatchLabels: map[string]string{
"foo": "bar",
},
},
Template: corev1.PodTemplateSpec{},
Strategy: appsv1.DeploymentStrategy{
Type: appsv1.RecreateDeploymentStrategyType,
},
},
},
originalRaw: []byte(`{"apiVersion":"apps/v1", "kind":"Deployment", "metadata": {"creationTimestamp":null, "name": "test-deployment"}, "status": {}}`),
expectedPatchesFromRaw: []jsonpatch.JsonPatchOperation{
{
Operation: "add",
Path: "/spec",
Value: map[string]interface{}{
"replicas": 1.0,
"selector": map[string]interface{}{
"matchLabels": map[string]interface{}{
"foo": "bar",
},
},
"strategy": map[string]interface{}{
"type": "Recreate",
},
"template": map[string]interface{}{
"metadata": map[string]interface{}{
"creationTimestamp": nil,
},
"spec": map[string]interface{}{
"containers": nil,
},
},
},
},
},
expectedPatches: []jsonpatch.JsonPatchOperation{
{
Operation: "add",
Path: "/spec/replicas",
// float64 will be used by default in the generated JSON patch
Value: 1.0,
},
{
Operation: "replace",
Path: "/spec/selector",
Value: map[string]interface{}{
"matchLabels": map[string]interface{}{
"foo": "bar",
},
},
},
{
Operation: "add",
Path: "/spec/strategy/type",
Value: "Recreate",
},
},
},
}

func TestJSONPatchFromRaw(t *testing.T) {
for _, tc := range testcases {
patches, err := patch.NewJSONPatch(tc.original, tc.current, tc.originalRaw...)
assertNoError(err, t)

err = arrayEqual(tc.expectedPatchesFromRaw, patches)
assertNoError(err, t)

// Applying the patch to the original raw object should yield the desired object
patchByte, err := json.Marshal(patches)
assertNoError(err, t)

p, err := jpatch.DecodePatch(patchByte)
assertNoError(err, t)

modified, err := p.Apply(tc.originalRaw)
assertNoError(err, t)

var appliedObject *appsv1.Deployment
err = json.Unmarshal(modified, &appliedObject)
assertNoError(err, t)

if !reflect.DeepEqual(tc.current, appliedObject) {
t.Fatalf("expect object:\n%#v,\nbut got:\n%#v", tc.current, appliedObject)
}
}
}

func TestJSONPatch(t *testing.T) {
for _, tc := range testcases {
patches, err := patch.NewJSONPatch(tc.original, tc.current)
assertNoError(err, t)

err = arrayEqual(tc.expectedPatches, patches)
assertNoError(err, t)
}
}

func arrayEqual(expected, got []jsonpatch.JsonPatchOperation) error {
if len(expected) != len(got) {
return fmt.Errorf("expected to have length %d, but got length %d", len(expected), len(got))
}
for _, e := range expected {
found := false
for _, g := range got {
if e.Path == g.Path {
if !reflect.DeepEqual(e, g) {
return fmt.Errorf("expected: %#v,\nbut got: %#v", e, g)
}
found = true
break
}
}
if !found {
return fmt.Errorf("expected entry: %#v but didn't get it", e)
}
}
return nil
}

func assertNoError(err error, t *testing.T) {
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
}
6 changes: 4 additions & 2 deletions pkg/webhook/admission/response.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,10 @@ func ValidationResponse(allowed bool, reason string) types.Response {
}

// PatchResponse returns a new response with json patch.
func PatchResponse(original, current runtime.Object) types.Response {
patches, err := patch.NewJSONPatch(original, current)
// originalRaw is optional. If provided, it will be used to calculate json patch.
// It is STRONGLY recommended to use it to avoid the roundtripping issue for non-pointer fields.
func PatchResponse(original, current runtime.Object, originalRaw ...byte) types.Response {
patches, err := patch.NewJSONPatch(original, current, originalRaw...)
if err != nil {
return ErrorResponse(http.StatusInternalServerError, err)
}
Expand Down
16 changes: 16 additions & 0 deletions vendor/github.com/evanphx/json-patch/.travis.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 25 additions & 0 deletions vendor/github.com/evanphx/json-patch/LICENSE

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading