-
Notifications
You must be signed in to change notification settings - Fork 608
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add e2e tests for build/diff kustomization
Signed-off-by: Soule BA <soule@weave.works>
- Loading branch information
Showing
35 changed files
with
1,467 additions
and
206 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
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 @@ | ||
//go:build unit | ||
// +build unit | ||
|
||
/* | ||
Copyright 2021 The Flux 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 main | ||
|
||
import ( | ||
"testing" | ||
) | ||
|
||
func setup(t *testing.T, tmpl map[string]string) { | ||
t.Helper() | ||
testEnv.CreateObjectFile("./testdata/build-kustomization/podinfo-source.yaml", tmpl, t) | ||
testEnv.CreateObjectFile("./testdata/build-kustomization/podinfo-kustomization.yaml", tmpl, t) | ||
} | ||
|
||
func TestBuildKustomization(t *testing.T) { | ||
tests := []struct { | ||
name string | ||
args string | ||
resultFile string | ||
assertFunc string | ||
}{ | ||
{ | ||
name: "no args", | ||
args: "build kustomization podinfo", | ||
resultFile: "invalid resource path \"\"", | ||
assertFunc: "assertError", | ||
}, | ||
{ | ||
name: "build podinfo", | ||
args: "build kustomization podinfo --path ./testdata/build-kustomization/podinfo", | ||
resultFile: "./testdata/build-kustomization/podinfo-result.yaml", | ||
assertFunc: "assertGoldenTemplateFile", | ||
}, | ||
{ | ||
name: "build podinfo without service", | ||
args: "build kustomization podinfo --path ./testdata/build-kustomization/delete-service", | ||
resultFile: "./testdata/build-kustomization/podinfo-without-service-result.yaml", | ||
assertFunc: "assertGoldenTemplateFile", | ||
}, | ||
} | ||
|
||
tmpl := map[string]string{ | ||
"fluxns": allocateNamespace("flux-system"), | ||
} | ||
setup(t, tmpl) | ||
|
||
for _, tt := range tests { | ||
t.Run(tt.name, func(t *testing.T) { | ||
var assert assertFunc | ||
|
||
switch tt.assertFunc { | ||
case "assertGoldenTemplateFile": | ||
assert = assertGoldenTemplateFile(tt.resultFile, tmpl) | ||
case "assertError": | ||
assert = assertError(tt.resultFile) | ||
} | ||
|
||
cmd := cmdTestCase{ | ||
args: tt.args + " -n " + tmpl["fluxns"], | ||
assert: assert, | ||
} | ||
|
||
cmd.runTestCmd(t) | ||
}) | ||
} | ||
} |
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
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,129 @@ | ||
//go:build unit | ||
// +build unit | ||
|
||
/* | ||
Copyright 2021 The Flux 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 main | ||
|
||
import ( | ||
"context" | ||
"os" | ||
"strings" | ||
"testing" | ||
|
||
"github.com/fluxcd/flux2/internal/kustomization" | ||
"github.com/fluxcd/pkg/ssa" | ||
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured" | ||
) | ||
|
||
func TestDiffKustomization(t *testing.T) { | ||
tests := []struct { | ||
name string | ||
args string | ||
objectFile string | ||
assert assertFunc | ||
}{ | ||
{ | ||
name: "no args", | ||
args: "diff kustomization podinfo", | ||
objectFile: "", | ||
assert: assertError("invalid resource path \"\""), | ||
}, | ||
{ | ||
name: "diff nothing deployed", | ||
args: "diff kustomization podinfo --path ./testdata/build-kustomization/podinfo", | ||
objectFile: "", | ||
assert: assertGoldenFile("./testdata/diff-kustomization/nothing-is-deployed.golden"), | ||
}, | ||
{ | ||
name: "diff with a deployment object", | ||
args: "diff kustomization podinfo --path ./testdata/build-kustomization/podinfo", | ||
objectFile: "./testdata/diff-kustomization/deployment.yaml", | ||
assert: assertGoldenFile("./testdata/diff-kustomization/diff-with-deployment.golden"), | ||
}, | ||
{ | ||
name: "diff with a drifted service object", | ||
args: "diff kustomization podinfo --path ./testdata/build-kustomization/podinfo", | ||
objectFile: "./testdata/diff-kustomization/service.yaml", | ||
assert: assertGoldenFile("./testdata/diff-kustomization/diff-with-drifted-service.golden"), | ||
}, | ||
{ | ||
name: "diff with a drifted secret object", | ||
args: "diff kustomization podinfo --path ./testdata/build-kustomization/podinfo", | ||
objectFile: "./testdata/diff-kustomization/secret.yaml", | ||
assert: assertGoldenFile("./testdata/diff-kustomization/diff-with-drifted-secret.golden"), | ||
}, | ||
{ | ||
name: "diff with a drifted key in sops secret object", | ||
args: "diff kustomization podinfo --path ./testdata/build-kustomization/podinfo", | ||
objectFile: "./testdata/diff-kustomization/key-sops-secret.yaml", | ||
assert: assertGoldenFile("./testdata/diff-kustomization/diff-with-drifted-key-sops-secret.golden"), | ||
}, | ||
{ | ||
name: "diff with a drifted value in sops secret object", | ||
args: "diff kustomization podinfo --path ./testdata/build-kustomization/podinfo", | ||
objectFile: "./testdata/diff-kustomization/value-sops-secret.yaml", | ||
assert: assertGoldenFile("./testdata/diff-kustomization/diff-with-drifted-value-sops-secret.golden"), | ||
}, | ||
} | ||
|
||
tmpl := map[string]string{ | ||
"fluxns": allocateNamespace("flux-system"), | ||
} | ||
|
||
b, _ := kustomization.NewBuilder(kubeconfigArgs, "podinfo", "") | ||
|
||
resourceManager, err := b.Manager() | ||
if err != nil { | ||
t.Fatal(err) | ||
} | ||
|
||
setup(t, tmpl) | ||
|
||
for _, tt := range tests { | ||
t.Run(tt.name, func(t *testing.T) { | ||
if tt.objectFile != "" { | ||
resourceManager.ApplyAll(context.Background(), createObjectFromFile(tt.objectFile, tmpl, t), ssa.DefaultApplyOptions()) | ||
} | ||
cmd := cmdTestCase{ | ||
args: tt.args + " -n " + tmpl["fluxns"], | ||
assert: tt.assert, | ||
} | ||
cmd.runTestCmd(t) | ||
if tt.objectFile != "" { | ||
testEnv.DeleteObjectFile(tt.objectFile, tmpl, t) | ||
} | ||
}) | ||
} | ||
} | ||
|
||
func createObjectFromFile(objectFile string, templateValues map[string]string, t *testing.T) []*unstructured.Unstructured { | ||
buf, err := os.ReadFile(objectFile) | ||
if err != nil { | ||
t.Fatalf("Error reading file '%s': %v", objectFile, err) | ||
} | ||
content, err := executeTemplate(string(buf), templateValues) | ||
if err != nil { | ||
t.Fatalf("Error evaluating template file '%s': '%v'", objectFile, err) | ||
} | ||
clientObjects, err := readYamlObjects(strings.NewReader(content)) | ||
if err != nil { | ||
t.Fatalf("Error decoding yaml file '%s': %v", objectFile, err) | ||
} | ||
|
||
return clientObjects | ||
} |
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
74 changes: 74 additions & 0 deletions
74
cmd/flux/testdata/build-kustomization/delete-service/deployment.yaml
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,74 @@ | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: podinfo | ||
spec: | ||
minReadySeconds: 3 | ||
revisionHistoryLimit: 5 | ||
progressDeadlineSeconds: 60 | ||
strategy: | ||
rollingUpdate: | ||
maxUnavailable: 0 | ||
type: RollingUpdate | ||
selector: | ||
matchLabels: | ||
app: podinfo | ||
template: | ||
metadata: | ||
annotations: | ||
prometheus.io/scrape: "true" | ||
prometheus.io/port: "9797" | ||
labels: | ||
app: podinfo | ||
spec: | ||
containers: | ||
- name: podinfod | ||
image: ghcr.io/stefanprodan/podinfo:6.0.3 | ||
imagePullPolicy: IfNotPresent | ||
ports: | ||
- name: http | ||
containerPort: 9898 | ||
protocol: TCP | ||
- name: http-metrics | ||
containerPort: 9797 | ||
protocol: TCP | ||
- name: grpc | ||
containerPort: 9999 | ||
protocol: TCP | ||
command: | ||
- ./podinfo | ||
- --port=9898 | ||
- --port-metrics=9797 | ||
- --grpc-port=9999 | ||
- --grpc-service-name=podinfo | ||
- --level=info | ||
- --random-delay=false | ||
- --random-error=false | ||
env: | ||
- name: PODINFO_UI_COLOR | ||
value: "#34577c" | ||
livenessProbe: | ||
exec: | ||
command: | ||
- podcli | ||
- check | ||
- http | ||
- localhost:9898/healthz | ||
initialDelaySeconds: 5 | ||
timeoutSeconds: 5 | ||
readinessProbe: | ||
exec: | ||
command: | ||
- podcli | ||
- check | ||
- http | ||
- localhost:9898/readyz | ||
initialDelaySeconds: 5 | ||
timeoutSeconds: 5 | ||
resources: | ||
limits: | ||
cpu: 2000m | ||
memory: 512Mi | ||
requests: | ||
cpu: 100m | ||
memory: 64Mi |
Oops, something went wrong.