shirou_gopsutil/host/host_test.go

68 lines
1.3 KiB
Go
Raw Normal View History

package gopsutil
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 TestHostInfo(t *testing.T) {
v, err := HostInfo()
2014-04-18 15:34:47 +08:00
if err != nil {
t.Errorf("error %v", err)
}
empty := &HostInfoStat{}
2014-05-12 10:51:08 +08:00
if v == empty {
t.Errorf("Could not get hostinfo %v", v)
}
}
func TestBoot_time(t *testing.T) {
v, err := BootTime()
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()
2014-04-22 16:38:47 +08:00
if err != nil {
t.Errorf("error %v", err)
}
empty := UserStat{}
2014-04-22 16:39:51 +08:00
for _, u := range v {
2014-05-12 10:51:08 +08:00
if u == empty {
2014-04-22 16:38:47 +08:00
t.Errorf("Could not Users %v", v)
}
}
}
2014-05-12 10:51:08 +08:00
func TestHostInfoStat_String(t *testing.T) {
v := HostInfoStat{
2014-05-12 10:51:08 +08:00
Hostname: "test",
Uptime: 3000,
Procs: 100,
2014-05-16 17:11:17 +08:00
OS: "linux",
Platform: "ubuntu",
2014-05-12 10:51:08 +08:00
}
e := `{"hostname":"test","uptime":3000,"procs":100,"os":"linux","platform":"ubuntu","platform_family":"","platform_version":"","virtualization_system":"","virtualization_role":""}`
2014-05-12 10:51:08 +08:00
if e != fmt.Sprintf("%v", v) {
t.Errorf("HostInfoStat string is invalid: %v", v)
}
}
func TestUserStat_String(t *testing.T) {
v := UserStat{
2014-05-12 10:51:08 +08:00
User: "user",
Terminal: "term",
Host: "host",
Started: 100,
}
e := `{"user":"user","terminal":"term","host":"host","started":100}`
if e != fmt.Sprintf("%v", v) {
t.Errorf("UserStat string is invalid: %v", v)
}
}