forked from google/cadvisor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanager_test.go
374 lines (321 loc) · 10.4 KB
/
manager_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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
// Copyright 2014 Google Inc. All Rights Reserved.
//
// 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.
// Per-container manager.
package manager
import (
"fmt"
"reflect"
"strings"
"testing"
"time"
"net/http"
"github.com/google/cadvisor/cache/memory"
"github.com/google/cadvisor/collector"
"github.com/google/cadvisor/container"
"github.com/google/cadvisor/container/docker"
containertest "github.com/google/cadvisor/container/testing"
info "github.com/google/cadvisor/info/v1"
itest "github.com/google/cadvisor/info/v1/test"
"github.com/google/cadvisor/info/v2"
"github.com/google/cadvisor/utils/sysfs/fakesysfs"
"github.com/stretchr/testify/assert"
clock "k8s.io/utils/clock/testing"
)
// TODO(vmarmol): Refactor these tests.
func createManagerAndAddContainers(
memoryCache *memory.InMemoryCache,
sysfs *fakesysfs.FakeSysFs,
containers []string,
f func(*containertest.MockContainerHandler),
t *testing.T,
) *manager {
container.ClearContainerHandlerFactories()
mif := &manager{
containers: make(map[namespacedContainerName]*containerData),
quitChannels: make([]chan error, 0, 2),
memoryCache: memoryCache,
}
for _, name := range containers {
mockHandler := containertest.NewMockContainerHandler(name)
spec := itest.GenerateRandomContainerSpec(4)
mockHandler.On("GetSpec").Return(
spec,
nil,
).Once()
cont, err := newContainerData(name, memoryCache, mockHandler, false, &collector.GenericCollectorManager{}, 60*time.Second, true, clock.NewFakeClock(time.Now()))
if err != nil {
t.Fatal(err)
}
mif.containers[namespacedContainerName{
Name: name,
}] = cont
// Add Docker containers under their namespace.
if strings.HasPrefix(name, "/docker") {
mif.containers[namespacedContainerName{
Namespace: docker.DockerNamespace,
Name: strings.TrimPrefix(name, "/docker/"),
}] = cont
}
f(mockHandler)
}
return mif
}
// Expect a manager with the specified containers and query. Returns the manager, map of ContainerInfo objects,
// and map of MockContainerHandler objects.}
func expectManagerWithContainers(containers []string, query *info.ContainerInfoRequest, t *testing.T) (*manager, map[string]*info.ContainerInfo, map[string]*containertest.MockContainerHandler) {
infosMap := make(map[string]*info.ContainerInfo, len(containers))
handlerMap := make(map[string]*containertest.MockContainerHandler, len(containers))
for _, container := range containers {
infosMap[container] = itest.GenerateRandomContainerInfo(container, 4, query, 1*time.Second)
}
memoryCache := memory.New(time.Duration(query.NumStats)*time.Second, nil)
sysfs := &fakesysfs.FakeSysFs{}
m := createManagerAndAddContainers(
memoryCache,
sysfs,
containers,
func(h *containertest.MockContainerHandler) {
cinfo := infosMap[h.Name]
ref, err := h.ContainerReference()
if err != nil {
t.Error(err)
}
cInfo := info.ContainerInfo{
ContainerReference: ref,
}
for _, stat := range cinfo.Stats {
err = memoryCache.AddStats(&cInfo, stat)
if err != nil {
t.Error(err)
}
}
spec := cinfo.Spec
h.On("ListContainers", container.ListSelf).Return(
[]info.ContainerReference(nil),
nil,
)
h.On("GetSpec").Return(
spec,
nil,
).Once()
handlerMap[h.Name] = h
},
t,
)
return m, infosMap, handlerMap
}
// Expect a manager with the specified containers and query. Returns the manager, map of ContainerInfo objects,
// and map of MockContainerHandler objects.}
func expectManagerWithContainersV2(containers []string, query *info.ContainerInfoRequest, t *testing.T) (*manager, map[string]*info.ContainerInfo, map[string]*containertest.MockContainerHandler) {
infosMap := make(map[string]*info.ContainerInfo, len(containers))
handlerMap := make(map[string]*containertest.MockContainerHandler, len(containers))
for _, container := range containers {
infosMap[container] = itest.GenerateRandomContainerInfo(container, 4, query, 1*time.Second)
}
memoryCache := memory.New(time.Duration(query.NumStats)*time.Second, nil)
sysfs := &fakesysfs.FakeSysFs{}
m := createManagerAndAddContainers(
memoryCache,
sysfs,
containers,
func(h *containertest.MockContainerHandler) {
cinfo := infosMap[h.Name]
ref, err := h.ContainerReference()
if err != nil {
t.Error(err)
}
cInfo := info.ContainerInfo{
ContainerReference: ref,
}
for _, stat := range cinfo.Stats {
err = memoryCache.AddStats(&cInfo, stat)
if err != nil {
t.Error(err)
}
}
spec := cinfo.Spec
h.On("GetSpec").Return(
spec,
nil,
).Once()
handlerMap[h.Name] = h
},
t,
)
return m, infosMap, handlerMap
}
func TestGetContainerInfo(t *testing.T) {
containers := []string{
"/c1",
"/c2",
}
query := &info.ContainerInfoRequest{
NumStats: 256,
}
m, infosMap, handlerMap := expectManagerWithContainers(containers, query, t)
returnedInfos := make(map[string]*info.ContainerInfo, len(containers))
for _, container := range containers {
cinfo, err := m.GetContainerInfo(container, query)
if err != nil {
t.Fatalf("Unable to get info for container %v: %v", container, err)
}
returnedInfos[container] = cinfo
}
for container, handler := range handlerMap {
handler.AssertExpectations(t)
returned := returnedInfos[container]
expected := infosMap[container]
if !reflect.DeepEqual(returned, expected) {
t.Errorf("returned unexpected info for container %v; returned %+v; expected %+v", container, returned, expected)
}
}
}
func TestGetContainerInfoV2(t *testing.T) {
containers := []string{
"/",
"/c1",
"/c2",
}
options := v2.RequestOptions{
IdType: v2.TypeName,
Count: 1,
Recursive: true,
}
query := &info.ContainerInfoRequest{
NumStats: 2,
}
m, _, handlerMap := expectManagerWithContainersV2(containers, query, t)
infos, err := m.GetContainerInfoV2("/", options)
if err != nil {
t.Fatalf("GetContainerInfoV2 failed: %v", err)
}
for container, handler := range handlerMap {
handler.AssertExpectations(t)
info, ok := infos[container]
assert.True(t, ok, "Missing info for container %q", container)
assert.NotEqual(t, v2.ContainerSpec{}, info.Spec, "Empty spec for container %q", container)
assert.NotEmpty(t, info.Stats, "Missing stats for container %q", container)
}
}
func TestGetContainerInfoV2Failure(t *testing.T) {
successful := "/"
statless := "/c1"
failing := "/c2"
containers := []string{
successful, statless, failing,
}
options := v2.RequestOptions{
IdType: v2.TypeName,
Count: 1,
Recursive: true,
}
query := &info.ContainerInfoRequest{
NumStats: 2,
}
m, _, handlerMap := expectManagerWithContainers(containers, query, t)
// Remove /c1 stats
err := m.memoryCache.RemoveContainer(statless)
if err != nil {
t.Fatalf("RemoveContainer failed: %v", err)
}
// Make GetSpec fail on /c2
mockErr := fmt.Errorf("intentional GetSpec failure")
handlerMap[failing].GetSpec() // Use up default GetSpec call, and replace below
handlerMap[failing].On("GetSpec").Return(info.ContainerSpec{}, mockErr)
handlerMap[failing].On("Exists").Return(true)
m.containers[namespacedContainerName{Name: failing}].infoLastUpdatedTime = time.Time{} // Force GetSpec.
infos, err := m.GetContainerInfoV2("/", options)
if err == nil {
t.Error("Expected error calling GetContainerInfoV2")
}
// Successful containers still successful.
info, ok := infos[successful]
assert.True(t, ok, "Missing info for container %q", successful)
assert.NotEqual(t, v2.ContainerSpec{}, info.Spec, "Empty spec for container %q", successful)
assert.NotEmpty(t, info.Stats, "Missing stats for container %q", successful)
// "/c1" present with spec.
info, ok = infos[statless]
assert.True(t, ok, "Missing info for container %q", statless)
assert.NotEqual(t, v2.ContainerSpec{}, info.Spec, "Empty spec for container %q", statless)
assert.Empty(t, info.Stats, "Missing stats for container %q", successful)
// "/c2" should be present but empty.
info, ok = infos[failing]
assert.True(t, ok, "Missing info for failed container")
assert.Equal(t, v2.ContainerInfo{}, info, "Empty spec for failed container")
assert.Empty(t, info.Stats, "Missing stats for failed container")
}
func TestSubcontainersInfo(t *testing.T) {
containers := []string{
"/c1",
"/c2",
}
query := &info.ContainerInfoRequest{
NumStats: 64,
}
m, _, _ := expectManagerWithContainers(containers, query, t)
result, err := m.SubcontainersInfo("/", query)
if err != nil {
t.Fatalf("expected to succeed: %s", err)
}
if len(result) != len(containers) {
t.Errorf("expected to received containers: %v, but received: %v", containers, result)
}
for _, res := range result {
found := false
for _, name := range containers {
if res.Name == name {
found = true
break
}
}
if !found {
t.Errorf("unexpected container %q in result, expected one of %v", res.Name, containers)
}
}
}
func TestDockerContainersInfo(t *testing.T) {
containers := []string{
"/docker/c1a",
"/docker/c2a",
}
query := &info.ContainerInfoRequest{
NumStats: 2,
}
m, _, _ := expectManagerWithContainers(containers, query, t)
result, err := m.DockerContainer("c1a", query)
if err != nil {
t.Fatalf("expected to succeed: %s", err)
}
if result.Name != containers[0] {
t.Errorf("Unexpected container %q in result. Expected container %q", result.Name, containers[0])
}
result, err = m.DockerContainer("c2", query)
if err != nil {
t.Fatalf("expected to succeed: %s", err)
}
if result.Name != containers[1] {
t.Errorf("Unexpected container %q in result. Expected container %q", result.Name, containers[1])
}
result, err = m.DockerContainer("c", query)
expectedError := "unable to find container. Container \"c\" is not unique"
if err == nil {
t.Errorf("expected error %q but received %q", expectedError, err)
}
}
func TestNewNilManager(t *testing.T) {
_, err := New(nil, nil, 60*time.Second, true, container.MetricSet{}, http.DefaultClient, []string{"/"})
if err == nil {
t.Fatalf("Expected nil manager to return error")
}
}