mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
68 lines
1.8 KiB
Go
68 lines
1.8 KiB
Go
// +build linux
|
|
|
|
package server
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/docker/docker/pkg/version"
|
|
"github.com/docker/docker/runconfig"
|
|
)
|
|
|
|
func TestAdjustCpuSharesOldApi(t *testing.T) {
|
|
apiVersion := version.Version("1.18")
|
|
hostConfig := &runconfig.HostConfig{
|
|
CPUShares: linuxMinCpuShares - 1,
|
|
}
|
|
adjustCpuShares(apiVersion, hostConfig)
|
|
if hostConfig.CPUShares != linuxMinCpuShares {
|
|
t.Errorf("Expected CpuShares to be %d", linuxMinCpuShares)
|
|
}
|
|
|
|
hostConfig.CPUShares = linuxMaxCpuShares + 1
|
|
adjustCpuShares(apiVersion, hostConfig)
|
|
if hostConfig.CPUShares != linuxMaxCpuShares {
|
|
t.Errorf("Expected CpuShares to be %d", linuxMaxCpuShares)
|
|
}
|
|
|
|
hostConfig.CPUShares = 0
|
|
adjustCpuShares(apiVersion, hostConfig)
|
|
if hostConfig.CPUShares != 0 {
|
|
t.Error("Expected CpuShares to be unchanged")
|
|
}
|
|
|
|
hostConfig.CPUShares = 1024
|
|
adjustCpuShares(apiVersion, hostConfig)
|
|
if hostConfig.CPUShares != 1024 {
|
|
t.Error("Expected CpuShares to be unchanged")
|
|
}
|
|
}
|
|
|
|
func TestAdjustCpuSharesNoAdjustment(t *testing.T) {
|
|
apiVersion := version.Version("1.19")
|
|
hostConfig := &runconfig.HostConfig{
|
|
CPUShares: linuxMinCpuShares - 1,
|
|
}
|
|
adjustCpuShares(apiVersion, hostConfig)
|
|
if hostConfig.CPUShares != linuxMinCpuShares-1 {
|
|
t.Errorf("Expected CpuShares to be %d", linuxMinCpuShares-1)
|
|
}
|
|
|
|
hostConfig.CPUShares = linuxMaxCpuShares + 1
|
|
adjustCpuShares(apiVersion, hostConfig)
|
|
if hostConfig.CPUShares != linuxMaxCpuShares+1 {
|
|
t.Errorf("Expected CpuShares to be %d", linuxMaxCpuShares+1)
|
|
}
|
|
|
|
hostConfig.CPUShares = 0
|
|
adjustCpuShares(apiVersion, hostConfig)
|
|
if hostConfig.CPUShares != 0 {
|
|
t.Error("Expected CpuShares to be unchanged")
|
|
}
|
|
|
|
hostConfig.CPUShares = 1024
|
|
adjustCpuShares(apiVersion, hostConfig)
|
|
if hostConfig.CPUShares != 1024 {
|
|
t.Error("Expected CpuShares to be unchanged")
|
|
}
|
|
}
|