2016-06-19 00:30:33 -04:00
|
|
|
// +build linux
|
|
|
|
|
2018-02-05 16:05:59 -05:00
|
|
|
package journald // import "github.com/docker/docker/daemon/logger/journald"
|
2016-06-19 00:30:33 -04:00
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestSanitizeKeyMod(t *testing.T) {
|
|
|
|
entries := map[string]string{
|
|
|
|
"io.kubernetes.pod.name": "IO_KUBERNETES_POD_NAME",
|
|
|
|
"io?.kubernetes.pod.name": "IO__KUBERNETES_POD_NAME",
|
|
|
|
"?io.kubernetes.pod.name": "IO_KUBERNETES_POD_NAME",
|
|
|
|
"io123.kubernetes.pod.name": "IO123_KUBERNETES_POD_NAME",
|
|
|
|
"_io123.kubernetes.pod.name": "IO123_KUBERNETES_POD_NAME",
|
|
|
|
"__io123_kubernetes.pod.name": "IO123_KUBERNETES_POD_NAME",
|
|
|
|
}
|
|
|
|
for k, v := range entries {
|
|
|
|
if sanitizeKeyMod(k) != v {
|
|
|
|
t.Fatalf("Failed to sanitize %s, got %s, expected %s", k, sanitizeKeyMod(k), v)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|