| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- /*
- 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.
- limitations under the License.
- */
- package azure
- import (
- // nolint
- . "github.com/onsi/ginkgo/v2"
- "github.com/external-secrets/external-secrets-e2e/framework"
- "github.com/external-secrets/external-secrets-e2e/suites/provider/cases/common"
- esapi "github.com/external-secrets/external-secrets/apis/externalsecrets/v1"
- )
- const (
- withStaticCredentials = "with static credentials"
- withReferentAuth = "with referent auth"
- )
- // keyvault type=secret should behave just like any other secret store.
- var _ = Describe("[azure]", Label("azure", "keyvault", "secret"), func() {
- f := framework.New("eso-azure")
- prov := newFromEnv(f)
- DescribeTable("sync secrets", framework.TableFuncWithExternalSecret(f, prov),
- framework.Compose(withStaticCredentials, f, common.SimpleDataSync, useStaticCredentials),
- framework.Compose(withStaticCredentials, f, common.NestedJSONWithGJSON, useStaticCredentials),
- framework.Compose(withStaticCredentials, f, common.JSONDataFromSync, useStaticCredentials),
- framework.Compose(withStaticCredentials, f, common.JSONDataFromRewrite, useStaticCredentials),
- framework.Compose(withStaticCredentials, f, common.JSONDataWithProperty, useStaticCredentials),
- framework.Compose(withStaticCredentials, f, common.JSONDataWithTemplate, useStaticCredentials),
- framework.Compose(withStaticCredentials, f, common.DockerJSONConfig, useStaticCredentials),
- framework.Compose(withStaticCredentials, f, common.DataPropertyDockerconfigJSON, useStaticCredentials),
- framework.Compose(withStaticCredentials, f, common.SSHKeySync, useStaticCredentials),
- framework.Compose(withStaticCredentials, f, common.SSHKeySyncDataProperty, useStaticCredentials),
- framework.Compose(withStaticCredentials, f, common.SyncWithoutTargetName, useStaticCredentials),
- framework.Compose(withStaticCredentials, f, common.JSONDataWithoutTargetName, useStaticCredentials),
- framework.Compose(withStaticCredentials, f, common.SimpleDataSync, useReferentAuth),
- )
- })
- func useStaticCredentials(tc *framework.TestCase) {
- tc.ExternalSecret.Spec.SecretStoreRef.Name = tc.Framework.Namespace.Name
- }
- func useReferentAuth(tc *framework.TestCase) {
- tc.ExternalSecret.Spec.SecretStoreRef.Name = referentAuthName(tc.Framework)
- tc.ExternalSecret.Spec.SecretStoreRef.Kind = esapi.ClusterSecretStoreKind
- }
|