-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathinfo_test.go
74 lines (64 loc) · 1.1 KB
/
info_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/**
* Created with IntelliJ IDEA.
* User: zhangye
* Date: 13-8-8
* Time: 下午3:53
* To change this template use File | Settings | File Templates.
*/
package info
import (
f "fmt"
"testing"
)
var agent = DefaultAgent
func TestHostName(t *testing.T) {
h, err := agent.HostName()
if err != nil {
t.Error(err)
}
f.Println(h)
}
func TestPcpu(t *testing.T) {
pcpu, err := agent.Pcpu()
if err != nil {
t.Error(err)
}
for k, v := range pcpu {
if k == 0 {
f.Printf("cpu ALL:\n%s\n", v)
} else {
f.Printf("cpu %d:\n%s\n", k-1, v)
}
}
}
func TestLoadavg(t *testing.T) {
loadavg, err := agent.Loadavg()
if err != nil {
t.Error(err)
}
f.Println(loadavg)
}
func TestFree(t *testing.T) {
free, err := agent.Free()
if err != nil {
t.Error(err)
}
f.Println(free)
}
func TestHddtemp(t *testing.T) {
hddtemp, err := agent.HddTemp()
if err != nil {
t.Error(err)
}
f.Println(hddtemp)
}
func TestTraffic(t *testing.T) {
traffic, err := agent.Traffic()
if err != nil {
t.Error(err)
}
f.Println(traffic)
}
func TestAgentSystem(t *testing.T) {
f.Println("%s\n", agent.System())
}