forked from AliyunContainerService/pouch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutil_api.go
348 lines (287 loc) · 8.86 KB
/
util_api.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
package main
import (
"bufio"
"encoding/json"
"io"
"io/ioutil"
"net"
"net/http"
"net/url"
"strconv"
"strings"
"time"
"github.com/alibaba/pouch/apis/types"
"github.com/alibaba/pouch/pkg/jsonstream"
"github.com/alibaba/pouch/test/request"
"github.com/go-check/check"
)
// CheckRespStatus checks the http.Response.Status is equal to status.
func CheckRespStatus(c *check.C, resp *http.Response, status int) {
if resp.StatusCode != status {
body, err := ioutil.ReadAll(resp.Body)
c.Assert(err, check.IsNil)
c.Assert(resp.StatusCode, check.Equals, status, check.Commentf("Response Body: %v", string(body)))
}
}
// CreateBusyboxContainerOk creates a busybox container with cmd and asserts OK.
//
// NOTE: If not specified, CMD executed in container is "top".
func CreateBusyboxContainerOk(c *check.C, cname string, cmd ...string) string {
if len(cmd) == 0 {
cmd = []string{"top"}
}
resp, err := CreateBusyboxContainer(cname, cmd...)
c.Assert(err, check.IsNil)
defer resp.Body.Close()
CheckRespStatus(c, resp, 201)
got := types.ContainerCreateResp{}
c.Assert(json.NewDecoder(resp.Body).Decode(&got), check.IsNil)
return got.ID
}
// CreateBusyboxContainer creates busybox with cmd.
func CreateBusyboxContainer(cname string, cmd ...string) (*http.Response, error) {
q := url.Values{}
q.Add("name", cname)
obj := map[string]interface{}{
"Image": busyboxImage,
"Cmd": cmd,
"HostConfig": map[string]interface{}{},
}
path := "/containers/create"
query := request.WithQuery(q)
body := request.WithJSONBody(obj)
return request.Post(path, query, body)
}
// CreateBusybox125Container creates busybox with cmd.
func CreateBusybox125Container(cname string, cmd ...string) (*http.Response, error) {
q := url.Values{}
q.Add("name", cname)
obj := map[string]interface{}{
"Image": busyboxImage125,
"Cmd": cmd,
"HostConfig": map[string]interface{}{},
}
path := "/containers/create"
query := request.WithQuery(q)
body := request.WithJSONBody(obj)
return request.Post(path, query, body)
}
// StartContainerOk starts the container and asserts success.
func StartContainerOk(c *check.C, cname string) {
resp, err := request.Post("/containers/" + cname + "/start")
c.Assert(err, check.IsNil)
defer resp.Body.Close()
CheckRespStatus(c, resp, 204)
}
// StopContainerOk stops the container and asserts success..
func StopContainerOk(c *check.C, cname string) {
resp, err := request.Post("/containers/" + cname + "/stop")
c.Assert(err, check.IsNil)
defer resp.Body.Close()
CheckRespStatus(c, resp, 204)
}
// CheckContainerStatus asserts the container status.
func CheckContainerStatus(c *check.C, cname string, state string) {
resp, err := request.Get("/containers/" + cname + "/json")
c.Assert(err, check.IsNil)
CheckRespStatus(c, resp, 200)
got := types.ContainerJSON{}
c.Assert(request.DecodeBody(&got, resp.Body), check.IsNil)
defer resp.Body.Close()
c.Assert(string(got.State.Status), check.Equals, state)
}
// CheckContainerRunning checks if container is running.
func CheckContainerRunning(c *check.C, cname string, isRunning bool) {
resp, err := request.Get("/containers/" + cname + "/json")
c.Assert(err, check.IsNil)
CheckRespStatus(c, resp, 200)
got := types.ContainerJSON{}
c.Assert(request.DecodeBody(&got, resp.Body), check.IsNil)
defer resp.Body.Close()
gotRunning := (string(got.State.Status) == "running")
c.Assert(gotRunning, check.Equals, isRunning)
}
// DelContainerForceOk forcely deletes the container and asserts success.
func DelContainerForceOk(c *check.C, cname string) {
resp, err := delContainerForce(cname)
c.Assert(err, check.IsNil)
defer resp.Body.Close()
CheckRespStatus(c, resp, 204)
}
func delContainerForce(cname string) (*http.Response, error) {
q := url.Values{}
q.Add("force", "true")
q.Add("v", "true")
return request.Delete("/containers/"+cname, request.WithQuery(q))
}
// PauseContainerOk pauses the container and asserts success..
func PauseContainerOk(c *check.C, cname string) {
resp, err := request.Post("/containers/" + cname + "/pause")
c.Assert(err, check.IsNil)
defer resp.Body.Close()
CheckRespStatus(c, resp, 204)
}
// UnpauseContainerOk unpauses the container and asserts success..
func UnpauseContainerOk(c *check.C, cname string) {
resp, err := request.Post("/containers/" + cname + "/unpause")
c.Assert(err, check.IsNil)
defer resp.Body.Close()
CheckRespStatus(c, resp, 204)
}
// DelContainerForceMultyTime forcely deletes the container multy times.
func DelContainerForceMultyTime(c *check.C, cname string) {
timeout := 1 * time.Minute
timer := time.NewTimer(timeout)
defer timer.Stop()
ticker := time.NewTicker(500 * time.Millisecond)
defer ticker.Stop()
for {
select {
case <-timer.C:
c.Logf("failed to force remove container(%s) in (%s), maybe impact other cases", cname, timeout)
return
case <-ticker.C:
resp, _ := delContainerForce(cname)
if resp != nil {
resp.Body.Close()
if resp.StatusCode == 204 || resp.StatusCode == 404 {
return
}
}
}
}
}
// DelImageForceOk forcely deletes the image and asserts success.
func DelImageForceOk(c *check.C, iname string) {
q := url.Values{}
q.Add("force", "true")
resp, err := request.Delete("/images/"+iname, request.WithQuery(q))
c.Assert(err, check.IsNil)
defer resp.Body.Close()
CheckRespStatus(c, resp, 204)
}
// CreateExecEchoOk exec process's environment with "echo" CMD.
func CreateExecEchoOk(c *check.C, cname string, echo string) string {
obj := map[string]interface{}{
"Cmd": []string{"echo", echo},
"Detach": true,
"AttachStderr": true,
"AttachStdout": true,
"AttachStdin": true,
"Privileged": false,
"User": "",
}
body := request.WithJSONBody(obj)
resp, err := request.Post("/containers/"+cname+"/exec", body)
c.Assert(err, check.IsNil)
CheckRespStatus(c, resp, 201)
var got types.ExecCreateResp
c.Assert(request.DecodeBody(&got, resp.Body), check.IsNil)
return got.ID
}
// StartContainerExec starts executing a process in the container.
func StartContainerExec(c *check.C, execid string, tty bool, detach bool) (*http.Response, net.Conn, *bufio.Reader, error) {
obj := map[string]interface{}{
"Detach": detach,
"Tty": tty,
}
return request.Hijack("/exec/"+execid+"/start",
request.WithHeader("Connection", "Upgrade"),
request.WithHeader("Upgrade", "tcp"),
request.WithJSONBody(obj))
}
// CreateVolumeOK creates a volume in pouchd.
func CreateVolumeOK(c *check.C, name, driver string, options map[string]string) {
obj := map[string]interface{}{
"Driver": driver,
"Name": name,
"DriverOpts": options,
}
path := "/volumes/create"
body := request.WithJSONBody(obj)
resp, err := request.Post(path, body)
c.Assert(err, check.IsNil)
defer resp.Body.Close()
CheckRespStatus(c, resp, 201)
}
// RemoveVolumeOK removes a volume in pouchd.
func RemoveVolumeOK(c *check.C, name string) {
path := "/volumes/" + name
resp, err := request.Delete(path)
c.Assert(err, check.IsNil)
defer resp.Body.Close()
CheckRespStatus(c, resp, 204)
}
// DelNetworkOk deletes the network and asserts success.
func DelNetworkOk(c *check.C, cname string) {
resp, err := request.Delete("/networks/" + cname)
c.Assert(err, check.IsNil)
defer resp.Body.Close()
CheckRespStatus(c, resp, 204)
}
// PullImage pull image if it doesn't exist, image format should be repo:tag.
func PullImage(c *check.C, image string) {
resp, err := request.Get("/images/" + image + "/json")
c.Assert(err, check.IsNil)
if resp.StatusCode == http.StatusOK {
resp.Body.Close()
return
}
q := url.Values{}
q.Add("fromImage", image)
resp, err = request.Post("/images/create", request.WithQuery(q))
c.Assert(err, check.IsNil)
defer resp.Body.Close()
c.Assert(resp.StatusCode, check.Equals, 200)
c.Assert(discardPullStatus(resp.Body), check.IsNil)
}
func discardPullStatus(r io.ReadCloser) error {
dec := json.NewDecoder(r)
for {
var msg jsonstream.JSONMessage
if err := dec.Decode(&msg); err != nil {
if err == io.EOF {
break
}
return err
}
if msg.Error != nil {
return msg.Error
}
}
return nil
}
// GetMetric get metrics from prometheus server, return total count and success count.
func GetMetric(c *check.C, key string, keySuccess string) (int, int) {
resp, err := request.Get("/metrics")
c.Assert(err, check.IsNil)
defer resp.Body.Close()
scanner := bufio.NewScanner(resp.Body)
value := ""
valueSuccess := ""
for scanner.Scan() {
line := scanner.Text()
if strings.Contains(line, key) {
kv := strings.Split(line, " ")
if len(kv) == 2 {
value = kv[1]
}
} else if strings.Contains(line, keySuccess) {
kv := strings.Split(line, " ")
if len(kv) == 2 {
valueSuccess = kv[1]
}
}
}
iCount := 0
if value != "" {
iCount, err = strconv.Atoi(value)
c.Assert(err, check.IsNil)
}
iCountSuccess := 0
if valueSuccess != "" {
iCountSuccess, err = strconv.Atoi(valueSuccess)
c.Assert(err, check.IsNil)
}
return iCount, iCountSuccess
}