shirou_gopsutil/load/load_test.go

55 lines
899 B
Go
Raw Normal View History

2014-12-30 21:09:05 +08:00
package load
2014-04-18 15:34:47 +08:00
import (
2014-05-12 10:51:08 +08:00
"fmt"
2014-04-18 15:34:47 +08:00
"testing"
)
func TestLoad(t *testing.T) {
v, err := Avg()
2014-04-18 15:34:47 +08:00
if err != nil {
t.Errorf("error %v", err)
}
empty := &AvgStat{}
2014-05-12 10:51:08 +08:00
if v == empty {
2014-04-18 15:34:47 +08:00
t.Errorf("error load: %v", v)
}
}
2014-05-12 10:51:08 +08:00
func TestLoadAvgStat_String(t *testing.T) {
v := AvgStat{
2014-05-12 10:51:08 +08:00
Load1: 10.1,
Load5: 20.1,
Load15: 30.1,
}
e := `{"load1":10.1,"load5":20.1,"load15":30.1}`
if e != fmt.Sprintf("%v", v) {
t.Errorf("LoadAvgStat string is invalid: %v", v)
}
}
func TestMisc(t *testing.T) {
v, err := Misc()
if err != nil {
t.Errorf("error %v", err)
}
empty := &MiscStat{}
if v == empty {
t.Errorf("error load: %v", v)
}
}
func TestMiscStatString(t *testing.T) {
v := MiscStat{
ProcsRunning: 1,
ProcsBlocked: 2,
Ctxt: 3,
}
e := `{"procsRunning":1,"procsBlocked":2,"ctxt":3}`
if e != fmt.Sprintf("%v", v) {
t.Errorf("TestMiscString string is invalid: %v", v)
}
}