| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159 |
- /*
- 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 ovh
- import (
- "context"
- "errors"
- "fmt"
- "testing"
- v1 "k8s.io/api/core/v1"
- "github.com/external-secrets/external-secrets/providers/v1/ovh/fake"
- testingfake "github.com/external-secrets/external-secrets/runtime/testing/fake"
- )
- func TestPushSecret(t *testing.T) {
- const (
- mySecretRemoteKey = "mysecret"
- nonExistentSecretRemoteKey = "non-existent-secret"
- emptySecretRemoteKey = "empty-secret"
- nilSecretRemoteKey = "nil-secret"
- )
- secretData := &v1.Secret{
- Data: map[string][]byte{
- "key1": []byte("value1"),
- "key2": []byte("value2"),
- },
- }
- emptyRemoteKey := ""
- testCases := map[string]struct {
- errshould string
- secret *v1.Secret
- data testingfake.PushSecretData
- okmsClient fake.FakeOkmsClient
- }{
- "Nil Secret": {
- errshould: fmt.Sprintf("failed to push secret at path %q: provided secret is nil", nilSecretRemoteKey),
- secret: nil,
- data: testingfake.PushSecretData{
- RemoteKey: nilSecretRemoteKey,
- },
- },
- "Empty Secret Data": {
- errshould: fmt.Sprintf("failed to push secret at path %q: provided secret is empty", emptySecretRemoteKey),
- secret: &v1.Secret{
- Data: nil,
- },
- data: testingfake.PushSecretData{
- RemoteKey: emptySecretRemoteKey,
- },
- },
- "Empty Remote Key": {
- errshould: fmt.Sprintf("failed to push secret at path %q: remote key cannot be empty (spec.data.remoteRef.key)", emptyRemoteKey),
- secret: secretData,
- data: testingfake.PushSecretData{
- RemoteKey: emptyRemoteKey,
- },
- },
- "Non-Existent Remote Key": {
- errshould: "",
- secret: secretData,
- data: testingfake.PushSecretData{
- RemoteKey: nonExistentSecretRemoteKey,
- },
- },
- "Existing Remote Key": {
- errshould: "",
- secret: secretData,
- data: testingfake.PushSecretData{
- RemoteKey: mySecretRemoteKey,
- },
- },
- "Secret Key": {
- errshould: "",
- secret: secretData,
- data: testingfake.PushSecretData{
- RemoteKey: mySecretRemoteKey,
- SecretKey: "key1",
- },
- },
- "Property": {
- errshould: "",
- secret: secretData,
- data: testingfake.PushSecretData{
- RemoteKey: mySecretRemoteKey,
- Property: "property",
- },
- },
- "Custom PostSecretV2 Error": {
- errshould: fmt.Sprintf("failed to push secret at path %q: could not create remote secret: custom error", mySecretRemoteKey),
- secret: secretData,
- data: testingfake.PushSecretData{
- RemoteKey: mySecretRemoteKey,
- },
- okmsClient: fake.FakeOkmsClient{
- // A non-existent secret is referenced to trigger Post instead of Put
- GetSecretV2Fn: fake.NewGetSecretV2Fn(nonExistentSecretRemoteKey, nil),
- PostSecretV2Fn: fake.NewPostSecretV2Fn(errors.New("custom error")),
- },
- },
- "Custom PutSecretV2 Error": {
- errshould: fmt.Sprintf("failed to push secret at path %q: could not update remote secret: custom error", mySecretRemoteKey),
- secret: secretData,
- data: testingfake.PushSecretData{
- RemoteKey: mySecretRemoteKey,
- },
- okmsClient: fake.FakeOkmsClient{
- // An existing secret is referenced to trigger Put instead of Post
- GetSecretV2Fn: fake.NewGetSecretV2Fn("nested-secret", nil),
- PutSecretV2Fn: fake.NewPutSecretV2Fn(errors.New("custom error")),
- },
- },
- "Custom GetSecretV2 Error": {
- errshould: fmt.Sprintf("failed to push secret at path %q: failed to parse the following okms error: custom error", mySecretRemoteKey),
- secret: secretData,
- data: testingfake.PushSecretData{
- RemoteKey: mySecretRemoteKey,
- },
- okmsClient: fake.FakeOkmsClient{
- GetSecretV2Fn: fake.NewGetSecretV2Fn("", errors.New("custom error")),
- },
- },
- }
- ctx := context.Background()
- for name, testCase := range testCases {
- t.Run(name, func(t *testing.T) {
- cl := ovhClient{
- okmsClient: testCase.okmsClient,
- }
- err := cl.PushSecret(ctx, testCase.secret, testCase.data)
- if testCase.errshould != "" {
- if err == nil {
- t.Errorf("\nexpected error: %s\nactual error: <nil>\n\n", testCase.errshould)
- } else if err.Error() != testCase.errshould {
- t.Errorf("\nexpected error: %s\nactual error: %v\n\n", testCase.errshould, err)
- }
- } else if err != nil {
- t.Errorf("\nunexpected error: %v\n\n", err)
- }
- })
- }
- }
|