mirror of
https://github.com/clearlinux/rkt.git
synced 2026-09-03 20:31:35 +00:00
SliceToPath explodes a slice name to its corresponding path in the cgroup hierarchy. For example, a slice named "foo-bar-baz.slice" corresponds to the path "foo.slice/foo-bar.slice/foo-bar-baz.slice". See systemd.slice(5) Since SliceToPath needs to do escapings and sanity checks, several functions used in systemd for that purpose are also ported.
134 lines
2.3 KiB
Go
134 lines
2.3 KiB
Go
// Copyright 2015 The rkt 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.
|
|
|
|
//+build linux
|
|
|
|
package common
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestCgEscape(t *testing.T) {
|
|
tests := []struct {
|
|
input string
|
|
output string
|
|
}{
|
|
{
|
|
input: "",
|
|
output: "",
|
|
},
|
|
{
|
|
input: "_abc",
|
|
output: "__abc",
|
|
},
|
|
{
|
|
input: ".abc",
|
|
output: "_.abc",
|
|
},
|
|
{
|
|
input: "notify_on_release",
|
|
output: "_notify_on_release",
|
|
},
|
|
{
|
|
input: "tasks",
|
|
output: "_tasks",
|
|
},
|
|
{
|
|
input: "cgroup.abc.slice",
|
|
output: "_cgroup.abc.slice",
|
|
},
|
|
{
|
|
input: "abc.mount",
|
|
output: "abc.mount",
|
|
},
|
|
{
|
|
input: "a/bc.mount",
|
|
output: "_a/bc.mount",
|
|
},
|
|
}
|
|
|
|
for i, tt := range tests {
|
|
o := cgEscape(tt.input)
|
|
if o != tt.output {
|
|
t.Errorf("#%d: expected `%v` got `%v`", i, tt.output, o)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestSliceToPath(t *testing.T) {
|
|
tests := []struct {
|
|
input string
|
|
output string
|
|
werr bool
|
|
}{
|
|
{
|
|
input: "",
|
|
output: "",
|
|
werr: true,
|
|
},
|
|
{
|
|
input: "abc.service",
|
|
output: "",
|
|
werr: true,
|
|
},
|
|
{
|
|
input: "ab/c.slice",
|
|
output: "",
|
|
werr: true,
|
|
},
|
|
{
|
|
input: "-abc.slice",
|
|
output: "",
|
|
werr: true,
|
|
},
|
|
{
|
|
input: "ab--c.slice",
|
|
output: "",
|
|
werr: true,
|
|
},
|
|
{
|
|
input: "abc-.slice",
|
|
output: "",
|
|
werr: true,
|
|
},
|
|
{
|
|
input: "abc.slice",
|
|
output: "abc.slice",
|
|
werr: false,
|
|
},
|
|
{
|
|
input: "foo-bar.slice",
|
|
output: "foo.slice/foo-bar.slice",
|
|
werr: false,
|
|
},
|
|
{
|
|
input: "foo-bar-baz.slice",
|
|
output: "foo.slice/foo-bar.slice/foo-bar-baz.slice",
|
|
werr: false,
|
|
},
|
|
}
|
|
|
|
for i, tt := range tests {
|
|
o, err := SliceToPath(tt.input)
|
|
gerr := (err != nil)
|
|
if o != tt.output {
|
|
t.Errorf("#%d: expected `%v` got `%v`", i, tt.output, o)
|
|
}
|
|
if gerr != tt.werr {
|
|
t.Errorf("#%d: gerr=%t, want %t (err=%v)", i, gerr, tt.werr, err)
|
|
}
|
|
}
|
|
}
|