forked from containerd/cgroups
-
Notifications
You must be signed in to change notification settings - Fork 0
/
blkio_test.go
110 lines (93 loc) · 2.84 KB
/
blkio_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
/*
Copyright The containerd 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 cgroups
import (
"os"
"strings"
"testing"
v1 "github.com/containerd/cgroups/stats/v1"
)
const data = `major minor #blocks name
7 0 4 loop0
7 1 163456 loop1
7 2 149616 loop2
7 3 147684 loop3
7 4 122572 loop4
7 5 8936 loop5
7 6 31464 loop6
7 7 182432 loop7
259 0 937692504 nvme0n1
259 1 31744 nvme0n1p1
`
func TestGetDevices(t *testing.T) {
r := strings.NewReader(data)
devices, err := getDevices(r)
if err != nil {
t.Fatal(err)
}
for dev, expected := range map[deviceKey]string{
deviceKey{7, 0}: "/dev/loop0",
deviceKey{259, 0}: "/dev/nvme0n1",
deviceKey{259, 1}: "/dev/nvme0n1p1",
} {
name, ok := devices[dev]
if !ok {
t.Fatalf("no device found for %d:%d", dev.major, dev.minor)
}
if name != expected {
t.Fatalf("expected device name %q but received %q", expected, name)
}
}
}
func TestNewBlkio(t *testing.T) {
const root = "/test/folder"
const expected = "/test/folder/blkio"
const expectedProc = "/proc"
ctrl := NewBlkio(root)
if ctrl.root != expected {
t.Fatalf("expected cgroups root %q but received %q", expected, ctrl.root)
}
if ctrl.procRoot != expectedProc {
t.Fatalf("expected proc FS root %q but received %q", expectedProc, ctrl.procRoot)
}
}
func TestBlkioStat(t *testing.T) {
_, err := os.Stat("/sys/fs/cgroup/blkio")
if os.IsNotExist(err) {
t.Skip("failed to find /sys/fs/cgroup/blkio")
}
ctrl := NewBlkio("/sys/fs/cgroup")
var metrics v1.Metrics
err = ctrl.Stat("", &metrics)
if err != nil {
t.Fatalf("failed to call Stat: %v", err)
}
if len(metrics.Blkio.IoServicedRecursive) == 0 {
t.Fatalf("IoServicedRecursive must not be empty")
}
if len(metrics.Blkio.IoServiceBytesRecursive) == 0 {
t.Fatalf("IoServiceBytesRecursive must not be empty")
}
}
func TestNewBlkio_Proc(t *testing.T) {
const root = "/test/folder"
const expected = "/test/folder/blkio"
const expectedProc = "/test/proc"
ctrl := NewBlkio(root, ProcRoot(expectedProc))
if ctrl.root != expected {
t.Fatalf("expected cgroups root %q but received %q", expected, ctrl.root)
}
if ctrl.procRoot != expectedProc {
t.Fatalf("expected proc FS root %q but received %q", expectedProc, ctrl.procRoot)
}
}