| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049 |
- /*
- 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"
- 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,
- 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.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": {
- 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": {
- 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": {
- 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": {
- 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": {
- 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": {
- 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": {
- Data: map[string][]byte{
- "token": []byte(`bar`),
- },
- },
- },
- },
- {
- name: "create new 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{secretKey: []byte("bar")},
- },
- data: testingfake.PushSecretData{
- SecretKey: secretKey,
- RemoteKey: "mysec",
- Property: "secret",
- },
- wantErr: false,
- wantSecretMap: map[string]*v1.Secret{
- "yoursec": {
- Data: map[string][]byte{
- "token": []byte(`foo`),
- },
- },
- "mysec": {
- Data: map[string][]byte{
- "secret": []byte(`bar`),
- },
- 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": {
- 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)
- }
- })
- }
- }
|