mirror of https://github.com/k3s-io/k3s
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
841 B
47 lines
841 B
3 years ago
|
package bootstrap
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/rancher/k3s/pkg/daemons/config"
|
||
|
)
|
||
|
|
||
|
func TestObjToMap(t *testing.T) {
|
||
|
type args struct {
|
||
|
obj interface{}
|
||
|
}
|
||
|
tests := []struct {
|
||
|
name string
|
||
|
args args
|
||
|
want map[string]string
|
||
|
wantErr bool
|
||
|
}{
|
||
|
{
|
||
|
name: "Minimal Valid",
|
||
|
args: args{
|
||
|
obj: &config.ControlRuntimeBootstrap{
|
||
|
ServerCA: "/var/lib/rancher/k3s/server/tls/server-ca.crt",
|
||
|
ServerCAKey: "/var/lib/rancher/k3s/server/tls/server-ca.key",
|
||
|
},
|
||
|
},
|
||
|
wantErr: false,
|
||
|
},
|
||
|
{
|
||
|
name: "Minimal Invalid",
|
||
|
args: args{
|
||
|
obj: 1,
|
||
|
},
|
||
|
wantErr: true,
|
||
|
},
|
||
|
}
|
||
|
for _, tt := range tests {
|
||
|
t.Run(tt.name, func(t *testing.T) {
|
||
|
_, err := ObjToMap(tt.args.obj)
|
||
|
if (err != nil) != tt.wantErr {
|
||
|
t.Errorf("ObjToMap() error = %v, wantErr %v", err, tt.wantErr)
|
||
|
return
|
||
|
}
|
||
|
})
|
||
|
}
|
||
|
}
|