1
0
Fork 0
mirror of https://github.com/external-secrets/external-secrets.git synced 2024-12-14 11:57:59 +00:00
external-secrets/pkg/utils/utils_test.go
2021-11-26 09:59:10 +01:00

148 lines
2.8 KiB
Go

/*
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 (
"testing"
vault "github.com/oracle/oci-go-sdk/v45/vault"
v1 "k8s.io/api/core/v1"
)
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)
}
})
}
}