-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add PatchJson6902Factory to make transformer
- Loading branch information
1 parent
7f0e9e3
commit cedf215
Showing
9 changed files
with
320 additions
and
153 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
/* | ||
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 transformer | ||
|
||
import ( | ||
"fmt" | ||
|
||
jsonpatch "github.com/evanphx/json-patch" | ||
yamlpatch "github.com/krishicks/yaml-patch" | ||
"k8s.io/apimachinery/pkg/runtime/schema" | ||
|
||
"github.com/kubernetes-sigs/kustomize/pkg/loader" | ||
"github.com/kubernetes-sigs/kustomize/pkg/patch" | ||
"github.com/kubernetes-sigs/kustomize/pkg/resource" | ||
"github.com/kubernetes-sigs/kustomize/pkg/transformers" | ||
) | ||
|
||
// PatchJson6902Factory makes PatchJson6902 transformers. | ||
type PatchJson6902Factory struct { | ||
targetId resource.ResId | ||
operationsYAML yamlpatch.Patch | ||
operationsJSON jsonpatch.Patch | ||
} | ||
|
||
// NewPatchJson6902Factory returns a new PatchJson6902Factory. | ||
func NewPatchJson6902Factory(l loader.Loader, p patch.PatchJson6902) (*PatchJson6902Factory, error) { | ||
|
||
if p.Target == nil { | ||
return nil, fmt.Errorf("must specify the target field in patchesJson6902") | ||
} | ||
if p.Path != "" && p.JsonPatch != nil { | ||
return nil, fmt.Errorf("cannot specify path and jsonPath at the same time") | ||
} | ||
|
||
targetId := resource.NewResIdWithPrefixNamespace( | ||
schema.GroupVersionKind{ | ||
Group: p.Target.Group, | ||
Version: p.Target.Version, | ||
Kind: p.Target.Kind, | ||
}, | ||
p.Target.Name, | ||
"", | ||
p.Target.Namespace, | ||
) | ||
|
||
if p.JsonPatch != nil { | ||
return &PatchJson6902Factory{targetId: targetId, operationsYAML: p.JsonPatch}, nil | ||
} | ||
if p.Path != "" { | ||
rawOp, err := l.Load(p.Path) | ||
if err != nil { | ||
return nil, err | ||
} | ||
patch, err := jsonpatch.DecodePatch(rawOp) | ||
if err != nil { | ||
return nil, err | ||
} | ||
return &PatchJson6902Factory{targetId: targetId, operationsJSON: patch}, nil | ||
} | ||
return nil, nil | ||
} | ||
|
||
// MakePatchJson6902Transformer returns a transformer for applying Json6902 patch | ||
func (f *PatchJson6902Factory) MakePatchJson6902Transformer() (transformers.Transformer, error) { | ||
if f.operationsJSON != nil { | ||
return newPatchJson6902JSONTransformer(f.targetId, f.operationsJSON) | ||
} | ||
return newPatchJson6902YAMLTransformer(f.targetId, f.operationsYAML) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,156 @@ | ||
/* | ||
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 transformer | ||
|
||
import ( | ||
"strings" | ||
"testing" | ||
|
||
yaml "gopkg.in/yaml.v2" | ||
|
||
"github.com/kubernetes-sigs/kustomize/pkg/internal/loadertest" | ||
"github.com/kubernetes-sigs/kustomize/pkg/patch" | ||
) | ||
|
||
func TestNewPatchJson6902FactoryNull(t *testing.T) { | ||
p := patch.PatchJson6902{ | ||
Target: &patch.Target{ | ||
Name: "some-name", | ||
}, | ||
} | ||
f, err := NewPatchJson6902Factory(nil, p) | ||
if err != nil { | ||
t.Fatalf("unexpected error : %v", err) | ||
} | ||
if f != nil { | ||
t.Fatal("a nil should be returned") | ||
} | ||
} | ||
|
||
func TestNewPatchJson6902FactoryNoTarget(t *testing.T) { | ||
p := patch.PatchJson6902{} | ||
_, err := NewPatchJson6902Factory(nil, p) | ||
if err == nil { | ||
t.Fatal("expected error") | ||
} | ||
if !strings.Contains(err.Error(), "must specify the target field in patchesJson6902") { | ||
t.Fatalf("incorrect error returned: %v", err) | ||
} | ||
} | ||
|
||
func TestNewPatchJson6902FactoryConflict(t *testing.T) { | ||
jsonPatch := []byte(` | ||
target: | ||
name: some-name | ||
kind: Deployment | ||
jsonPatch: | ||
- op: replace | ||
path: /spec/template/spec/containers/0/name | ||
value: my-nginx | ||
- op: add | ||
path: /spec/template/spec/containers/0/command | ||
value: [arg1,arg2,arg3] | ||
path: /some/dir/some/file | ||
`) | ||
p := patch.PatchJson6902{} | ||
err := yaml.Unmarshal(jsonPatch, &p) | ||
if err != nil { | ||
t.Fatalf("expected error %v", err) | ||
} | ||
_, err = NewPatchJson6902Factory(nil, p) | ||
if err == nil { | ||
t.Fatal("expected error") | ||
} | ||
if !strings.Contains(err.Error(), "cannot specify path and jsonPath at the same time") { | ||
t.Fatalf("incorrect error returned %v", err) | ||
} | ||
} | ||
|
||
func TestNewPatchJson6902FactoryJSON(t *testing.T) { | ||
ldr := loadertest.NewFakeLoader("/testpath") | ||
operations := []byte(`[ | ||
{"op": "replace", "path": "/spec/template/spec/containers/0/name", "value": "my-nginx"}, | ||
{"op": "add", "path": "/spec/replica", "value": "3"}, | ||
{"op": "add", "path": "/spec/template/spec/containers/0/command", "value": ["arg1", "arg2", "arg3"]} | ||
]`) | ||
err := ldr.AddFile("/testpath/patch.json", operations) | ||
if err != nil { | ||
t.Fatalf("Failed to setup fake ldr.") | ||
} | ||
|
||
jsonPatch := []byte(` | ||
target: | ||
kind: Deployment | ||
name: some-name | ||
path: /testpath/patch.json | ||
`) | ||
p := patch.PatchJson6902{} | ||
err = yaml.Unmarshal(jsonPatch, &p) | ||
if err != nil { | ||
t.Fatal("expected error") | ||
} | ||
|
||
f, err := NewPatchJson6902Factory(ldr, p) | ||
if err != nil { | ||
t.Fatalf("unexpected error : %v", err) | ||
} | ||
if f == nil { | ||
t.Fatalf("the returned factory shouldn't be nil ") | ||
} | ||
|
||
_, err = f.MakePatchJson6902Transformer() | ||
if err != nil { | ||
t.Fatalf("unexpected error : %v", err) | ||
} | ||
} | ||
|
||
func TestNewPatchJson6902FactoryYAML(t *testing.T) { | ||
jsonPatch := []byte(` | ||
target: | ||
name: some-name | ||
kind: Deployment | ||
jsonPatch: | ||
- op: replace | ||
path: /spec/template/spec/containers/0/name | ||
value: my-nginx | ||
- op: add | ||
path: /spec/replica | ||
value: 3 | ||
- op: add | ||
path: /spec/template/spec/containers/0/command | ||
value: ["arg1", "arg2", "arg3"] | ||
`) | ||
p := patch.PatchJson6902{} | ||
err := yaml.Unmarshal(jsonPatch, &p) | ||
if err != nil { | ||
t.Fatalf("unexpected error : %v", err) | ||
} | ||
|
||
f, err := NewPatchJson6902Factory(nil, p) | ||
if err != nil { | ||
t.Fatalf("unexpected error : %v", err) | ||
} | ||
if f == nil { | ||
t.Fatalf("the returned factory shouldn't be nil ") | ||
} | ||
|
||
_, err = f.MakePatchJson6902Transformer() | ||
if err != nil { | ||
t.Fatalf("unexpected error : %v", err) | ||
} | ||
|
||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.