| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- /*
- Copyright © 2025 ESO Maintainer Team
- 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
- https://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 common
- import (
- "fmt"
- v1 "k8s.io/api/core/v1"
- "github.com/external-secrets/external-secrets-e2e/framework"
- esapi "github.com/external-secrets/external-secrets/apis/externalsecrets/v1"
- )
- const (
- findValue = "{\"foo1\":\"foo1-val\"}"
- )
- // This case creates multiple secrets with simple key/value pairs and syncs them using multiple .Spec.Data blocks.
- func FindByName(f *framework.Framework) (string, func(*framework.TestCase)) {
- return "[common] should find secrets by name using .DataFrom[]", func(tc *framework.TestCase) {
- const namePrefix = "e2e_find_name_%s_%s"
- secretKeyOne := fmt.Sprintf(namePrefix, f.Namespace.Name, "one")
- secretKeyTwo := fmt.Sprintf(namePrefix, f.Namespace.Name, "two")
- secretKeyThree := fmt.Sprintf(namePrefix, f.Namespace.Name, "three")
- secretValue := findValue
- tc.Secrets = map[string]framework.SecretEntry{
- f.MakeRemoteRefKey(secretKeyOne): {Value: secretValue},
- f.MakeRemoteRefKey(secretKeyTwo): {Value: secretValue},
- f.MakeRemoteRefKey(secretKeyThree): {Value: secretValue},
- }
- tc.ExpectedSecret = &v1.Secret{
- Type: v1.SecretTypeOpaque,
- Data: map[string][]byte{
- secretKeyOne: []byte(secretValue),
- secretKeyTwo: []byte(secretValue),
- secretKeyThree: []byte(secretValue),
- },
- }
- tc.ExternalSecret.Spec.DataFrom = []esapi.ExternalSecretDataFromRemoteRef{
- {
- Find: &esapi.ExternalSecretFind{
- Name: &esapi.FindName{
- RegExp: fmt.Sprintf("e2e_find_name_%s.+", f.Namespace.Name),
- },
- },
- },
- }
- }
- }
- // This case creates multiple secrets with simple key/value pairs and syncs them using multiple .Spec.Data blocks.
- func FindByNameAndRewrite(f *framework.Framework) (string, func(*framework.TestCase)) {
- return "[common] should find and rewrite secrets by name using .DataFrom[]", func(tc *framework.TestCase) {
- const namePrefix = "e2e_find_and_rewrite_%s_%s"
- secretKeyOne := fmt.Sprintf(namePrefix, f.Namespace.Name, "one")
- secretKeyTwo := fmt.Sprintf(namePrefix, f.Namespace.Name, "two")
- secretKeyThree := fmt.Sprintf(namePrefix, f.Namespace.Name, "three")
- expectedKeyOne := fmt.Sprintf("%s_%s", f.Namespace.Name, "one")
- expectedKeyTwo := fmt.Sprintf("%s_%s", f.Namespace.Name, "two")
- expectedKeyThree := fmt.Sprintf("%s_%s", f.Namespace.Name, "three")
- secretValue := findValue
- tc.Secrets = map[string]framework.SecretEntry{
- f.MakeRemoteRefKey(secretKeyOne): {Value: secretValue},
- f.MakeRemoteRefKey(secretKeyTwo): {Value: secretValue},
- f.MakeRemoteRefKey(secretKeyThree): {Value: secretValue},
- }
- tc.ExpectedSecret = &v1.Secret{
- Type: v1.SecretTypeOpaque,
- Data: map[string][]byte{
- expectedKeyOne: []byte(secretValue),
- expectedKeyTwo: []byte(secretValue),
- expectedKeyThree: []byte(secretValue),
- },
- }
- tc.ExternalSecret.Spec.DataFrom = []esapi.ExternalSecretDataFromRemoteRef{
- {
- Find: &esapi.ExternalSecretFind{
- Name: &esapi.FindName{
- RegExp: fmt.Sprintf("e2e_find_and_rewrite_%s.+", f.Namespace.Name),
- },
- },
- Rewrite: []esapi.ExternalSecretRewrite{
- {
- Regexp: &esapi.ExternalSecretRewriteRegexp{
- Source: "e2e_find_and_rewrite_(.*)",
- Target: "$1",
- },
- },
- },
- },
- }
- }
- }
- func FindByNameWithPath(f *framework.Framework) (string, func(*framework.TestCase)) {
- return "[common] should find secrets by name with path", func(tc *framework.TestCase) {
- secretKeyOne := fmt.Sprintf("e2e-find-name-%s-one", f.Namespace.Name)
- secretKeyTwo := fmt.Sprintf("%s-two", f.Namespace.Name)
- secretKeythree := fmt.Sprintf("%s-three", f.Namespace.Name)
- secretValue := findValue
- tc.Secrets = map[string]framework.SecretEntry{
- secretKeyOne: {Value: secretValue},
- secretKeyTwo: {Value: secretValue},
- secretKeythree: {Value: secretValue},
- }
- tc.ExpectedSecret = &v1.Secret{
- Type: v1.SecretTypeOpaque,
- Data: map[string][]byte{
- fmt.Sprintf("%s-two", f.Namespace.Name): []byte(secretValue),
- fmt.Sprintf("%s-three", f.Namespace.Name): []byte(secretValue),
- },
- }
- tc.ExternalSecret.Spec.DataFrom = []esapi.ExternalSecretDataFromRemoteRef{
- {
- Find: &esapi.ExternalSecretFind{
- Path: &f.Namespace.Name,
- Name: &esapi.FindName{
- RegExp: ".+",
- },
- },
- },
- }
- }
- }
|