mirror of https://github.com/k3s-io/k3s
59 lines
1.8 KiB
Go
59 lines
1.8 KiB
Go
/*
|
|
Copyright 2015 The Kubernetes Authors All rights reserved.
|
|
|
|
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 procfs
|
|
|
|
import (
|
|
"io/ioutil"
|
|
"testing"
|
|
)
|
|
|
|
func verifyContainerName(procCgroupText, expectedName string, expectedErr bool, t *testing.T) {
|
|
name, err := containerNameFromProcCgroup(procCgroupText)
|
|
if expectedErr && err == nil {
|
|
t.Errorf("Expected error but did not get error in verifyContainerName")
|
|
return
|
|
} else if !expectedErr && err != nil {
|
|
t.Errorf("Expected no error, but got error %+v in verifyContainerName", err)
|
|
return
|
|
} else if expectedErr {
|
|
return
|
|
}
|
|
if name != expectedName {
|
|
t.Errorf("Expected container name %s but got name %s", expectedName, name)
|
|
}
|
|
}
|
|
|
|
func TestContainerNameFromProcCgroup(t *testing.T) {
|
|
procCgroupValid := "2:devices:docker/kubelet"
|
|
verifyContainerName(procCgroupValid, "docker/kubelet", false, t)
|
|
|
|
procCgroupEmpty := ""
|
|
verifyContainerName(procCgroupEmpty, "", true, t)
|
|
|
|
content, err := ioutil.ReadFile("example_proc_cgroup")
|
|
if err != nil {
|
|
t.Errorf("Could not read example /proc cgroup file")
|
|
}
|
|
verifyContainerName(string(content), "/user/1000.user/c1.session", false, t)
|
|
|
|
procCgroupNoDevice := "2:freezer:docker/kubelet\n5:cpuacct:pkg/kubectl"
|
|
verifyContainerName(procCgroupNoDevice, "", true, t)
|
|
|
|
procCgroupInvalid := "devices:docker/kubelet\ncpuacct:pkg/kubectl"
|
|
verifyContainerName(procCgroupInvalid, "", true, t)
|
|
}
|