| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515 |
- /*
- Copyright © The ESO 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
- 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 doppler
- import (
- "context"
- "errors"
- "strings"
- "testing"
- "github.com/google/go-cmp/cmp"
- corev1 "k8s.io/api/core/v1"
- esv1 "github.com/external-secrets/external-secrets/apis/externalsecrets/v1"
- esv1alpha1 "github.com/external-secrets/external-secrets/apis/externalsecrets/v1alpha1"
- v1 "github.com/external-secrets/external-secrets/apis/meta/v1"
- "github.com/external-secrets/external-secrets/providers/v1/doppler/client"
- "github.com/external-secrets/external-secrets/providers/v1/doppler/fake"
- )
- const (
- validSecretName = "API_KEY"
- validSecretValue = "3a3ea4f5"
- validRemoteKey = "REMOTE_KEY"
- dopplerProject = "DOPPLER_PROJECT"
- dopplerProjectVal = "auth-api"
- missingSecret = "INVALID_NAME"
- invalidSecret = "doppler_project"
- invalidRemoteKey = "INVALID_REMOTE_KEY"
- missingSecretErr = "could not get secret"
- missingDeleteErr = "could not delete secrets"
- missingPushErr = "could not push secrets"
- )
- type dopplerTestCase struct {
- label string
- fakeClient *fake.DopplerClient
- request client.SecretRequest
- response *client.SecretResponse
- remoteRef *esv1.ExternalSecretDataRemoteRef
- apiErr error
- expectError string
- expectedSecret string
- expectedData map[string][]byte
- }
- type updateSecretCase struct {
- label string
- fakeClient *fake.DopplerClient
- request client.UpdateSecretsRequest
- remoteRef *esv1alpha1.PushSecretRemoteRef
- secret corev1.Secret
- secretData esv1.PushSecretData
- apiErr error
- expectError string
- }
- func makeValidAPIRequest() client.SecretRequest {
- return client.SecretRequest{
- Name: validSecretName,
- }
- }
- func makeValidPushRequest() client.UpdateSecretsRequest {
- return client.UpdateSecretsRequest{
- Secrets: client.Secrets{
- validRemoteKey: validSecretValue,
- },
- }
- }
- func makeValidDeleteRequest() client.UpdateSecretsRequest {
- return client.UpdateSecretsRequest{
- ChangeRequests: []client.Change{
- {
- Name: validRemoteKey,
- OriginalName: validRemoteKey,
- ShouldDelete: true,
- },
- },
- }
- }
- func makeValidAPIOutput() *client.SecretResponse {
- return &client.SecretResponse{
- Name: validSecretName,
- Value: validSecretValue,
- }
- }
- func makeValidRemoteRef() *esv1.ExternalSecretDataRemoteRef {
- return &esv1.ExternalSecretDataRemoteRef{
- Key: validSecretName,
- }
- }
- func makeValidPushRemoteRef() *esv1alpha1.PushSecretRemoteRef {
- return &esv1alpha1.PushSecretRemoteRef{
- RemoteKey: validRemoteKey,
- }
- }
- func makeValidSecret() corev1.Secret {
- return corev1.Secret{
- Data: map[string][]byte{
- validSecretName: []byte(validSecretValue),
- },
- }
- }
- func makeValidSecretData() esv1alpha1.PushSecretData {
- return makeSecretData(validSecretName, *makeValidPushRemoteRef())
- }
- func makeSecretData(key string, ref esv1alpha1.PushSecretRemoteRef) esv1alpha1.PushSecretData {
- return esv1alpha1.PushSecretData{
- Match: esv1alpha1.PushSecretMatch{
- SecretKey: key,
- RemoteRef: ref,
- },
- }
- }
- func makeValidDopplerTestCase() *dopplerTestCase {
- return &dopplerTestCase{
- fakeClient: &fake.DopplerClient{},
- request: makeValidAPIRequest(),
- response: makeValidAPIOutput(),
- remoteRef: makeValidRemoteRef(),
- apiErr: nil,
- expectError: "",
- expectedSecret: "",
- expectedData: make(map[string][]byte),
- }
- }
- func makeValidUpdateSecretTestCase() *updateSecretCase {
- return &updateSecretCase{
- fakeClient: &fake.DopplerClient{},
- remoteRef: makeValidPushRemoteRef(),
- secret: makeValidSecret(),
- secretData: makeValidSecretData(),
- apiErr: nil,
- expectError: "",
- }
- }
- func makeValidDopplerTestCaseCustom(tweaks ...func(pstc *dopplerTestCase)) *dopplerTestCase {
- pstc := makeValidDopplerTestCase()
- for _, fn := range tweaks {
- fn(pstc)
- }
- pstc.fakeClient.WithSecretFunc(func(req client.SecretRequest) (*client.SecretResponse, error) {
- if pstc.apiErr != nil {
- return nil, pstc.apiErr
- }
- if pstc.response == nil {
- return nil, &client.APIError{Message: "secret not found"}
- }
- return &client.SecretResponse{
- Name: pstc.response.Name,
- Value: pstc.response.Value,
- Modified: true,
- }, nil
- })
- return pstc
- }
- func makeValidUpdateSecretCaseCustom(tweaks ...func(pstc *updateSecretCase)) *updateSecretCase {
- pstc := makeValidUpdateSecretTestCase()
- for _, fn := range tweaks {
- fn(pstc)
- }
- pstc.fakeClient.WithUpdateValue(pstc.request, pstc.apiErr)
- return pstc
- }
- func TestGetSecret(t *testing.T) {
- setSecret := func(pstc *dopplerTestCase) {
- pstc.label = "set secret"
- pstc.request.Name = dopplerProject
- pstc.response.Name = dopplerProject
- pstc.response.Value = dopplerProjectVal
- pstc.expectedSecret = dopplerProjectVal
- pstc.remoteRef.Key = dopplerProject
- }
- setMissingSecret := func(pstc *dopplerTestCase) {
- pstc.label = "invalid missing secret"
- pstc.remoteRef.Key = missingSecret
- pstc.request.Name = missingSecret
- pstc.response = nil
- pstc.expectError = missingSecretErr
- pstc.apiErr = errors.New("")
- }
- setInvalidSecret := func(pstc *dopplerTestCase) {
- pstc.label = "invalid secret name format"
- pstc.remoteRef.Key = invalidSecret
- pstc.request.Name = invalidSecret
- pstc.response = nil
- pstc.expectError = missingSecretErr
- pstc.apiErr = errors.New("")
- }
- setClientError := func(pstc *dopplerTestCase) {
- pstc.label = "invalid client error" //nolint:goconst
- pstc.response = &client.SecretResponse{}
- pstc.expectError = missingSecretErr
- pstc.apiErr = errors.New("")
- }
- testCases := []*dopplerTestCase{
- makeValidDopplerTestCaseCustom(setSecret),
- makeValidDopplerTestCaseCustom(setMissingSecret),
- makeValidDopplerTestCaseCustom(setInvalidSecret),
- makeValidDopplerTestCaseCustom(setClientError),
- }
- c := Client{}
- for k, tc := range testCases {
- c.doppler = tc.fakeClient
- out, err := c.GetSecret(context.Background(), *tc.remoteRef)
- if !ErrorContains(err, tc.expectError) {
- t.Errorf("[%d] unexpected error: %s, expected: '%s'", k, err.Error(), tc.expectError)
- }
- if err == nil && !cmp.Equal(string(out), tc.expectedSecret) {
- t.Errorf("[%d] unexpected secret data: expected %#v, got %#v", k, tc.expectedSecret, string(out))
- }
- }
- }
- func TestGetSecretMap(t *testing.T) {
- simpleJSON := func(pstc *dopplerTestCase) {
- pstc.label = "valid unmarshalling"
- pstc.response.Value = `{"API_KEY":"3a3ea4f5"}`
- pstc.expectedData["API_KEY"] = []byte("3a3ea4f5")
- }
- complexJSON := func(pstc *dopplerTestCase) {
- pstc.label = "valid unmarshalling for nested json"
- pstc.response.Value = `{"API_KEY": "3a3ea4f5", "AUTH_SA": {"appID": "a1ea-48bd-8749-b6f5ec3c5a1f"}}`
- pstc.expectedData["API_KEY"] = []byte("3a3ea4f5")
- pstc.expectedData["AUTH_SA"] = []byte(`{"appID": "a1ea-48bd-8749-b6f5ec3c5a1f"}`)
- }
- setInvalidJSON := func(pstc *dopplerTestCase) {
- pstc.label = "invalid json"
- pstc.response.Value = `{"API_KEY": "3a3ea4f`
- pstc.expectError = "unable to unmarshal secret"
- }
- setAPIError := func(pstc *dopplerTestCase) {
- pstc.label = "client error"
- pstc.response = &client.SecretResponse{}
- pstc.expectError = missingSecretErr
- pstc.apiErr = errors.New("")
- }
- testCases := []*dopplerTestCase{
- makeValidDopplerTestCaseCustom(simpleJSON),
- makeValidDopplerTestCaseCustom(complexJSON),
- makeValidDopplerTestCaseCustom(setInvalidJSON),
- makeValidDopplerTestCaseCustom(setAPIError),
- }
- d := Client{}
- for k, tc := range testCases {
- t.Run(tc.label, func(t *testing.T) {
- d.doppler = tc.fakeClient
- out, err := d.GetSecretMap(context.Background(), *tc.remoteRef)
- if !ErrorContains(err, tc.expectError) {
- t.Errorf("[%d] unexpected error: %q, expected: %q", k, err.Error(), tc.expectError)
- }
- if err == nil && !cmp.Equal(out, tc.expectedData) {
- t.Errorf("[%d] unexpected secret data: expected %#v, got %#v", k, tc.expectedData, out)
- }
- })
- }
- }
- func ErrorContains(out error, want string) bool {
- if out == nil {
- return want == ""
- }
- if want == "" {
- return false
- }
- return strings.Contains(out.Error(), want)
- }
- func TestDeleteSecret(t *testing.T) {
- deleteSecret := func(pstc *updateSecretCase) {
- pstc.label = "delete secret"
- pstc.request = makeValidDeleteRequest()
- }
- deleteMissingSecret := func(pstc *updateSecretCase) {
- pstc.label = "delete missing secret"
- pstc.request = makeValidDeleteRequest()
- pstc.remoteRef.RemoteKey = invalidRemoteKey
- pstc.expectError = missingDeleteErr
- pstc.apiErr = errors.New("")
- }
- setClientError := func(pstc *updateSecretCase) {
- pstc.label = "invalid client error"
- pstc.request = makeValidDeleteRequest()
- pstc.expectError = missingDeleteErr
- pstc.apiErr = errors.New("")
- }
- testCases := []*updateSecretCase{
- makeValidUpdateSecretCaseCustom(deleteSecret),
- makeValidUpdateSecretCaseCustom(deleteMissingSecret),
- makeValidUpdateSecretCaseCustom(setClientError),
- }
- c := Client{}
- for k, tc := range testCases {
- c.doppler = tc.fakeClient
- err := c.DeleteSecret(context.Background(), tc.remoteRef)
- if !ErrorContains(err, tc.expectError) {
- t.Errorf("[%d] unexpected error: %s, expected: '%s'", k, err.Error(), tc.expectError)
- }
- }
- }
- func TestPushSecret(t *testing.T) {
- pushSecret := func(pstc *updateSecretCase) {
- pstc.label = "push secret"
- pstc.request = makeValidPushRequest()
- }
- pushMissingSecretKey := func(pstc *updateSecretCase) {
- pstc.label = "push missing secret key"
- pstc.secretData = makeSecretData(invalidSecret, *makeValidPushRemoteRef())
- pstc.expectError = missingPushErr
- pstc.apiErr = errors.New("")
- }
- pushMissingRemoteSecret := func(pstc *updateSecretCase) {
- pstc.label = "push missing remote secret"
- pstc.secretData = makeSecretData(
- validSecretName,
- esv1alpha1.PushSecretRemoteRef{
- RemoteKey: invalidRemoteKey,
- },
- )
- pstc.expectError = missingPushErr
- pstc.apiErr = errors.New("")
- }
- setClientError := func(pstc *updateSecretCase) {
- pstc.label = "invalid client error"
- pstc.expectError = missingPushErr
- pstc.apiErr = errors.New("")
- }
- testCases := []*updateSecretCase{
- makeValidUpdateSecretCaseCustom(pushSecret),
- makeValidUpdateSecretCaseCustom(pushMissingSecretKey),
- makeValidUpdateSecretCaseCustom(pushMissingRemoteSecret),
- makeValidUpdateSecretCaseCustom(setClientError),
- }
- c := Client{}
- for k, tc := range testCases {
- c.doppler = tc.fakeClient
- err := c.PushSecret(context.Background(), &tc.secret, tc.secretData)
- if !ErrorContains(err, tc.expectError) {
- t.Errorf("[%d] unexpected error: %s, expected: '%s'", k, err.Error(), tc.expectError)
- }
- }
- }
- type storeModifier func(*esv1.SecretStore) *esv1.SecretStore
- func makeSecretStore(fn ...storeModifier) *esv1.SecretStore {
- store := &esv1.SecretStore{
- Spec: esv1.SecretStoreSpec{
- Provider: &esv1.SecretStoreProvider{
- Doppler: &esv1.DopplerProvider{
- Auth: &esv1.DopplerAuth{},
- },
- },
- },
- }
- for _, f := range fn {
- store = f(store)
- }
- return store
- }
- func withAuth(name, key string, namespace *string) storeModifier {
- return func(store *esv1.SecretStore) *esv1.SecretStore {
- store.Spec.Provider.Doppler.Auth.SecretRef = &esv1.DopplerAuthSecretRef{
- DopplerToken: v1.SecretKeySelector{
- Name: name,
- Key: key,
- Namespace: namespace,
- },
- }
- return store
- }
- }
- func withOIDCAuth(identityID, saName string, saNamespace *string) storeModifier {
- return func(store *esv1.SecretStore) *esv1.SecretStore {
- store.Spec.Provider.Doppler.Auth.SecretRef = nil
- store.Spec.Provider.Doppler.Auth.OIDCConfig = &esv1.DopplerOIDCAuth{
- Identity: identityID,
- ServiceAccountRef: v1.ServiceAccountSelector{
- Name: saName,
- Namespace: saNamespace,
- },
- }
- return store
- }
- }
- type ValidateStoreTestCase struct {
- label string
- store *esv1.SecretStore
- err error
- }
- func TestValidateStore(t *testing.T) {
- namespace := "ns"
- secretName := "doppler-token-secret"
- testCases := []ValidateStoreTestCase{
- {
- label: "invalid store missing dopplerToken.name",
- store: makeSecretStore(withAuth("", "", nil)),
- err: errors.New("invalid store: dopplerToken.name cannot be empty"),
- },
- {
- label: "invalid store namespace not allowed",
- store: makeSecretStore(withAuth(secretName, "", &namespace)),
- err: errors.New("invalid store: namespace should either be empty or match the namespace of the SecretStore for a namespaced SecretStore"),
- },
- {
- label: "valid provide optional dopplerToken.key",
- store: makeSecretStore(withAuth(secretName, "customSecretKey", nil)),
- err: nil,
- },
- {
- label: "valid namespace not set",
- store: makeSecretStore(withAuth(secretName, "", nil)),
- err: nil,
- },
- {
- label: "invalid store missing both auth methods",
- store: &esv1.SecretStore{
- Spec: esv1.SecretStoreSpec{
- Provider: &esv1.SecretStoreProvider{
- Doppler: &esv1.DopplerProvider{
- Auth: &esv1.DopplerAuth{},
- },
- },
- },
- },
- err: errors.New("invalid store: either auth.secretRef or auth.oidcConfig must be specified"),
- },
- {
- label: "invalid OIDC missing identityId",
- store: makeSecretStore(withOIDCAuth("", "sa-name", nil)),
- err: errors.New("invalid store: oidcConfig.identity cannot be empty"),
- },
- {
- label: "invalid OIDC missing serviceAccountRef.name",
- store: makeSecretStore(withOIDCAuth("identity-123", "", nil)),
- err: errors.New("invalid store: oidcConfig.serviceAccountRef.name cannot be empty"),
- },
- {
- label: "valid OIDC auth",
- store: makeSecretStore(withOIDCAuth("identity-123", "sa-name", nil)),
- err: nil,
- },
- {
- label: "invalid OIDC namespace not allowed",
- store: makeSecretStore(withOIDCAuth("identity-123", "sa-name", &namespace)),
- err: errors.New("invalid store: namespace should either be empty or match the namespace of the SecretStore for a namespaced SecretStore"),
- },
- }
- p := Provider{}
- for _, tc := range testCases {
- t.Run(tc.label, func(t *testing.T) {
- _, err := p.ValidateStore(tc.store)
- if tc.err != nil && err != nil && err.Error() != tc.err.Error() {
- t.Errorf("test failed! want %v, got %v", tc.err, err)
- } else if tc.err == nil && err != nil {
- t.Errorf("want nil got err %v", err)
- } else if tc.err != nil && err == nil {
- t.Errorf("want err %v got nil", tc.err)
- }
- })
- }
- }
|