1
0
mirror of https://github.com/shirou/gopsutil.git synced 2025-04-26 13:48:59 +08:00
shirou_gopsutil/cpu/cpu_test.go

104 lines
2.2 KiB
Go
Raw Normal View History

2014-12-30 22:09:05 +09:00
package cpu
2014-04-18 16:34:47 +09:00
import (
2014-05-12 11:51:08 +09:00
"fmt"
"os"
2014-11-02 04:05:52 +01:00
"runtime"
2014-04-18 16:34:47 +09:00
"testing"
2014-11-02 04:05:52 +01:00
"time"
2014-04-18 16:34:47 +09:00
)
func TestCpu_times(t *testing.T) {
v, err := CPUTimes(false)
2014-04-18 16:34:47 +09:00
if err != nil {
t.Errorf("error %v", err)
}
if len(v) == 0 {
t.Error("could not get CPUs ", err)
2014-04-18 16:34:47 +09:00
}
empty := CPUTimesStat{}
2014-04-18 16:34:47 +09:00
for _, vv := range v {
2014-05-12 11:51:08 +09:00
if vv == empty {
2014-04-18 16:34:47 +09:00
t.Errorf("could not get CPU User: %v", vv)
}
}
}
func TestCpu_counts(t *testing.T) {
v, err := CPUCounts(true)
2014-04-18 16:34:47 +09:00
if err != nil {
t.Errorf("error %v", err)
}
if v == 0 {
t.Errorf("could not get CPU counts: %v", v)
}
}
2014-05-12 11:51:08 +09:00
func TestCPUTimeStat_String(t *testing.T) {
v := CPUTimesStat{
2014-05-12 11:51:08 +09:00
CPU: "cpu0",
User: 100.1,
System: 200.1,
Idle: 300.1,
}
e := `{"cpu":"cpu0","user":100.1,"system":200.1,"idle":300.1,"nice":0.0,"iowait":0.0,"irq":0.0,"softirq":0.0,"steal":0.0,"guest":0.0,"guest_nice":0.0,"stolen":0.0}`
2014-05-12 11:51:08 +09:00
if e != fmt.Sprintf("%v", v) {
t.Errorf("CPUTimesStat string is invalid: %v", v)
}
}
2014-05-16 18:12:18 +09:00
func TestCpuInfo(t *testing.T) {
v, err := CPUInfo()
2014-05-16 18:12:18 +09:00
if err != nil {
t.Errorf("error %v", err)
}
if len(v) == 0 {
t.Errorf("could not get CPU Info")
}
2014-05-16 18:12:18 +09:00
for _, vv := range v {
2014-05-16 18:39:17 +09:00
if vv.ModelName == "" {
2014-05-16 18:12:18 +09:00
t.Errorf("could not get CPU Info: %v", vv)
}
}
}
2014-11-02 04:05:52 +01:00
func testCPUPercent(t *testing.T, percpu bool) {
numcpu := runtime.NumCPU()
testCount := 3
if runtime.GOOS != "windows" {
testCount = 100
v, err := CPUPercent(time.Millisecond, percpu)
if err != nil {
t.Errorf("error %v", err)
}
// Skip CircleCI which CPU num is different
if os.Getenv("CIRCLECI") != "true" {
if (percpu && len(v) != numcpu) || (!percpu && len(v) != 1) {
t.Fatalf("wrong number of entries from CPUPercent: %v", v)
}
}
2014-11-02 04:05:52 +01:00
}
for i := 0; i < testCount; i++ {
duration := time.Duration(10) * time.Microsecond
v, err := CPUPercent(duration, percpu)
2014-11-02 04:05:52 +01:00
if err != nil {
t.Errorf("error %v", err)
}
for _, percent := range v {
// Check for slightly greater then 100% to account for any rounding issues.
if percent < 0.0 || percent > 100.0001*float64(numcpu) {
2014-11-02 04:05:52 +01:00
t.Fatalf("CPUPercent value is invalid: %f", percent)
}
}
}
}
func TestCPUPercent(t *testing.T) {
testCPUPercent(t, false)
}
func TestCPUPercentPerCpu(t *testing.T) {
testCPUPercent(t, true)
}