mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-12-08 02:15:27 +00:00
This PR unpacks the downloaded ConfigMap to a set of files on the node. This enables other config files to ride alongside the KubeletConfiguration, and the KubeletConfiguration to refer to these cohabitants with relative paths. This PR also stops storing dynamic config metadata (e.g. current, last-known-good config records) in the same directory as config checkpoints. Instead, it splits the storage into `meta` and `checkpoints` dirs.
110 lines
2.7 KiB
Go
110 lines
2.7 KiB
Go
/*
|
|
Copyright 2017 The Kubernetes Authors.
|
|
|
|
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 checkpoint
|
|
|
|
import (
|
|
"reflect"
|
|
"testing"
|
|
|
|
"github.com/davecgh/go-spew/spew"
|
|
|
|
apiv1 "k8s.io/api/core/v1"
|
|
apiequality "k8s.io/apimachinery/pkg/api/equality"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
utiltest "k8s.io/kubernetes/pkg/kubelet/kubeletconfig/util/test"
|
|
)
|
|
|
|
func TestNewConfigMapPayload(t *testing.T) {
|
|
cases := []struct {
|
|
desc string
|
|
cm *apiv1.ConfigMap
|
|
err string
|
|
}{
|
|
{"nil v1/ConfigMap", nil, "must be non-nil"},
|
|
{"empty v1/ConfigMap", &apiv1.ConfigMap{}, "must have a UID"},
|
|
{"populated v1/ConfigMap",
|
|
&apiv1.ConfigMap{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Name: "name",
|
|
UID: "uid",
|
|
},
|
|
Data: map[string]string{
|
|
"key1": "value1",
|
|
"key2": "value2",
|
|
},
|
|
}, ""},
|
|
}
|
|
|
|
for _, c := range cases {
|
|
t.Run(c.desc, func(t *testing.T) {
|
|
payload, err := NewConfigMapPayload(c.cm)
|
|
utiltest.ExpectError(t, err, c.err)
|
|
if err != nil {
|
|
return
|
|
}
|
|
// underlying object should match the object passed in
|
|
if !apiequality.Semantic.DeepEqual(c.cm, payload.object()) {
|
|
t.Errorf("expect %s but got %s", spew.Sdump(c.cm), spew.Sdump(payload))
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestConfigMapPayloadUID(t *testing.T) {
|
|
const expect = "uid"
|
|
payload, err := NewConfigMapPayload(&apiv1.ConfigMap{ObjectMeta: metav1.ObjectMeta{UID: expect}})
|
|
if err != nil {
|
|
t.Fatalf("error constructing payload: %v", err)
|
|
}
|
|
uid := payload.UID()
|
|
if expect != uid {
|
|
t.Errorf("expect %q, but got %q", expect, uid)
|
|
}
|
|
}
|
|
|
|
func TestConfigMapPayloadFiles(t *testing.T) {
|
|
cases := []struct {
|
|
desc string
|
|
data map[string]string
|
|
expect map[string]string
|
|
}{
|
|
{"nil", nil, nil},
|
|
{"empty", map[string]string{}, map[string]string{}},
|
|
{"populated",
|
|
map[string]string{
|
|
"foo": "1",
|
|
"bar": "2",
|
|
},
|
|
map[string]string{
|
|
"foo": "1",
|
|
"bar": "2",
|
|
}},
|
|
}
|
|
for _, c := range cases {
|
|
t.Run(c.desc, func(t *testing.T) {
|
|
payload, err := NewConfigMapPayload(&apiv1.ConfigMap{ObjectMeta: metav1.ObjectMeta{UID: "uid"}, Data: c.data})
|
|
if err != nil {
|
|
t.Fatalf("error constructing payload: %v", err)
|
|
}
|
|
files := payload.Files()
|
|
if !reflect.DeepEqual(c.expect, files) {
|
|
t.Errorf("expected %v, but got %v", c.expect, files)
|
|
}
|
|
})
|
|
}
|
|
}
|