shirou_gopsutil/host_test.go

38 lines
569 B
Go
Raw Normal View History

2014-04-22 08:44:22 +08:00
package gopsutil
2014-04-18 15:34:47 +08:00
import (
"testing"
)
func TestHostInfo(t *testing.T) {
v, err := HostInfo()
2014-04-18 15:34:47 +08:00
if err != nil {
t.Errorf("error %v", err)
}
if v.Hostname == "" {
t.Errorf("Could not get hostinfo %v", v)
}
}
func TestBoot_time(t *testing.T) {
v, err := Boot_time()
if err != nil {
t.Errorf("error %v", err)
}
if v == 0 {
t.Errorf("Could not boot time %v", v)
2014-04-18 15:34:47 +08:00
}
}
2014-04-22 16:38:47 +08:00
func TestUsers(t *testing.T) {
v, err := Users()
if err != nil {
t.Errorf("error %v", err)
}
2014-04-22 16:39:51 +08:00
for _, u := range v {
if u.User == "" {
2014-04-22 16:38:47 +08:00
t.Errorf("Could not Users %v", v)
}
}
}