| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- /*
- 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 conjur
- import (
- "errors"
- "testing"
- esv1 "github.com/external-secrets/external-secrets/apis/externalsecrets/v1"
- )
- type ValidateStoreTestCase struct {
- store *esv1.SecretStore
- err error
- }
- func TestValidateStore(t *testing.T) {
- testCases := []ValidateStoreTestCase{
- {
- store: makeAPIKeySecretStore(svcURL, svcUser, svcApikey, svcAccount),
- err: nil,
- },
- {
- store: makeAPIKeySecretStore("", svcUser, svcApikey, svcAccount),
- err: errors.New("conjur URL cannot be empty"),
- },
- {
- store: makeAPIKeySecretStore(svcURL, "", svcApikey, svcAccount),
- err: errors.New("missing Auth.Apikey.UserRef"),
- },
- {
- store: makeAPIKeySecretStore(svcURL, svcUser, "", svcAccount),
- err: errors.New("missing Auth.Apikey.ApiKeyRef"),
- },
- {
- store: makeAPIKeySecretStore(svcURL, svcUser, svcApikey, ""),
- err: errors.New("missing Auth.ApiKey.Account"),
- },
- {
- store: makeJWTSecretStore(svcURL, "conjur", "", jwtAuthnService, "", "myconjuraccount"),
- err: nil,
- },
- {
- store: makeJWTSecretStore(svcURL, "", jwtSecretName, jwtAuthnService, "", "myconjuraccount"),
- err: nil,
- },
- {
- store: makeJWTSecretStore(svcURL, "conjur", "", jwtAuthnService, "", ""),
- err: errors.New("missing Auth.Jwt.Account"),
- },
- {
- store: makeJWTSecretStore(svcURL, "conjur", "", "", "", "myconjuraccount"),
- err: errors.New("missing Auth.Jwt.ServiceID"),
- },
- {
- store: makeJWTSecretStore("", "conjur", "", jwtAuthnService, "", "myconjuraccount"),
- err: errors.New("conjur URL cannot be empty"),
- },
- {
- store: makeJWTSecretStore(svcURL, "", "", jwtAuthnService, "", "myconjuraccount"),
- err: errors.New("must specify Auth.Jwt.SecretRef or Auth.Jwt.ServiceAccountRef"),
- },
- {
- store: makeCertSecretStore(svcURL, certServiceID, "", svcAccount),
- err: nil,
- },
- {
- store: makeCertSecretStore(svcURL, certServiceID, "myhostid", svcAccount),
- err: nil,
- },
- {
- store: makeCertSecretStore("", certServiceID, "", svcAccount),
- err: errors.New("conjur URL cannot be empty"),
- },
- {
- store: makeCertSecretStore(svcURL, "", "", svcAccount),
- err: errors.New("missing Auth.Cert.ServiceID"),
- },
- {
- store: makeCertSecretStore(svcURL, certServiceID, "", ""),
- err: errors.New("missing Auth.Cert.Account"),
- },
- {
- store: makeCertSecretStoreWithMissingRefs(svcURL, certServiceID, svcAccount, true, false),
- err: errors.New("missing Auth.Cert.ClientKeyRef"),
- },
- {
- store: makeCertSecretStoreWithMissingRefs(svcURL, certServiceID, svcAccount, false, true),
- err: errors.New("missing Auth.Cert.ClientCertRef"),
- },
- {
- store: makeCertSecretStoreWithEmptyRefNames(svcURL, certServiceID, svcAccount, true, false),
- err: errors.New("missing Auth.Cert.ClientCertRef.Name"),
- },
- {
- store: makeCertSecretStoreWithEmptyRefNames(svcURL, certServiceID, svcAccount, false, true),
- err: errors.New("missing Auth.Cert.ClientKeyRef.Name"),
- },
- {
- store: &esv1.SecretStore{
- Spec: esv1.SecretStoreSpec{
- Provider: &esv1.SecretStoreProvider{
- Conjur: &esv1.ConjurProvider{
- URL: svcURL,
- Auth: esv1.ConjurAuth{},
- },
- },
- },
- },
- err: errors.New("must specify exactly one Auth.* method"),
- },
- {
- store: makeMultiAuthSecretStore(svcURL),
- err: errors.New("must specify exactly one Auth.* method"),
- },
- }
- p := Provider{}
- for _, tc := range testCases {
- _, 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)
- }
- }
- }
|