-
Notifications
You must be signed in to change notification settings - Fork 321
/
loadavg_test.go
93 lines (83 loc) · 2.14 KB
/
loadavg_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
// Copyright 2019 The Prometheus Authors
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package procfs
import (
"testing"
"github.com/google/go-cmp/cmp"
)
func TestLoadAvg(t *testing.T) {
fs, err := NewFS(procTestFixtures)
if err != nil {
t.Fatalf("failed to open procfs: %v", err)
}
loadavg, err := fs.LoadAvg()
if err != nil {
t.Fatalf("failed to get loadavg: %v", err)
}
if diff := cmp.Diff(0.02, loadavg.Load1); diff != "" {
t.Fatalf("unexpected LoadAvg Per a minute:\n%s", diff)
}
if diff := cmp.Diff(0.04, loadavg.Load5); diff != "" {
t.Fatalf("unexpected LoadAvg Per five minutes:\n%s", diff)
}
if diff := cmp.Diff(0.05, loadavg.Load15); diff != "" {
t.Fatalf("unexpected LoadAvg Per fifteen minutes:\n%s", diff)
}
}
func Test_parseLoad(t *testing.T) {
tests := []struct {
name string
s string
ok bool
loadavg *LoadAvg
}{
{
name: "empty",
ok: false,
},
{
name: "not enough fields",
s: `0.00 0.03`,
ok: false,
},
{
name: "invalid line",
s: `malformed line`,
ok: false,
},
{
name: "valid line",
s: `0.00 0.03 0.05 1/502 33634`,
ok: true,
loadavg: &LoadAvg{Load1: 0, Load5: 0.03, Load15: 0.05},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
loadavg, err := parseLoad([]byte(tt.s))
if err != nil {
if tt.ok {
t.Fatalf("failed to parse loadavg: %v", err)
}
t.Logf("OK error: %v", err)
return
}
if !tt.ok {
t.Fatal("expected an error, but none occurred")
}
if diff := cmp.Diff(tt.loadavg, loadavg); diff != "" {
t.Errorf("unexpected loadavg(-want +got):\n%s", diff)
}
})
}
}