-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathhost_query_test.go
126 lines (119 loc) · 2.4 KB
/
host_query_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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
package psutilsql
import (
"os"
"runtime"
"testing"
"github.com/noborus/trdsql"
)
func TestHostInfoReader(t *testing.T) {
tests := []struct {
name string
wantErr bool
}{
{
name: "test1",
wantErr: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
_, err := HostInfoReader()
if (err != nil) != tt.wantErr {
t.Errorf("HostInfoReader() error = %v, wantErr %v", err, tt.wantErr)
return
}
})
}
}
func TestHostUsersReader(t *testing.T) {
if utmpSkip() {
t.Skip("skipping tests that use utmp")
}
tests := []struct {
name string
wantErr bool
}{
{
name: "test1",
wantErr: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
_, err := HostUsersReader()
if (err != nil) != tt.wantErr {
t.Errorf("HostUsersReader() error = %v, wantErr %v", err, tt.wantErr)
return
}
})
}
}
func TestHostTemperatureReader(t *testing.T) {
if runtime.GOOS != "linux" {
t.Skip("skipping specific test")
}
tests := []struct {
name string
wantErr bool
}{
{
name: "test1",
wantErr: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
_, err := HostTemperatureReader()
if (err != nil) != tt.wantErr {
t.Errorf("HostTemperatureReader() error = %v, wantErr %v", err, tt.wantErr)
return
}
})
}
}
func TestHostQuery(t *testing.T) {
type args struct {
tempera bool
users bool
query string
w trdsql.Writer
}
tests := []struct {
name string
args args
wantErr bool
}{
{
name: "testInfo",
args: args{tempera: false, users: false, w: nullWriter()},
wantErr: false,
},
{
name: "testUsers",
args: args{tempera: false, users: true, w: nullWriter()},
wantErr: false,
},
{
name: "testTempera",
args: args{tempera: true, users: false, w: nullWriter()},
wantErr: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if tt.name == "testTempera" && runtime.GOOS != "linux" {
t.Skip("skipping specific test")
}
if utmpSkip() {
t.Skip("skipping tests that use utmp")
}
if err := HostQuery(tt.args.tempera, tt.args.users, tt.args.query, tt.args.w); (err != nil) != tt.wantErr {
t.Errorf("HostQuery() error = %v, wantErr %v", err, tt.wantErr)
}
})
}
}
func utmpSkip() bool {
_, err := os.Stat("/var/run/utmp")
return os.IsNotExist(err)
}