2015-11-03 11:26:55 +08:00
|
|
|
package main
|
2015-10-20 10:19:25 +08:00
|
|
|
|
|
|
|
import (
|
|
|
|
"runtime"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestSetCPU(t *testing.T) {
|
|
|
|
currentCPU := runtime.GOMAXPROCS(-1)
|
|
|
|
maxCPU := runtime.NumCPU()
|
2015-11-14 10:38:26 +08:00
|
|
|
halfCPU := int(0.5 * float32(maxCPU))
|
|
|
|
if halfCPU < 1 {
|
|
|
|
halfCPU = 1
|
|
|
|
}
|
2015-10-20 10:19:25 +08:00
|
|
|
for i, test := range []struct {
|
|
|
|
input string
|
|
|
|
output int
|
|
|
|
shouldErr bool
|
|
|
|
}{
|
|
|
|
{"1", 1, false},
|
|
|
|
{"-1", currentCPU, true},
|
|
|
|
{"0", currentCPU, true},
|
|
|
|
{"100%", maxCPU, false},
|
2015-11-14 10:38:26 +08:00
|
|
|
{"50%", halfCPU, false},
|
2015-10-20 10:19:25 +08:00
|
|
|
{"110%", currentCPU, true},
|
|
|
|
{"-10%", currentCPU, true},
|
|
|
|
{"invalid input", currentCPU, true},
|
|
|
|
{"invalid input%", currentCPU, true},
|
|
|
|
{"9999", maxCPU, false}, // over available CPU
|
|
|
|
} {
|
2015-11-03 11:26:55 +08:00
|
|
|
err := setCPU(test.input)
|
2015-10-20 10:19:25 +08:00
|
|
|
if test.shouldErr && err == nil {
|
|
|
|
t.Errorf("Test %d: Expected error, but there wasn't any", i)
|
|
|
|
}
|
|
|
|
if !test.shouldErr && err != nil {
|
|
|
|
t.Errorf("Test %d: Expected no error, but there was one: %v", i, err)
|
|
|
|
}
|
|
|
|
if actual, expected := runtime.GOMAXPROCS(-1), test.output; actual != expected {
|
|
|
|
t.Errorf("Test %d: GOMAXPROCS was %d but expected %d", i, actual, expected)
|
|
|
|
}
|
|
|
|
// teardown
|
|
|
|
runtime.GOMAXPROCS(currentCPU)
|
|
|
|
}
|
|
|
|
}
|