| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375 |
- /*
- 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.
- See the License for the specific language governing permissions and
- limitations under the License.
- */
- package kubernetes
- import (
- "context"
- "errors"
- "reflect"
- "strings"
- "testing"
- "github.com/google/go-cmp/cmp"
- "github.com/stretchr/testify/assert"
- v1 "k8s.io/api/core/v1"
- apiextensionsv1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1"
- apierrors "k8s.io/apimachinery/pkg/api/errors"
- metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
- "k8s.io/apimachinery/pkg/runtime/schema"
- "github.com/external-secrets/external-secrets/apis/externalsecrets/v1alpha1"
- esv1beta1 "github.com/external-secrets/external-secrets/apis/externalsecrets/v1beta1"
- testingfake "github.com/external-secrets/external-secrets/pkg/provider/testing/fake"
- )
- const (
- errSomethingWentWrong = "Something went wrong"
- )
- type fakeClient struct {
- t *testing.T
- secretMap map[string]*v1.Secret
- expectedListOptions metav1.ListOptions
- err error
- }
- func (fk *fakeClient) Get(_ context.Context, name string, _ metav1.GetOptions) (*v1.Secret, error) {
- if fk.err != nil {
- return nil, fk.err
- }
- secret, ok := fk.secretMap[name]
- if !ok {
- return nil, apierrors.NewNotFound(schema.GroupResource{Group: "", Resource: "Secret"}, "secret")
- }
- // return inmutable to simulate external system and avoid accidental side effects
- sCopy := secret.DeepCopy()
- // update operation requires to relate names
- sCopy.Name = name
- return sCopy, nil
- }
- func (fk *fakeClient) List(_ context.Context, opts metav1.ListOptions) (*v1.SecretList, error) {
- assert.Equal(fk.t, fk.expectedListOptions, opts)
- list := &v1.SecretList{}
- for _, v := range fk.secretMap {
- list.Items = append(list.Items, *v)
- }
- return list, nil
- }
- func (fk *fakeClient) Delete(_ context.Context, name string, _ metav1.DeleteOptions) error {
- if fk.err != nil {
- return fk.err
- }
- _, ok := fk.secretMap[name]
- if !ok {
- return apierrors.NewNotFound(schema.GroupResource{Group: "", Resource: "Secret"}, "secret")
- }
- delete(fk.secretMap, name)
- return nil
- }
- func (fk *fakeClient) Create(_ context.Context, secret *v1.Secret, _ metav1.CreateOptions) (*v1.Secret, error) {
- s := &v1.Secret{
- Data: secret.Data,
- ObjectMeta: secret.ObjectMeta,
- Type: secret.Type,
- }
- fk.secretMap[secret.Name] = s
- return s, nil
- }
- func (fk *fakeClient) Update(_ context.Context, secret *v1.Secret, _ metav1.UpdateOptions) (*v1.Secret, error) {
- s, ok := fk.secretMap[secret.Name]
- if !ok {
- return nil, errors.New("error while updating secret")
- }
- s.ObjectMeta = secret.ObjectMeta
- s.Data = secret.Data
- return s, nil
- }
- var binaryTestData = []byte{0x00, 0xff, 0x00, 0xff, 0xac, 0xab, 0x28, 0x21}
- func TestGetSecret(t *testing.T) {
- tests := []struct {
- desc string
- secrets map[string]*v1.Secret
- clientErr error
- ref esv1beta1.ExternalSecretDataRemoteRef
- want []byte
- wantErr string
- }{
- {
- desc: "secret data with correct property",
- secrets: map[string]*v1.Secret{
- "mysec": {
- Data: map[string][]byte{
- "token": []byte(`foobar`),
- },
- },
- },
- ref: esv1beta1.ExternalSecretDataRemoteRef{
- Key: "mysec",
- Property: "token",
- },
- want: []byte(`foobar`),
- },
- {
- desc: "secret data with multi level property",
- secrets: map[string]*v1.Secret{
- "mysec": {
- Data: map[string][]byte{
- "foo": []byte(`{"huga":{"bar":"val"}}`),
- },
- },
- },
- ref: esv1beta1.ExternalSecretDataRemoteRef{
- Key: "mysec",
- Property: "foo.huga.bar",
- },
- want: []byte(`val`),
- },
- {
- desc: "secret data with property containing .",
- secrets: map[string]*v1.Secret{
- "mysec": {
- Data: map[string][]byte{
- "foo.png": []byte(`correct`),
- "foo": []byte(`{"png":"wrong"}`),
- },
- },
- },
- ref: esv1beta1.ExternalSecretDataRemoteRef{
- Key: "mysec",
- Property: "foo.png",
- },
- want: []byte(`correct`),
- },
- {
- desc: "secret data contains html characters",
- secrets: map[string]*v1.Secret{
- "mysec": {
- Data: map[string][]byte{
- "html": []byte(`<foobar>`),
- },
- },
- },
- ref: esv1beta1.ExternalSecretDataRemoteRef{
- Key: "mysec",
- },
- want: []byte(`{"html":"<foobar>"}`),
- },
- {
- desc: "secret metadata contains html characters",
- secrets: map[string]*v1.Secret{
- "mysec": {
- ObjectMeta: metav1.ObjectMeta{
- Annotations: map[string]string{"date": "today"},
- Labels: map[string]string{"dev": "<seb>"},
- },
- },
- },
- ref: esv1beta1.ExternalSecretDataRemoteRef{
- MetadataPolicy: esv1beta1.ExternalSecretMetadataPolicyFetch,
- Key: "mysec",
- },
- want: []byte(`{"annotations":{"date":"today"},"labels":{"dev":"<seb>"}}`),
- },
- {
- desc: "secret data contains binary",
- secrets: map[string]*v1.Secret{
- "mysec": {
- Data: map[string][]byte{
- "bindata": binaryTestData,
- },
- },
- },
- ref: esv1beta1.ExternalSecretDataRemoteRef{
- Key: "mysec",
- Property: "bindata",
- },
- want: binaryTestData,
- },
- {
- desc: "secret data without property",
- secrets: map[string]*v1.Secret{
- "mysec": {
- Data: map[string][]byte{
- "token": []byte(`foobar`),
- },
- },
- },
- ref: esv1beta1.ExternalSecretDataRemoteRef{
- Key: "mysec",
- },
- want: []byte(`{"token":"foobar"}`),
- },
- {
- desc: "secret metadata without property",
- secrets: map[string]*v1.Secret{
- "mysec": {
- ObjectMeta: metav1.ObjectMeta{
- Annotations: map[string]string{"date": "today"},
- Labels: map[string]string{"dev": "seb"},
- },
- },
- },
- ref: esv1beta1.ExternalSecretDataRemoteRef{
- MetadataPolicy: esv1beta1.ExternalSecretMetadataPolicyFetch,
- Key: "mysec",
- },
- want: []byte(`{"annotations":{"date":"today"},"labels":{"dev":"seb"}}`),
- },
- {
- desc: "secret metadata with single level property",
- secrets: map[string]*v1.Secret{
- "mysec": {
- ObjectMeta: metav1.ObjectMeta{
- Annotations: map[string]string{"date": "today"},
- Labels: map[string]string{"dev": "seb"},
- },
- },
- },
- ref: esv1beta1.ExternalSecretDataRemoteRef{
- MetadataPolicy: esv1beta1.ExternalSecretMetadataPolicyFetch,
- Key: "mysec",
- Property: "labels",
- },
- want: []byte(`{"dev":"seb"}`),
- },
- {
- desc: "secret metadata with multiple level property",
- secrets: map[string]*v1.Secret{
- "mysec": {
- ObjectMeta: metav1.ObjectMeta{
- Annotations: map[string]string{"date": "today"},
- Labels: map[string]string{"dev": "seb"},
- },
- },
- },
- ref: esv1beta1.ExternalSecretDataRemoteRef{
- MetadataPolicy: esv1beta1.ExternalSecretMetadataPolicyFetch,
- Key: "mysec",
- Property: "labels.dev",
- },
- want: []byte(`seb`),
- },
- {
- desc: "secret is not found",
- clientErr: apierrors.NewNotFound(schema.GroupResource{Group: "", Resource: "Secret"}, "secret"),
- ref: esv1beta1.ExternalSecretDataRemoteRef{
- Key: "mysec",
- Property: "token",
- },
- wantErr: `Secret "secret" not found`,
- },
- {
- desc: "secret data with wrong property",
- secrets: map[string]*v1.Secret{
- "mysec": {
- Data: map[string][]byte{
- "token": []byte(`foobar`),
- },
- },
- },
- ref: esv1beta1.ExternalSecretDataRemoteRef{
- Key: "mysec",
- Property: "not-the-token",
- },
- wantErr: "property not-the-token does not exist in data of secret",
- },
- {
- desc: "secret metadata with wrong property",
- secrets: map[string]*v1.Secret{
- "mysec": {
- ObjectMeta: metav1.ObjectMeta{
- Annotations: map[string]string{"date": "today"},
- Labels: map[string]string{"dev": "seb"},
- },
- },
- },
- ref: esv1beta1.ExternalSecretDataRemoteRef{
- MetadataPolicy: esv1beta1.ExternalSecretMetadataPolicyFetch,
- Key: "mysec",
- Property: "foo",
- },
- wantErr: "property foo does not exist in metadata of secret",
- },
- }
- for _, tt := range tests {
- t.Run(tt.desc, func(t *testing.T) {
- p := &Client{
- userSecretClient: &fakeClient{t: t, secretMap: tt.secrets, err: tt.clientErr},
- namespace: "default",
- }
- got, err := p.GetSecret(context.Background(), tt.ref)
- if err != nil {
- if tt.wantErr == "" {
- t.Fatalf("failed to call GetSecret: %v", err)
- }
- if !strings.Contains(err.Error(), tt.wantErr) {
- t.Fatalf("received an unexpected error: %q should have contained %q", err.Error(), tt.wantErr)
- }
- return
- }
- if tt.wantErr != "" {
- t.Fatalf("expected to receive an error but got nil")
- }
- if !reflect.DeepEqual(got, tt.want) {
- t.Fatalf("received an unexpected secret: got: %s, want %s", got, tt.want)
- }
- })
- }
- }
- func TestGetSecretMap(t *testing.T) {
- type fields struct {
- Client KClient
- ReviewClient RClient
- Namespace string
- }
- tests := []struct {
- name string
- fields fields
- ref esv1beta1.ExternalSecretDataRemoteRef
- want map[string][]byte
- wantErr bool
- }{
- {
- name: "successful case metadata without property",
- fields: fields{
- Client: &fakeClient{
- t: t,
- secretMap: map[string]*v1.Secret{
- "mysec": {
- ObjectMeta: metav1.ObjectMeta{
- Annotations: map[string]string{"date": "today"},
- Labels: map[string]string{"dev": "seb"},
- },
- },
- },
- },
- Namespace: "default",
- },
- ref: esv1beta1.ExternalSecretDataRemoteRef{
- MetadataPolicy: esv1beta1.ExternalSecretMetadataPolicyFetch,
- Key: "mysec",
- },
- want: map[string][]byte{"annotations": []byte("{\"date\":\"today\"}"), "labels": []byte("{\"dev\":\"seb\"}")},
- },
- {
- name: "successful case metadata with single property",
- fields: fields{
- Client: &fakeClient{
- t: t,
- secretMap: map[string]*v1.Secret{
- "mysec": {
- ObjectMeta: metav1.ObjectMeta{
- Annotations: map[string]string{"date": "today"},
- Labels: map[string]string{"dev": "seb"},
- },
- },
- },
- },
- Namespace: "default",
- },
- ref: esv1beta1.ExternalSecretDataRemoteRef{
- MetadataPolicy: esv1beta1.ExternalSecretMetadataPolicyFetch,
- Key: "mysec",
- Property: "labels",
- },
- want: map[string][]byte{"dev": []byte("\"seb\"")},
- },
- {
- name: "error case metadata with wrong property",
- fields: fields{
- Client: &fakeClient{
- t: t,
- secretMap: map[string]*v1.Secret{
- "mysec": {
- ObjectMeta: metav1.ObjectMeta{
- Annotations: map[string]string{"date": "today"},
- Labels: map[string]string{"dev": "seb"},
- },
- },
- },
- },
- Namespace: "default",
- },
- ref: esv1beta1.ExternalSecretDataRemoteRef{
- MetadataPolicy: esv1beta1.ExternalSecretMetadataPolicyFetch,
- Key: "mysec",
- Property: "foo",
- },
- wantErr: true,
- },
- }
- for _, tt := range tests {
- t.Run(tt.name, func(t *testing.T) {
- p := &Client{
- userSecretClient: tt.fields.Client,
- userReviewClient: tt.fields.ReviewClient,
- namespace: tt.fields.Namespace,
- }
- got, err := p.GetSecretMap(context.Background(), tt.ref)
- if (err != nil) != tt.wantErr {
- t.Errorf("ProviderKubernetes.GetSecretMap() error = %v, wantErr %v", err, tt.wantErr)
- return
- }
- if !reflect.DeepEqual(got, tt.want) {
- t.Errorf("ProviderKubernetes.GetSecretMap() = %v, want %v", got, tt.want)
- }
- })
- }
- }
- func TestGetAllSecrets(t *testing.T) {
- type fields struct {
- Client KClient
- ReviewClient RClient
- Namespace string
- }
- type args struct {
- ctx context.Context
- ref esv1beta1.ExternalSecretFind
- }
- tests := []struct {
- name string
- fields fields
- args args
- want map[string][]byte
- wantErr bool
- }{
- {
- name: "use regex",
- fields: fields{
- Client: &fakeClient{
- t: t,
- secretMap: map[string]*v1.Secret{
- "mysec": {
- ObjectMeta: metav1.ObjectMeta{
- Name: "mysec",
- },
- Data: map[string][]byte{
- "token": []byte(`foo`),
- },
- },
- "other": {
- ObjectMeta: metav1.ObjectMeta{
- Name: "other",
- },
- Data: map[string][]byte{
- "token": []byte(`bar`),
- },
- },
- },
- },
- },
- args: args{
- ref: esv1beta1.ExternalSecretFind{
- Name: &esv1beta1.FindName{
- RegExp: "other",
- },
- },
- },
- want: map[string][]byte{
- "other": []byte(`{"token":"bar"}`),
- },
- },
- {
- name: "use tags/labels",
- fields: fields{
- Client: &fakeClient{
- t: t,
- expectedListOptions: metav1.ListOptions{
- LabelSelector: "app=foobar",
- },
- secretMap: map[string]*v1.Secret{
- "mysec": {
- ObjectMeta: metav1.ObjectMeta{
- Name: "mysec",
- },
- Data: map[string][]byte{
- "token": []byte(`foo`),
- },
- },
- "other": {
- ObjectMeta: metav1.ObjectMeta{
- Name: "other",
- },
- Data: map[string][]byte{
- "token": []byte(`bar`),
- },
- },
- },
- },
- },
- args: args{
- ref: esv1beta1.ExternalSecretFind{
- Tags: map[string]string{
- "app": "foobar",
- },
- },
- },
- want: map[string][]byte{
- "mysec": []byte(`{"token":"foo"}`),
- "other": []byte(`{"token":"bar"}`),
- },
- },
- }
- for _, tt := range tests {
- t.Run(tt.name, func(t *testing.T) {
- p := &Client{
- userSecretClient: tt.fields.Client,
- userReviewClient: tt.fields.ReviewClient,
- namespace: tt.fields.Namespace,
- }
- got, err := p.GetAllSecrets(tt.args.ctx, tt.args.ref)
- if (err != nil) != tt.wantErr {
- t.Errorf("ProviderKubernetes.GetAllSecrets() error = %v, wantErr %v", err, tt.wantErr)
- return
- }
- if !reflect.DeepEqual(got, tt.want) {
- t.Errorf("ProviderKubernetes.GetAllSecrets() = %v, want %v", got, tt.want)
- }
- })
- }
- }
- func TestDeleteSecret(t *testing.T) {
- type fields struct {
- Client KClient
- }
- tests := []struct {
- name string
- fields fields
- ref esv1beta1.PushSecretRemoteRef
- wantSecretMap map[string]*v1.Secret
- wantErr bool
- }{
- {
- name: "refuse to delete without property",
- fields: fields{
- Client: &fakeClient{
- t: t,
- secretMap: map[string]*v1.Secret{
- "mysec": {
- Data: map[string][]byte{
- "token": []byte(`foobar`),
- },
- },
- },
- },
- },
- ref: v1alpha1.PushSecretRemoteRef{
- RemoteKey: "mysec",
- },
- wantErr: true,
- wantSecretMap: map[string]*v1.Secret{
- "mysec": {
- Data: map[string][]byte{
- "token": []byte(`foobar`),
- },
- },
- },
- },
- {
- name: "gracefully ignore not found secret",
- fields: fields{
- Client: &fakeClient{
- t: t,
- secretMap: map[string]*v1.Secret{},
- },
- },
- ref: v1alpha1.PushSecretRemoteRef{
- RemoteKey: "mysec",
- Property: "token",
- },
- wantErr: false,
- wantSecretMap: map[string]*v1.Secret{},
- },
- {
- name: "gracefully ignore not found property",
- fields: fields{
- Client: &fakeClient{
- t: t,
- secretMap: map[string]*v1.Secret{
- "mysec": {
- Data: map[string][]byte{
- "token": []byte(`foobar`),
- },
- },
- },
- },
- },
- ref: v1alpha1.PushSecretRemoteRef{
- RemoteKey: "mysec",
- Property: "secret",
- },
- wantErr: false,
- wantSecretMap: map[string]*v1.Secret{
- "mysec": {
- Data: map[string][]byte{
- "token": []byte(`foobar`),
- },
- },
- },
- },
- {
- name: "unexpected lookup error",
- fields: fields{
- Client: &fakeClient{
- t: t,
- secretMap: map[string]*v1.Secret{
- "mysec": {
- Data: map[string][]byte{
- "token": []byte(`foobar`),
- },
- },
- },
- err: errors.New(errSomethingWentWrong),
- },
- },
- ref: v1alpha1.PushSecretRemoteRef{
- RemoteKey: "mysec",
- },
- wantErr: true,
- wantSecretMap: map[string]*v1.Secret{
- "mysec": {
- Data: map[string][]byte{
- "token": []byte(`foobar`),
- },
- },
- },
- },
- {
- name: "delete whole secret if only property should be removed",
- fields: fields{
- Client: &fakeClient{
- t: t,
- secretMap: map[string]*v1.Secret{
- "mysec": {
- Data: map[string][]byte{
- "token": []byte(`foobar`),
- },
- },
- },
- },
- },
- ref: v1alpha1.PushSecretRemoteRef{
- RemoteKey: "mysec",
- Property: "token",
- },
- wantErr: false,
- wantSecretMap: map[string]*v1.Secret{},
- },
- {
- name: "multiple properties, just remove that one",
- fields: fields{
- Client: &fakeClient{
- t: t,
- secretMap: map[string]*v1.Secret{
- "mysec": {
- Data: map[string][]byte{
- "token": []byte(`foo`),
- "secret": []byte(`bar`),
- },
- },
- },
- },
- },
- ref: v1alpha1.PushSecretRemoteRef{
- RemoteKey: "mysec",
- Property: "token",
- },
- wantErr: false,
- wantSecretMap: map[string]*v1.Secret{
- "mysec": {
- ObjectMeta: metav1.ObjectMeta{
- Name: "mysec",
- },
- Data: map[string][]byte{
- "secret": []byte(`bar`),
- },
- },
- },
- },
- }
- for _, tt := range tests {
- t.Run(tt.name, func(t *testing.T) {
- p := &Client{
- userSecretClient: tt.fields.Client,
- }
- err := p.DeleteSecret(context.Background(), tt.ref)
- if (err != nil) != tt.wantErr {
- t.Errorf("ProviderKubernetes.DeleteSecret() error = %v, wantErr %v", err, tt.wantErr)
- return
- }
- fClient := tt.fields.Client.(*fakeClient)
- if diff := cmp.Diff(tt.wantSecretMap, fClient.secretMap); diff != "" {
- t.Errorf("Unexpected resulting secrets map: -want, +got :\n%s\n", diff)
- }
- })
- }
- }
- func TestPushSecret(t *testing.T) {
- secretKey := "secret-key"
- type fields struct {
- Client KClient
- }
- tests := []struct {
- name string
- fields fields
- data testingfake.PushSecretData
- secret *v1.Secret
- wantSecretMap map[string]*v1.Secret
- wantErr bool
- }{
- {
- name: "refuse to work without property if secret key is provided",
- fields: fields{
- Client: &fakeClient{
- t: t,
- secretMap: map[string]*v1.Secret{
- "mysec": {
- Data: map[string][]byte{
- "token": []byte(`foo`),
- },
- },
- },
- },
- },
- data: testingfake.PushSecretData{
- SecretKey: secretKey,
- RemoteKey: "mysec",
- },
- secret: &v1.Secret{
- Data: map[string][]byte{secretKey: []byte("bar")},
- },
- wantErr: true,
- wantSecretMap: map[string]*v1.Secret{
- "mysec": {
- Data: map[string][]byte{
- "token": []byte(`foo`),
- },
- },
- },
- },
- {
- name: "push the whole secret if neither remote property or secretKey is defined but keep existing keys",
- fields: fields{
- Client: &fakeClient{
- t: t,
- secretMap: map[string]*v1.Secret{
- "mysec": {
- Data: map[string][]byte{
- "token": []byte(`foo`),
- },
- },
- },
- },
- },
- data: testingfake.PushSecretData{
- RemoteKey: "mysec",
- },
- secret: &v1.Secret{
- Data: map[string][]byte{"token2": []byte("foo")},
- },
- wantSecretMap: map[string]*v1.Secret{
- "mysec": {
- ObjectMeta: metav1.ObjectMeta{
- Name: "mysec",
- Labels: map[string]string{},
- Annotations: map[string]string{},
- },
- Data: map[string][]byte{
- "token": []byte(`foo`),
- "token2": []byte(`foo`),
- },
- },
- },
- },
- {
- name: "push the whole secret while secret exists into a single property",
- fields: fields{
- Client: &fakeClient{
- t: t,
- secretMap: map[string]*v1.Secret{
- "mysec": {
- Data: map[string][]byte{
- "token": []byte(`foo`),
- },
- },
- },
- },
- },
- data: testingfake.PushSecretData{
- RemoteKey: "mysec",
- Property: "token",
- },
- secret: &v1.Secret{
- Data: map[string][]byte{"foo": []byte("bar")},
- },
- wantSecretMap: map[string]*v1.Secret{
- "mysec": {
- ObjectMeta: metav1.ObjectMeta{
- Name: "mysec",
- Labels: map[string]string{},
- Annotations: map[string]string{},
- },
- Data: map[string][]byte{
- "token": []byte(`{"foo":"bar"}`),
- },
- },
- },
- },
- {
- name: "push the whole secret while secret exists but new property is defined should update the secret and keep existing key",
- fields: fields{
- Client: &fakeClient{
- t: t,
- secretMap: map[string]*v1.Secret{
- "mysec": {
- Data: map[string][]byte{
- "token": []byte(`foo`),
- },
- },
- },
- },
- },
- data: testingfake.PushSecretData{
- RemoteKey: "mysec",
- Property: "token2",
- },
- secret: &v1.Secret{
- Data: map[string][]byte{"foo": []byte("bar")},
- },
- wantSecretMap: map[string]*v1.Secret{
- "mysec": {
- ObjectMeta: metav1.ObjectMeta{
- Name: "mysec",
- Labels: map[string]string{},
- Annotations: map[string]string{},
- },
- Data: map[string][]byte{
- "token": []byte(`foo`),
- "token2": []byte(`{"foo":"bar"}`),
- },
- },
- },
- },
- {
- name: "push the whole secret as json if remote property is defined but secret key is not given",
- fields: fields{
- Client: &fakeClient{
- t: t,
- secretMap: map[string]*v1.Secret{},
- },
- },
- data: testingfake.PushSecretData{
- RemoteKey: "mysec",
- Property: "marshaled",
- },
- secret: &v1.Secret{
- Data: map[string][]byte{
- "token": []byte("foo"),
- "token2": []byte("2"),
- },
- },
- wantSecretMap: map[string]*v1.Secret{
- "mysec": {
- ObjectMeta: metav1.ObjectMeta{
- Name: "mysec",
- Labels: map[string]string{},
- Annotations: map[string]string{},
- },
- Data: map[string][]byte{
- "marshaled": []byte(`{"token":"foo","token2":"2"}`),
- },
- Type: "Opaque",
- },
- },
- },
- {
- name: "add missing property to existing secret",
- fields: fields{
- Client: &fakeClient{
- t: t,
- secretMap: map[string]*v1.Secret{
- "mysec": {
- Data: map[string][]byte{
- "token": []byte(`foo`),
- },
- },
- },
- },
- },
- secret: &v1.Secret{
- Data: map[string][]byte{secretKey: []byte("bar")},
- },
- data: testingfake.PushSecretData{
- SecretKey: secretKey,
- RemoteKey: "mysec",
- Property: "secret",
- },
- wantErr: false,
- wantSecretMap: map[string]*v1.Secret{
- "mysec": {
- ObjectMeta: metav1.ObjectMeta{
- Name: "mysec",
- Labels: map[string]string{},
- Annotations: map[string]string{},
- },
- Data: map[string][]byte{
- "token": []byte(`foo`),
- "secret": []byte(`bar`),
- },
- },
- },
- },
- {
- name: "replace existing property in existing secret",
- fields: fields{
- Client: &fakeClient{
- t: t,
- secretMap: map[string]*v1.Secret{
- "mysec": {
- Data: map[string][]byte{
- "token": []byte(`foo`),
- },
- },
- },
- },
- },
- secret: &v1.Secret{
- Data: map[string][]byte{secretKey: []byte("bar")},
- },
- data: testingfake.PushSecretData{
- SecretKey: secretKey,
- RemoteKey: "mysec",
- Property: "token",
- },
- wantErr: false,
- wantSecretMap: map[string]*v1.Secret{
- "mysec": {
- ObjectMeta: metav1.ObjectMeta{
- Name: "mysec",
- Labels: map[string]string{},
- Annotations: map[string]string{},
- },
- Data: map[string][]byte{
- "token": []byte(`bar`),
- },
- },
- },
- },
- {
- name: "replace existing property in existing secret with targetMergePolicy set to Ignore",
- fields: fields{
- Client: &fakeClient{
- t: t,
- secretMap: map[string]*v1.Secret{
- "mysec": {
- Data: map[string][]byte{
- "token": []byte(`foo`),
- },
- },
- },
- },
- },
- secret: &v1.Secret{
- ObjectMeta: metav1.ObjectMeta{
- Name: "mysec",
- // these should be ignored as the targetMergePolicy is set to Ignore
- Labels: map[string]string{"dev": "seb"},
- Annotations: map[string]string{"date": "today"},
- },
- Data: map[string][]byte{secretKey: []byte("bar")},
- },
- data: testingfake.PushSecretData{
- SecretKey: secretKey,
- RemoteKey: "mysec",
- Property: "token",
- Metadata: &apiextensionsv1.JSON{
- Raw: []byte(`{"apiVersion":"kubernetes.external-secrets.io/v1alpha1", "kind": "PushSecretMetadata", spec: {"targetMergePolicy": "Ignore"}}`),
- },
- },
- wantErr: false,
- wantSecretMap: map[string]*v1.Secret{
- "mysec": {
- ObjectMeta: metav1.ObjectMeta{
- Name: "mysec",
- Labels: map[string]string{},
- Annotations: map[string]string{},
- },
- Data: map[string][]byte{
- "token": []byte(`bar`),
- },
- },
- },
- },
- {
- name: "replace existing property in existing secret with targetMergePolicy set to Replace",
- fields: fields{
- Client: &fakeClient{
- t: t,
- secretMap: map[string]*v1.Secret{
- "mysec": {
- ObjectMeta: metav1.ObjectMeta{
- Name: "mysec",
- Labels: map[string]string{
- "already": "existing",
- },
- Annotations: map[string]string{
- "already": "existing",
- },
- },
- Data: map[string][]byte{
- "token": []byte(`foo`),
- },
- },
- },
- },
- },
- secret: &v1.Secret{
- ObjectMeta: metav1.ObjectMeta{
- Name: "mysec",
- // these should replace existing metadata as the targetMergePolicy is set to Replace
- Labels: map[string]string{"dev": "seb"},
- Annotations: map[string]string{"date": "today"},
- },
- Data: map[string][]byte{secretKey: []byte("bar")},
- },
- data: testingfake.PushSecretData{
- SecretKey: secretKey,
- RemoteKey: "mysec",
- Property: "token",
- Metadata: &apiextensionsv1.JSON{
- Raw: []byte(`{"apiVersion":"kubernetes.external-secrets.io/v1alpha1", "kind": "PushSecretMetadata", spec: {"targetMergePolicy": "Replace"}}`),
- },
- },
- wantErr: false,
- wantSecretMap: map[string]*v1.Secret{
- "mysec": {
- ObjectMeta: metav1.ObjectMeta{
- Name: "mysec",
- Labels: map[string]string{
- "dev": "seb",
- },
- Annotations: map[string]string{
- "date": "today",
- },
- },
- Data: map[string][]byte{
- "token": []byte(`bar`),
- },
- },
- },
- },
- {
- name: "create new secret, merging existing metadata",
- fields: fields{
- Client: &fakeClient{
- t: t,
- secretMap: map[string]*v1.Secret{
- "yoursec": {
- Data: map[string][]byte{
- "token": []byte(`foo`),
- },
- },
- },
- },
- },
- secret: &v1.Secret{
- ObjectMeta: metav1.ObjectMeta{
- Annotations: map[string]string{
- "this-annotation": "should be present on the targey secret",
- },
- },
- Data: map[string][]byte{secretKey: []byte("bar")},
- },
- data: testingfake.PushSecretData{
- SecretKey: secretKey,
- RemoteKey: "mysec",
- Property: "secret",
- Metadata: &apiextensionsv1.JSON{
- Raw: []byte(`{"apiVersion":"kubernetes.external-secrets.io/v1alpha1", "kind": "PushSecretMetadata", spec: {"annotations": {"date": "today"}, "labels": {"dev": "seb"}}}`),
- },
- },
- wantErr: false,
- wantSecretMap: map[string]*v1.Secret{
- "yoursec": {
- Data: map[string][]byte{
- "token": []byte(`foo`),
- },
- },
- "mysec": {
- ObjectMeta: metav1.ObjectMeta{
- Name: "mysec",
- Annotations: map[string]string{
- "date": "today",
- "this-annotation": "should be present on the targey secret",
- },
- Labels: map[string]string{"dev": "seb"},
- },
- Data: map[string][]byte{
- "secret": []byte(`bar`),
- },
- Type: v1.SecretTypeOpaque,
- },
- },
- },
- {
- name: "create new secret with metadata from secret metadata and remoteRef.metadata",
- fields: fields{
- Client: &fakeClient{
- t: t,
- secretMap: map[string]*v1.Secret{
- "yoursec": {
- Data: map[string][]byte{
- "token": []byte(`foo`),
- },
- },
- },
- },
- },
- secret: &v1.Secret{
- ObjectMeta: metav1.ObjectMeta{
- Annotations: map[string]string{"date": "today"},
- Labels: map[string]string{"dev": "seb"},
- },
- Data: map[string][]byte{secretKey: []byte("bar")},
- },
- data: testingfake.PushSecretData{
- SecretKey: secretKey,
- RemoteKey: "mysec",
- Property: "secret",
- Metadata: &apiextensionsv1.JSON{
- Raw: []byte(`{"apiVersion":"kubernetes.external-secrets.io/v1alpha1", "kind": "PushSecretMetadata", spec: { "sourceMergePolicy": "Replace", "annotations": {"another-field": "from-remote-ref"}, "labels": {"other-label": "from-remote-ref"}}}`),
- },
- },
- wantErr: false,
- wantSecretMap: map[string]*v1.Secret{
- "yoursec": {
- Data: map[string][]byte{
- "token": []byte(`foo`),
- },
- },
- "mysec": {
- ObjectMeta: metav1.ObjectMeta{
- Name: "mysec",
- Annotations: map[string]string{
- "another-field": "from-remote-ref",
- },
- Labels: map[string]string{
- "other-label": "from-remote-ref",
- },
- },
- Data: map[string][]byte{
- "secret": []byte(`bar`),
- },
- Type: v1.SecretTypeOpaque,
- },
- },
- },
- {
- name: "invalid secret metadata structure results in error",
- fields: fields{
- Client: &fakeClient{
- t: t,
- secretMap: map[string]*v1.Secret{
- "yoursec": {
- Data: map[string][]byte{
- "token": []byte(`foo`),
- },
- },
- },
- },
- },
- secret: &v1.Secret{
- Data: map[string][]byte{secretKey: []byte("bar")},
- },
- data: testingfake.PushSecretData{
- SecretKey: secretKey,
- RemoteKey: "mysec",
- Property: "secret",
- Metadata: &apiextensionsv1.JSON{
- Raw: []byte(`{}`),
- },
- },
- wantErr: true,
- wantSecretMap: map[string]*v1.Secret{
- "yoursec": {
- Data: map[string][]byte{
- "token": []byte(`foo`),
- },
- },
- },
- },
- {
- name: "non-json secret metadata results in error",
- fields: fields{
- Client: &fakeClient{
- t: t,
- secretMap: map[string]*v1.Secret{
- "yoursec": {
- Data: map[string][]byte{
- "token": []byte(`foo`),
- },
- },
- },
- },
- },
- secret: &v1.Secret{
- Data: map[string][]byte{secretKey: []byte("bar")},
- },
- data: testingfake.PushSecretData{
- SecretKey: secretKey,
- RemoteKey: "mysec",
- Property: "secret",
- Metadata: &apiextensionsv1.JSON{
- Raw: []byte(`--- not json ---`),
- },
- },
- wantErr: true,
- wantSecretMap: map[string]*v1.Secret{
- "yoursec": {
- Data: map[string][]byte{
- "token": []byte(`foo`),
- },
- },
- },
- },
- {
- name: "create new secret with whole secret",
- fields: fields{
- Client: &fakeClient{
- t: t,
- secretMap: map[string]*v1.Secret{
- "yoursec": {
- Data: map[string][]byte{
- "token": []byte(`foo`),
- },
- },
- },
- },
- },
- secret: &v1.Secret{
- Data: map[string][]byte{
- "foo": []byte("bar"),
- "baz": []byte("bang"),
- },
- },
- data: testingfake.PushSecretData{
- RemoteKey: "mysec",
- },
- wantErr: false,
- wantSecretMap: map[string]*v1.Secret{
- "yoursec": {
- Data: map[string][]byte{
- "token": []byte(`foo`),
- },
- },
- "mysec": {
- ObjectMeta: metav1.ObjectMeta{
- Name: "mysec",
- Labels: map[string]string{},
- Annotations: map[string]string{},
- },
- Data: map[string][]byte{
- "foo": []byte("bar"),
- "baz": []byte("bang"),
- },
- Type: v1.SecretTypeOpaque,
- },
- },
- },
- {
- name: "create new dockerconfigjson secret",
- fields: fields{
- Client: &fakeClient{
- t: t,
- secretMap: map[string]*v1.Secret{
- "yoursec": {
- Data: map[string][]byte{
- "token": []byte(`foo`),
- },
- },
- },
- },
- },
- secret: &v1.Secret{
- Type: v1.SecretTypeDockerConfigJson,
- Data: map[string][]byte{secretKey: []byte(`{"auths": {"myregistry.localhost": {"username": "{{ .username }}", "password": "{{ .password }}"}}}`)},
- },
- data: testingfake.PushSecretData{
- SecretKey: secretKey,
- RemoteKey: "mysec",
- Property: "config.json",
- },
- wantErr: false,
- wantSecretMap: map[string]*v1.Secret{
- "yoursec": {
- Data: map[string][]byte{
- "token": []byte(`foo`),
- },
- },
- "mysec": {
- ObjectMeta: metav1.ObjectMeta{
- Name: "mysec",
- Labels: map[string]string{},
- Annotations: map[string]string{},
- },
- Data: map[string][]byte{
- "config.json": []byte(`{"auths": {"myregistry.localhost": {"username": "{{ .username }}", "password": "{{ .password }}"}}}`),
- },
- Type: v1.SecretTypeDockerConfigJson,
- },
- },
- },
- }
- for _, tt := range tests {
- t.Run(tt.name, func(t *testing.T) {
- p := &Client{
- userSecretClient: tt.fields.Client,
- store: &esv1beta1.KubernetesProvider{},
- }
- err := p.PushSecret(context.Background(), tt.secret, tt.data)
- if (err != nil) != tt.wantErr {
- t.Errorf("ProviderKubernetes error = %v, wantErr %v", err, tt.wantErr)
- return
- }
- fClient := tt.fields.Client.(*fakeClient)
- if diff := cmp.Diff(tt.wantSecretMap, fClient.secretMap); diff != "" {
- t.Errorf("Unexpected resulting secrets map: -want, +got :\n%s\n", diff)
- }
- })
- }
- }
|