2014-04-18 01:43:01 +04:00
|
|
|
package daemon
|
2014-03-24 11:16:40 +04:00
|
|
|
|
|
|
|
import (
|
2014-04-01 11:07:42 +04:00
|
|
|
"testing"
|
|
|
|
|
2014-07-25 02:19:50 +04:00
|
|
|
"github.com/docker/docker/runconfig"
|
|
|
|
"github.com/docker/docker/utils"
|
2014-03-24 11:16:40 +04:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestMergeLxcConfig(t *testing.T) {
|
2014-09-30 02:40:26 +04:00
|
|
|
hostConfig := &runconfig.HostConfig{
|
|
|
|
LxcConf: []utils.KeyValuePair{
|
|
|
|
{Key: "lxc.cgroups.cpuset", Value: "1,2"},
|
|
|
|
},
|
2014-03-24 11:16:40 +04:00
|
|
|
}
|
|
|
|
|
2014-12-09 03:45:42 +03:00
|
|
|
out, err := mergeLxcConfIntoOptions(hostConfig)
|
|
|
|
if err != nil {
|
2014-12-12 21:58:56 +03:00
|
|
|
t.Fatalf("Failed to merge Lxc Config: %s", err)
|
2014-12-09 03:45:42 +03:00
|
|
|
}
|
2014-09-30 02:40:26 +04:00
|
|
|
|
|
|
|
cpuset := out[0]
|
2014-03-24 11:16:40 +04:00
|
|
|
if expected := "cgroups.cpuset=1,2"; cpuset != expected {
|
|
|
|
t.Fatalf("expected %s got %s", expected, cpuset)
|
|
|
|
}
|
|
|
|
}
|