| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- /*
- 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 framework
- import (
- "bytes"
- "context"
- "encoding/json"
- "time"
- v1 "k8s.io/api/core/v1"
- apierrors "k8s.io/apimachinery/pkg/api/errors"
- "k8s.io/apimachinery/pkg/types"
- "k8s.io/apimachinery/pkg/util/wait"
- esv1alpha1 "github.com/external-secrets/external-secrets/apis/externalsecrets/v1alpha1"
- )
- // WaitForSecretValue waits until a secret comes into existence and compares the secret.Data
- // with the provided values.
- func (f *Framework) WaitForSecretValue(namespace, name string, expected *v1.Secret) (*v1.Secret, error) {
- secret := &v1.Secret{}
- err := wait.PollImmediate(time.Second*10, time.Minute, func() (bool, error) {
- err := f.CRClient.Get(context.Background(), types.NamespacedName{
- Namespace: namespace,
- Name: name,
- }, secret)
- if apierrors.IsNotFound(err) {
- return false, nil
- }
- return equalSecrets(expected, secret), nil
- })
- return secret, err
- }
- func equalSecrets(exp, ts *v1.Secret) bool {
- if exp.Type != ts.Type {
- return false
- }
- expLabels, _ := json.Marshal(exp.ObjectMeta.Labels)
- tsLabels, _ := json.Marshal(ts.ObjectMeta.Labels)
- if !bytes.Equal(expLabels, tsLabels) {
- return false
- }
- // secret contains data hash property which must be ignored
- delete(ts.ObjectMeta.Annotations, esv1alpha1.AnnotationDataHash)
- if len(ts.ObjectMeta.Annotations) == 0 {
- ts.ObjectMeta.Annotations = nil
- }
- expAnnotations, _ := json.Marshal(exp.ObjectMeta.Annotations)
- tsAnnotations, _ := json.Marshal(ts.ObjectMeta.Annotations)
- if !bytes.Equal(expAnnotations, tsAnnotations) {
- return false
- }
- expData, _ := json.Marshal(exp.Data)
- tsData, _ := json.Marshal(ts.Data)
- return bytes.Equal(expData, tsData)
- }
|