|
| 1 | +// Copyright 2025 The Kube Resource Orchestrator Authors. |
| 2 | +// |
| 3 | +// Licensed under the Apache License, Version 2.0 (the "License"). You may |
| 4 | +// not use this file except in compliance with the License. A copy of the |
| 5 | +// License is located at |
| 6 | +// |
| 7 | +// http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | +// |
| 9 | +// or in the "license" file accompanying this file. This file is distributed |
| 10 | +// on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either |
| 11 | +// express or implied. See the License for the specific language governing |
| 12 | +// permissions and limitations under the License. |
| 13 | + |
| 14 | +package advanced |
| 15 | + |
| 16 | +import ( |
| 17 | + "context" |
| 18 | + "testing" |
| 19 | + |
| 20 | + "github.com/stretchr/testify/require" |
| 21 | + |
| 22 | + "github.com/kro-run/kro/test/e2e/framework" |
| 23 | +) |
| 24 | + |
| 25 | +func TestSecretsInResources(t *testing.T) { |
| 26 | + |
| 27 | + tc, err := framework.NewTestCase(t, f, "secrets-in-resources") |
| 28 | + require.NoError(t, err) |
| 29 | + |
| 30 | + // Run the test |
| 31 | + // Option 1: Run all steps automatically using the manifests to verify |
| 32 | + tc.RunTest(t, func(ctx context.Context) error { |
| 33 | + return tc.RunAllSteps(ctx) |
| 34 | + }) |
| 35 | + |
| 36 | + // Option 2: Run steps with custom logic |
| 37 | + /* |
| 38 | + tc.RunTest(t, func(ctx context.Context) error { |
| 39 | + // install the rgd |
| 40 | + if err := tc.RunStep(ctx, "step0"); err != nil { |
| 41 | + return err |
| 42 | + } |
| 43 | +
|
| 44 | + // create an instance of the rgd |
| 45 | + if err := tc.RunStep(ctx, "step1"); err != nil { |
| 46 | + return err |
| 47 | + } |
| 48 | + // Wait for deployment to be created |
| 49 | + err = tc.WaitForResource(ctx, |
| 50 | + schema.GroupVersionKind{ |
| 51 | + Group: "apps", |
| 52 | + Version: "v1", |
| 53 | + Kind: "Deployment", |
| 54 | + }, |
| 55 | + "test-instance", |
| 56 | + tc.Namespace, |
| 57 | + func(obj *unstructured.Unstructured) bool { |
| 58 | + replicas, found, _ := unstructured.NestedInt64(obj.Object, "spec", "replicas") |
| 59 | + return found && replicas == 2 |
| 60 | + }, |
| 61 | + ) |
| 62 | + if err != nil { |
| 63 | + return err |
| 64 | + } |
| 65 | + // update the instance |
| 66 | + if err := tc.RunStep(ctx, "step2"); err != nil { |
| 67 | + return err |
| 68 | + } |
| 69 | +
|
| 70 | + // Wait for deployment to be created |
| 71 | + err = tc.WaitForResource(ctx, |
| 72 | + schema.GroupVersionKind{ |
| 73 | + Group: "apps", |
| 74 | + Version: "v1", |
| 75 | + Kind: "Deployment", |
| 76 | + }, |
| 77 | + "test-instance", |
| 78 | + tc.Namespace, |
| 79 | + func(obj *unstructured.Unstructured) bool { |
| 80 | + replicas, found, _ := unstructured.NestedInt64(obj.Object, "spec", "replicas") |
| 81 | + return found && replicas == 3 |
| 82 | + }, |
| 83 | + ) |
| 84 | + if err != nil { |
| 85 | + return err |
| 86 | + } |
| 87 | + return nil |
| 88 | + }) |
| 89 | + */ |
| 90 | +} |
0 commit comments