| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226 |
- /*
- 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 utils
- import (
- "reflect"
- "testing"
- vault "github.com/oracle/oci-go-sdk/v56/vault"
- v1 "k8s.io/api/core/v1"
- esv1beta1 "github.com/external-secrets/external-secrets/apis/externalsecrets/v1beta1"
- )
- func TestObjectHash(t *testing.T) {
- tests := []struct {
- name string
- input interface{}
- want string
- }{
- {
- name: "A nil should be still working",
- input: nil,
- want: "60046f14c917c18a9a0f923e191ba0dc",
- },
- {
- name: "We accept a simple scalar value, i.e. string",
- input: "hello there",
- want: "161bc25962da8fed6d2f59922fb642aa",
- },
- {
- name: "A complex object like a secret is not an issue",
- input: v1.Secret{Data: map[string][]byte{
- "xx": []byte("yyy"),
- }},
- want: "a9fe13fd43b20829b45f0a93372413dd",
- },
- {
- name: "map also works",
- input: map[string][]byte{
- "foo": []byte("value1"),
- "bar": []byte("value2"),
- },
- want: "caa0155759a6a9b3b6ada5a6883ee2bb",
- },
- }
- for _, tt := range tests {
- t.Run(tt.name, func(t *testing.T) {
- if got := ObjectHash(tt.input); got != tt.want {
- t.Errorf("ObjectHash() = %v, want %v", got, tt.want)
- }
- })
- }
- }
- func TestIsNil(t *testing.T) {
- tbl := []struct {
- name string
- val interface{}
- exp bool
- }{
- {
- name: "simple nil val",
- val: nil,
- exp: true,
- },
- {
- name: "nil slice",
- val: (*[]struct{})(nil),
- exp: true,
- },
- {
- name: "struct pointer",
- val: &testing.T{},
- exp: false,
- },
- {
- name: "struct",
- val: testing.T{},
- exp: false,
- },
- {
- name: "slice of struct",
- val: []struct{}{{}},
- exp: false,
- },
- {
- name: "slice of ptr",
- val: []*testing.T{nil},
- exp: false,
- },
- {
- name: "slice",
- val: []struct{}(nil),
- exp: false,
- },
- {
- name: "int default value",
- val: 0,
- exp: false,
- },
- {
- name: "empty str",
- val: "",
- exp: false,
- },
- {
- name: "oracle vault",
- val: vault.VaultsClient{},
- exp: false,
- },
- {
- name: "func",
- val: func() {
- // noop for testing and to make linter happy
- },
- exp: false,
- },
- {
- name: "channel",
- val: make(chan struct{}),
- exp: false,
- },
- {
- name: "map",
- val: map[string]string{},
- exp: false,
- },
- }
- for _, row := range tbl {
- t.Run(row.name, func(t *testing.T) {
- res := IsNil(row.val)
- if res != row.exp {
- t.Errorf("IsNil(%#v)=%t, expected %t", row.val, res, row.exp)
- }
- })
- }
- }
- func TestConvertKeys(t *testing.T) {
- type args struct {
- strategy esv1beta1.ExternalSecretConversionStrategy
- in map[string][]byte
- }
- tests := []struct {
- name string
- args args
- want map[string][]byte
- wantErr bool
- }{
- {
- name: "convert with special chars",
- args: args{
- strategy: esv1beta1.ExternalSecretConversionDefault,
- in: map[string][]byte{
- "foo$bar%baz*bing": []byte(`noop`),
- },
- },
- want: map[string][]byte{
- "foo_bar_baz_bing": []byte(`noop`),
- },
- },
- {
- name: "error on collision",
- args: args{
- strategy: esv1beta1.ExternalSecretConversionDefault,
- in: map[string][]byte{
- "foo$bar%baz*bing": []byte(`noop`),
- "foo_bar_baz$bing": []byte(`noop`),
- },
- },
- wantErr: true,
- },
- {
- name: "convert path",
- args: args{
- strategy: esv1beta1.ExternalSecretConversionDefault,
- in: map[string][]byte{
- "/foo/bar/baz/bing": []byte(`noop`),
- "foo/bar/baz/bing/": []byte(`noop`),
- },
- },
- want: map[string][]byte{
- "_foo_bar_baz_bing": []byte(`noop`),
- "foo_bar_baz_bing_": []byte(`noop`),
- },
- },
- {
- name: "convert unicode",
- args: args{
- strategy: esv1beta1.ExternalSecretConversionUnicode,
- in: map[string][]byte{
- "😀foo😁bar😂baz😈bing": []byte(`noop`),
- },
- },
- want: map[string][]byte{
- "_U1f600_foo_U1f601_bar_U1f602_baz_U1f608_bing": []byte(`noop`),
- },
- },
- }
- for _, tt := range tests {
- t.Run(tt.name, func(t *testing.T) {
- got, err := ConvertKeys(tt.args.strategy, tt.args.in)
- if (err != nil) != tt.wantErr {
- t.Errorf("ConvertKeys() error = %v, wantErr %v", err, tt.wantErr)
- return
- }
- if !reflect.DeepEqual(got, tt.want) {
- t.Errorf("ConvertKeys() = %v, want %v", got, tt.want)
- }
- })
- }
- }
|