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

117 lines
2.3 KiB
Go
Raw Normal View History

2014-12-30 22:09:05 +09:00
package host
2014-04-18 16:34:47 +09:00
import (
2014-05-12 11:51:08 +09:00
"fmt"
2014-04-18 16:34:47 +09:00
"testing"
)
func TestHostInfo(t *testing.T) {
v, err := Info()
2014-04-18 16:34:47 +09:00
if err != nil {
t.Errorf("error %v", err)
}
empty := &InfoStat{}
2014-05-12 11:51:08 +09:00
if v == empty {
t.Errorf("Could not get hostinfo %v", v)
}
if v.Procs == 0 {
t.Errorf("Could not determine the number of host processes")
}
}
func TestUptime(t *testing.T) {
v, err := Uptime()
if err != nil {
t.Errorf("error %v", err)
}
if v == 0 {
t.Errorf("Could not get up time %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 get boot time %v", v)
2014-04-18 16:34:47 +09:00
}
if v < 946652400 {
t.Errorf("Invalid Boottime, older than 2000-01-01")
}
v2, err := BootTime()
if v != v2 {
t.Errorf("cached boot time is different")
}
2014-04-18 16:34:47 +09:00
}
2014-04-22 17:38:47 +09:00
func TestUsers(t *testing.T) {
v, err := Users()
2014-04-22 17:38:47 +09:00
if err != nil {
t.Errorf("error %v", err)
}
empty := UserStat{}
2016-04-23 23:43:00 +09:00
if len(v) == 0 {
t.Errorf("Users is empty")
}
2014-04-22 17:39:51 +09:00
for _, u := range v {
2014-05-12 11:51:08 +09:00
if u == empty {
2014-04-22 17:38:47 +09:00
t.Errorf("Could not Users %v", v)
}
}
}
2014-05-12 11:51:08 +09:00
func TestHostInfoStat_String(t *testing.T) {
v := InfoStat{
2014-05-12 11:51:08 +09:00
Hostname: "test",
Uptime: 3000,
Procs: 100,
2014-05-16 18:11:17 +09:00
OS: "linux",
Platform: "ubuntu",
2015-11-24 09:30:17 +09:00
BootTime: 1447040000,
HostID: "edfd25ff-3c9c-b1a4-e660-bd826495ad35",
2014-05-12 11:51:08 +09:00
}
e := `{"hostname":"test","uptime":3000,"bootTime":1447040000,"procs":100,"os":"linux","platform":"ubuntu","platformFamily":"","platformVersion":"","kernelVersion":"","virtualizationSystem":"","virtualizationRole":"","hostid":"edfd25ff-3c9c-b1a4-e660-bd826495ad35"}`
2014-05-12 11:51:08 +09: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 11:51:08 +09: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)
}
}
func TestHostGuid(t *testing.T) {
2017-03-03 22:35:18 +09:00
hi, err := Info()
if err != nil {
t.Error(err)
}
if hi.HostID == "" {
t.Error("Host id is empty")
} else {
t.Logf("Host id value: %v", hi.HostID)
}
}
func TestTemperatureStat_String(t *testing.T) {
v := TemperatureStat{
SensorKey: "CPU",
Temperature: 1.1,
}
s := `{"sensorKey":"CPU","sensorTemperature":1.1}`
if s != fmt.Sprintf("%v", v) {
t.Errorf("TemperatureStat string is invalid")
}
}