-
Notifications
You must be signed in to change notification settings - Fork 456
/
container.go
485 lines (400 loc) · 17.1 KB
/
container.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
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
/*
Copyright 2017 The Kubernetes 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 validate
import (
"bufio"
"encoding/json"
"fmt"
"io/ioutil"
"os"
"path/filepath"
"strings"
"time"
"github.com/docker/docker/pkg/jsonlog"
"github.com/kubernetes-incubator/cri-tools/pkg/framework"
internalapi "k8s.io/kubernetes/pkg/kubelet/apis/cri"
runtimeapi "k8s.io/kubernetes/pkg/kubelet/apis/cri/v1alpha1/runtime"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
// streamType is the type of the stream.
type streamType string
const (
defaultStopContainerTimeout int64 = 60
defaultExecSyncTimeout int64 = 5
defaultLog string = "hello World"
stdoutType streamType = "stdout"
stderrType streamType = "stderr"
)
// logMessage is the internal log type.
type logMessage struct {
timestamp time.Time
stream streamType
log []byte
}
var _ = framework.KubeDescribe("Container", func() {
f := framework.NewDefaultCRIFramework()
var rc internalapi.RuntimeService
var ic internalapi.ImageManagerService
BeforeEach(func() {
rc = f.CRIClient.CRIRuntimeClient
ic = f.CRIClient.CRIImageClient
})
Context("runtime should support basic operations on container", func() {
var podID string
var podConfig *runtimeapi.PodSandboxConfig
BeforeEach(func() {
podID, podConfig = framework.CreatePodSandboxForContainer(rc)
})
AfterEach(func() {
By("stop PodSandbox")
rc.StopPodSandbox(podID)
By("delete PodSandbox")
rc.RemovePodSandbox(podID)
})
It("runtime should support creating container [Conformance]", func() {
By("test create a default container")
containerID := testCreateDefaultContainer(rc, ic, podID, podConfig)
By("test list container")
containers := listContainerForID(rc, containerID)
Expect(containerFound(containers, containerID)).To(BeTrue(), "Container should be created")
})
It("runtime should support starting container [Conformance]", func() {
By("create container")
containerID := framework.CreateDefaultContainer(rc, ic, podID, podConfig, "container-for-start-test-")
By("test start container")
testStartContainer(rc, containerID)
})
It("runtime should support stopping container [Conformance]", func() {
By("create container")
containerID := framework.CreateDefaultContainer(rc, ic, podID, podConfig, "container-for-stop-test-")
By("start container")
startContainer(rc, containerID)
By("test stop container")
testStopContainer(rc, containerID)
})
It("runtime should support removing container [Conformance]", func() {
By("create container")
containerID := framework.CreateDefaultContainer(rc, ic, podID, podConfig, "container-for-remove-test-")
By("test remove container")
removeContainer(rc, containerID)
containers := listContainerForID(rc, containerID)
Expect(containerFound(containers, containerID)).To(BeFalse(), "Container should be removed")
})
It("runtime should support execSync [Conformance]", func() {
By("create container")
containerID := framework.CreateDefaultContainer(rc, ic, podID, podConfig, "container-for-execSync-test-")
By("start container")
startContainer(rc, containerID)
By("test execSync")
cmd := []string{"echo", "hello"}
expectedLogMessage := []byte("hello" + "\n")
verifyExecSyncOutput(rc, containerID, cmd, expectedLogMessage)
})
})
Context("runtime should support adding volume and device [Conformance]", func() {
var podID string
var podConfig *runtimeapi.PodSandboxConfig
BeforeEach(func() {
podID, podConfig = framework.CreatePodSandboxForContainer(rc)
})
AfterEach(func() {
By("stop PodSandbox")
rc.StopPodSandbox(podID)
By("delete PodSandbox")
rc.RemovePodSandbox(podID)
})
It("runtime should support starting container with volume [Conformance]", func() {
By("create host path and flag file")
hostPath, _ := createHostPath(podID)
defer os.RemoveAll(hostPath) // clean up the TempDir
By("create container with volume")
containerID := createVolumeContainer(rc, ic, "container-with-volume-test-", podID, podConfig, hostPath)
By("test start container with volume")
testStartContainer(rc, containerID)
By("check whether 'hostPath' contains file or dir in container")
command := []string{"ls", "-A", hostPath}
output := execSyncContainer(rc, containerID, command)
Expect(len(output)).NotTo(BeZero(), "len(output) should not be zero.")
})
It("runtime should support starting container with volume when host path doesn't exist", func() {
// TODO: revisit this after https://github.com/kubernetes/kubernetes/issues/52318.
Skip("Skip the test since the behavior is not decided yet in CRI")
By("get a host path that doesn't exist")
hostPath, _ := createHostPath(podID)
os.RemoveAll(hostPath) // make sure the host path doesn't exist
defer os.RemoveAll(hostPath) // clean up the TempDir
By("create container with volume")
containerID := createVolumeContainer(rc, ic, "container-with-volume-test-", podID, podConfig, hostPath)
By("test start container with volume")
testStartContainer(rc, containerID)
By("check whether 'hostPath' does exist or not in host")
Eventually(func() bool {
return pathExists(hostPath)
}, time.Minute, time.Second*4).Should(Equal(true))
})
})
Context("runtime should support log", func() {
var podID, hostPath string
var podConfig *runtimeapi.PodSandboxConfig
BeforeEach(func() {
podID, podConfig, hostPath = createPodSandboxWithLogDirectory(rc)
})
AfterEach(func() {
By("stop PodSandbox")
rc.StopPodSandbox(podID)
By("delete PodSandbox")
rc.RemovePodSandbox(podID)
By("clean up the TempDir")
os.RemoveAll(hostPath)
})
It("runtime should support starting container with log [Conformance]", func() {
By("create container with log")
logPath, containerID := createLogContainer(rc, ic, "container-with-log-test-", podID, podConfig)
By("start container with log")
startContainer(rc, containerID)
// wait container exited and check the status.
Eventually(func() runtimeapi.ContainerState {
return getContainerStatus(rc, containerID).State
}, time.Minute, time.Second*4).Should(Equal(runtimeapi.ContainerState_CONTAINER_EXITED))
By("check the log context")
expectedLogMessage := &logMessage{
log: []byte(defaultLog + "\n"),
stream: stdoutType,
}
verifyLogContents(podConfig, logPath, expectedLogMessage)
})
})
})
// containerFound returns whether containers is found.
func containerFound(containers []*runtimeapi.Container, containerID string) bool {
for _, container := range containers {
if container.Id == containerID {
return true
}
}
return false
}
// getContainerStatus gets ContainerState for containerID and fails if it gets error.
func getContainerStatus(c internalapi.RuntimeService, containerID string) *runtimeapi.ContainerStatus {
By("Get container status for containerID: " + containerID)
status, err := c.ContainerStatus(containerID)
framework.ExpectNoError(err, "failed to get container %q status: %v", containerID, err)
return status
}
// createShellContainer creates a container to run /bin/sh.
func createShellContainer(rc internalapi.RuntimeService, ic internalapi.ImageManagerService, podID string, podConfig *runtimeapi.PodSandboxConfig, prefix string) string {
containerName := prefix + framework.NewUUID()
containerConfig := &runtimeapi.ContainerConfig{
Metadata: framework.BuildContainerMetadata(containerName, framework.DefaultAttempt),
Image: &runtimeapi.ImageSpec{Image: framework.DefaultContainerImage},
Command: []string{"/bin/sh"},
Linux: &runtimeapi.LinuxContainerConfig{},
Stdin: true,
StdinOnce: true,
Tty: false,
}
return framework.CreateContainer(rc, ic, containerConfig, podID, podConfig)
}
// testCreateDefaultContainer creates a container in the pod which ID is podID and make sure it's ready.
func testCreateDefaultContainer(rc internalapi.RuntimeService, ic internalapi.ImageManagerService, podID string, podConfig *runtimeapi.PodSandboxConfig) string {
containerID := framework.CreateDefaultContainer(rc, ic, podID, podConfig, "container-for-create-test-")
Eventually(func() runtimeapi.ContainerState {
return getContainerStatus(rc, containerID).State
}, time.Minute, time.Second*4).Should(Equal(runtimeapi.ContainerState_CONTAINER_CREATED))
return containerID
}
// startContainer start the container for containerID.
func startContainer(c internalapi.RuntimeService, containerID string) {
By("Start container for containerID: " + containerID)
err := c.StartContainer(containerID)
framework.ExpectNoError(err, "failed to start container: %v", err)
framework.Logf("Started container %q\n", containerID)
}
// testStartContainer starts the container for containerID and make sure it's running.
func testStartContainer(rc internalapi.RuntimeService, containerID string) {
startContainer(rc, containerID)
Eventually(func() runtimeapi.ContainerState {
return getContainerStatus(rc, containerID).State
}, time.Minute, time.Second*4).Should(Equal(runtimeapi.ContainerState_CONTAINER_RUNNING))
}
// stopContainer stops the container for containerID.
func stopContainer(c internalapi.RuntimeService, containerID string, timeout int64) {
By("Stop container for containerID: " + containerID)
stopped := make(chan bool, 1)
go func() {
defer GinkgoRecover()
err := c.StopContainer(containerID, timeout)
framework.ExpectNoError(err, "failed to stop container: %v", err)
stopped <- true
}()
select {
case <-time.After(time.Duration(timeout) * time.Second):
framework.Failf("stop container %q timeout.\n", containerID)
case <-stopped:
framework.Logf("Stopped container %q\n", containerID)
}
}
// testStopContainer stops the container for containerID and make sure it's exited.
func testStopContainer(c internalapi.RuntimeService, containerID string) {
stopContainer(c, containerID, defaultStopContainerTimeout)
Eventually(func() runtimeapi.ContainerState {
return getContainerStatus(c, containerID).State
}, time.Minute, time.Second*4).Should(Equal(runtimeapi.ContainerState_CONTAINER_EXITED))
}
// removeContainer removes the container for containerID.
func removeContainer(c internalapi.RuntimeService, containerID string) {
By("Remove container for containerID: " + containerID)
err := c.RemoveContainer(containerID)
framework.ExpectNoError(err, "failed to remove container: %v", err)
framework.Logf("Removed container %q\n", containerID)
}
// listContainerForID lists container for containerID.
func listContainerForID(c internalapi.RuntimeService, containerID string) []*runtimeapi.Container {
By("List containers for containerID: " + containerID)
filter := &runtimeapi.ContainerFilter{
Id: containerID,
}
containers, err := c.ListContainers(filter)
framework.ExpectNoError(err, "failed to list containers %q status: %v", containerID, err)
return containers
}
// execSyncContainer test execSync for containerID and make sure the response is right.
func execSyncContainer(c internalapi.RuntimeService, containerID string, command []string) []byte {
By("execSync for containerID: " + containerID)
stdout, stderr, err := c.ExecSync(containerID, command, time.Duration(defaultExecSyncTimeout)*time.Second)
framework.ExpectNoError(err, "failed to execSync in container %q", containerID)
Expect(stderr).To(BeNil(), "The stderr should be nil.")
framework.Logf("Execsync succeed")
return stdout
}
// execSyncContainer test execSync for containerID and make sure the response is right.
func verifyExecSyncOutput(c internalapi.RuntimeService, containerID string, command []string, expectedLogMessage []byte) {
By("verify execSync output")
stdout := execSyncContainer(c, containerID, command)
Expect(string(stdout)).To(Equal(string(expectedLogMessage)), "The stdout output of execSync should be %s", string(expectedLogMessage))
framework.Logf("verfiy Execsync output succeed")
}
// createHostPath creates the hostPath and flagFile for volume.
func createHostPath(podID string) (string, string) {
hostPath, err := ioutil.TempDir("", "/test"+podID)
framework.ExpectNoError(err, "failed to create TempDir %q: %v", hostPath, err)
flagFile := "testVolume.file"
_, err = os.Create(filepath.Join(hostPath, flagFile))
framework.ExpectNoError(err, "failed to create volume file %q: %v", flagFile, err)
return hostPath, flagFile
}
// createVolumeContainer creates a container with volume and the prefix of containerName and fails if it gets error.
func createVolumeContainer(rc internalapi.RuntimeService, ic internalapi.ImageManagerService, prefix string, podID string, podConfig *runtimeapi.PodSandboxConfig, hostPath string) string {
By("create a container with volume and name")
containerName := prefix + framework.NewUUID()
containerConfig := &runtimeapi.ContainerConfig{
Metadata: framework.BuildContainerMetadata(containerName, framework.DefaultAttempt),
Image: &runtimeapi.ImageSpec{Image: framework.DefaultContainerImage},
Command: []string{"sh", "-c", "top"},
// mount host path to the same directory in container, and will check if hostPath isn't empty
Mounts: []*runtimeapi.Mount{
{
HostPath: hostPath,
ContainerPath: hostPath,
},
},
}
return framework.CreateContainer(rc, ic, containerConfig, podID, podConfig)
}
// createLogContainer creates a container with log and the prefix of containerName.
func createLogContainer(rc internalapi.RuntimeService, ic internalapi.ImageManagerService, prefix string, podID string, podConfig *runtimeapi.PodSandboxConfig) (string, string) {
By("create a container with log and name")
containerName := prefix + framework.NewUUID()
path := fmt.Sprintf("%s.log", containerName)
containerConfig := &runtimeapi.ContainerConfig{
Metadata: framework.BuildContainerMetadata(containerName, framework.DefaultAttempt),
Image: &runtimeapi.ImageSpec{Image: framework.DefaultContainerImage},
Command: []string{"echo", defaultLog},
LogPath: path,
}
return containerConfig.LogPath, framework.CreateContainer(rc, ic, containerConfig, podID, podConfig)
}
// pathExists check whether 'path' does exist or not
func pathExists(path string) bool {
_, err := os.Stat(path)
if err == nil {
return true
}
if os.IsNotExist(err) {
return false
}
framework.ExpectNoError(err, "failed to check whether %q Exists: %v", path, err)
return false
}
// parseDockerJSONLog parses logs in Docker JSON log format.
// Docker JSON log format example:
// {"log":"content 1","stream":"stdout","time":"2016-10-20T18:39:20.57606443Z"}
// {"log":"content 2","stream":"stderr","time":"2016-10-20T18:39:20.57606444Z"}
func parseDockerJSONLog(log []byte, msg *logMessage) {
var l jsonlog.JSONLog
err := json.Unmarshal(log, &l)
framework.ExpectNoError(err, "failed with %v to unmarshal log %q", err, l)
msg.timestamp = l.Created
msg.stream = streamType(l.Stream)
msg.log = []byte(l.Log)
}
// parseCRILog parses logs in CRI log format.
// CRI log format example :
// 2016-10-06T00:17:09.669794202Z stdout P The content of the log entry 1
// 2016-10-06T00:17:10.113242941Z stderr F The content of the log entry 2
func parseCRILog(log string, msg *logMessage) {
timeStamp, err := time.Parse(time.RFC3339Nano, strings.Fields(log)[0])
framework.ExpectNoError(err, "failed to parse timeStamp: %v", err)
stream := strings.Fields(log)[1]
// Skip the tag field.
logMessage := strings.Fields(log)[3:]
msg.timestamp = timeStamp
msg.stream = streamType(stream)
msg.log = []byte(strings.Join(logMessage, " ") + "\n")
}
// parseLogLine parses log by row.
func parseLogLine(podConfig *runtimeapi.PodSandboxConfig, logPath string) []logMessage {
path := filepath.Join(podConfig.LogDirectory, logPath)
f, err := os.Open(path)
framework.ExpectNoError(err, "failed to open log file: %v", err)
framework.Logf("Open log file %s", path)
defer f.Close()
var msg logMessage
var msgLog []logMessage
scanner := bufio.NewScanner(f)
for scanner.Scan() {
line := scanner.Text()
// to determine whether the log is Docker format or CRI format.
if strings.HasPrefix(line, "{") {
parseDockerJSONLog([]byte(line), &msg)
} else {
parseCRILog(line, &msg)
}
msgLog = append(msgLog, msg)
}
if err := scanner.Err(); err != nil {
framework.ExpectNoError(err, "failed to read log by row: %v", err)
}
framework.Logf("Parse container log succeed")
return msgLog
}
// verifyLogContents verifies the contents of container log.
func verifyLogContents(podConfig *runtimeapi.PodSandboxConfig, logPath string, expectedLogMessage *logMessage) {
By("verify log contents")
log := parseLogLine(podConfig, logPath)
for _, msg := range log {
Expect(string(msg.log)).To(Equal(string(expectedLogMessage.log)), "Log should be %s", string(expectedLogMessage.log))
Expect(string(msg.stream)).To(Equal(string(expectedLogMessage.stream)), "Stream should be %s", string(expectedLogMessage.stream))
}
}