-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathprocess_test.go
More file actions
434 lines (392 loc) · 11.1 KB
/
Copy pathprocess_test.go
File metadata and controls
434 lines (392 loc) · 11.1 KB
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
package garden_integration_tests_test
import (
"fmt"
"runtime"
"runtime/debug"
"time"
"code.cloudfoundry.org/garden"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
"github.com/onsi/gomega/gbytes"
)
var _ = Describe("Process", func() {
Describe("signalling", func() {
BeforeEach(func() {
if runtime.GOOS == "windows" {
Skip("pending for windows")
}
})
It("a process can be sent SIGTERM immediately after having been started", func() {
stdout := gbytes.NewBuffer()
process, err := container.Run(garden.ProcessSpec{
User: "root",
Path: "sh",
Args: []string{
"-c",
`
/bin/sleep 10
exit 12
`,
},
}, garden.ProcessIO{
Stdout: stdout,
})
Expect(err).ToNot(HaveOccurred())
err = process.Signal(garden.SignalTerminate)
Expect(err).ToNot(HaveOccurred())
Expect(process.Wait()).NotTo(Equal(12))
})
})
Describe("when we try to create a container process with bind mounts", func() {
It("should return an error", func() {
stdout := gbytes.NewBuffer()
_, err := container.Run(garden.ProcessSpec{
User: "root",
Path: "whoami",
Args: []string{},
BindMounts: []garden.BindMount{
garden.BindMount{
SrcPath: "src",
DstPath: "dst",
},
},
}, garden.ProcessIO{
Stdout: stdout,
})
Expect(err).To(HaveOccurred())
})
})
Describe("process ID", func() {
It("return a process containing the ID passed in the process spec", func() {
var spec garden.ProcessSpec
if runtime.GOOS == "windows" {
spec = garden.ProcessSpec{
ID: "some-id",
Path: "whoami",
}
} else {
spec = garden.ProcessSpec{
ID: "some-id",
Path: "/bin/true",
}
}
process, err := container.Run(spec, garden.ProcessIO{})
Expect(err).ToNot(HaveOccurred())
Expect(process.ID()).To(Equal("some-id"))
})
Context("when two processes with the same ID are running", func() {
var processID string
JustBeforeEach(func() {
processID = "same-id"
var spec garden.ProcessSpec
if runtime.GOOS == "windows" {
spec = garden.ProcessSpec{
ID: processID,
Path: "cmd.exe",
Args: []string{"/C", "waitfor five_sec /T 5 & exit /b 0"},
}
} else {
spec = garden.ProcessSpec{
ID: processID,
Path: "/bin/sleep",
Args: []string{"5"},
}
}
_, err := container.Run(spec, garden.ProcessIO{})
Expect(err).ToNot(HaveOccurred())
})
It("the second process with the same id should explode", func() {
var spec garden.ProcessSpec
if runtime.GOOS == "windows" {
spec = garden.ProcessSpec{
ID: processID,
Path: "whoami",
}
} else {
spec = garden.ProcessSpec{
ID: processID,
Path: "/bin/true",
}
}
_, err := container.Run(spec, garden.ProcessIO{})
Expect(err).To(MatchError(MatchRegexp(`already (in use|exists)`)))
})
})
})
Describe("environment", func() {
It("should apply the specified environment", func() {
var spec garden.ProcessSpec
if runtime.GOOS == "windows" {
spec = garden.ProcessSpec{
Path: "cmd.exe",
Args: []string{"/C", "set"},
Env: []string{
"TEST=hello",
"FRUIT=banana",
},
}
exitCode, stdout, _ := runProcess(container, spec)
Expect(exitCode).To(Equal(0))
Expect(stdout.Contents()).To(ContainSubstring("TEST=hello\r\n"))
Expect(stdout.Contents()).To(ContainSubstring("FRUIT=banana\r\n"))
} else {
spec = garden.ProcessSpec{
Path: "env",
Env: []string{
"TEST=hello",
"FRUIT=banana",
},
}
exitCode, stdout, _ := runProcess(container, spec)
Expect(exitCode).To(Equal(0))
Expect(stdout).To(gbytes.Say("TEST=hello\nFRUIT=banana"))
}
})
Context("when the container has container spec environment specified", func() {
BeforeEach(func() {
env = []string{
"CONTAINER_ENV=1",
"TEST=hi",
}
})
It("should apply the merged environment variables", func() {
if runtime.GOOS == "windows" {
exitCode, stdout, _ := runProcess(container, garden.ProcessSpec{
Path: "cmd.exe",
Args: []string{"/C", "set"},
Env: []string{
"TEST=hello",
"FRUIT=banana",
},
})
Expect(exitCode).To(Equal(0))
Expect(stdout.Contents()).To(ContainSubstring("CONTAINER_ENV=1\r\n"))
Expect(stdout.Contents()).To(ContainSubstring("TEST=hello\r\n"))
Expect(stdout.Contents()).To(ContainSubstring("FRUIT=banana\r\n"))
} else {
exitCode, stdout, _ := runProcess(container, garden.ProcessSpec{
Path: "env",
Env: []string{
"TEST=hello",
"FRUIT=banana",
},
})
Expect(exitCode).To(Equal(0))
Expect(stdout).To(gbytes.Say("CONTAINER_ENV=1\nTEST=hello\nFRUIT=banana"))
}
})
})
})
Describe("wait", func() {
BeforeEach(func() {
if runtime.GOOS == "windows" {
Skip("pending for windows")
}
})
It("does not block in Wait() when all children of the process have exited", func() {
stderr := gbytes.NewBuffer()
process, err := container.Run(garden.ProcessSpec{
User: "root",
Path: "/bin/sh",
Args: []string{"-c", `
cleanup ()
{
ps -a >&2
kill $child_pid
exit 42
}
trap cleanup TERM
set -x
/bin/sleep 1000 &
child_pid=$!
# Make sure that sleep process has been forked before trapping
while [ ! $(ps -o comm | grep sleep) ] ;do : ; done
# Use stderr to avoid buffering in the shell.
echo trapping >&2
wait
`},
}, garden.ProcessIO{Stderr: stderr})
Expect(err).NotTo(HaveOccurred())
exitChan := make(chan int)
go func(p garden.Process, exited chan<- int) {
defer GinkgoRecover()
status, waitErr := p.Wait()
Expect(waitErr).NotTo(HaveOccurred())
exited <- status
}(process, exitChan)
Eventually(stderr).Should(gbytes.Say("trapping"))
Expect(process.Signal(garden.SignalTerminate)).To(Succeed())
select {
case status := <-exitChan:
Expect(status).To(Equal(42))
case <-time.After(time.Second * 20):
debug.PrintStack()
Expect(err).NotTo(HaveOccurred())
fmt.Printf("Process Stderr: %s", string(stderr.Contents()))
Fail("timed out!")
}
})
})
Describe("user", func() {
Context("when the user is specified in the form uid:gid", func() {
BeforeEach(func() {
if runtime.GOOS == "windows" {
Skip("pending for windows")
}
})
It("runs the process as that user", func() {
stdout := runForStdout(container, garden.ProcessSpec{
User: "1001:1002",
Path: "sh",
Args: []string{"-c", "echo $(id -u):$(id -g)"},
})
Expect(stdout).To(gbytes.Say("1001:1002\n"))
})
})
Context("when the user is specified ins the form username:groupname", func() {
BeforeEach(func() {
if runtime.GOOS == "windows" {
Skip("pending for windows")
}
imageRef = garden.ImageRef{
URI: "docker:///cloudfoundry/garden-rootfs",
}
})
It("runs the process as that user", func() {
stdout := runForStdout(container, garden.ProcessSpec{
User: "testuser:staff",
Path: "sh",
Args: []string{"-c", "echo $(id -u):$(id -g)"},
})
Expect(stdout).To(gbytes.Say("1000:50\n"))
})
})
Context("when the user is not specified", func() {
It("runs the process as root", func() {
stdout := runForStdout(container, garden.ProcessSpec{
Path: "whoami",
})
if runtime.GOOS == "windows" {
Expect(stdout).To(gbytes.Say("containeradministrator"))
} else {
Expect(stdout).To(gbytes.Say("root\n"))
}
})
})
})
Describe("working directory", func() {
JustBeforeEach(func() {
createUser(container, "alice")
})
Context("when user has access to working directory", func() {
Context("when working directory exists", func() {
It("spawns the process", func() {
if runtime.GOOS == "windows" {
stdout := runForStdout(container, garden.ProcessSpec{
User: "alice",
Dir: "c:\\users\\alice",
Path: "cmd.exe",
Args: []string{"/C", `echo %cd%`},
})
Expect(stdout).To(gbytes.Say(`c:\\users\\alice`))
} else {
stdout := runForStdout(container, garden.ProcessSpec{
User: "alice",
Dir: "/home/alice",
Path: "pwd",
})
Expect(stdout).To(gbytes.Say("/home/alice"))
}
})
})
Context("when working directory does not exist", func() {
It("spawns the process", func() {
if runtime.GOOS == "windows" {
stdout := runForStdout(container, garden.ProcessSpec{
User: "alice",
Dir: "c:\\users\\alice\\nonexistent",
Path: "cmd.exe",
Args: []string{"/C", `echo %cd%`},
})
Expect(stdout.Contents()).To(ContainSubstring("c:\\users\\alice\\nonexistent"))
} else {
stdout := runForStdout(container, garden.ProcessSpec{
User: "alice",
Dir: "/home/alice/nonexistent",
Path: "pwd",
})
Expect(stdout).To(gbytes.Say("/home/alice/nonexistent"))
}
})
It("is created owned by the requested user", func() {
if runtime.GOOS == "windows" {
Skip("pending for windows")
}
stdout := runForStdout(container, garden.ProcessSpec{
User: "root",
Dir: "/root/nonexistent",
Path: "sh",
Args: []string{"-c", "ls -la . | head -n 2 | tail -n 1"},
})
Expect(stdout).To(gbytes.Say("root"))
})
})
})
Context("when user does not have access to working directory", func() {
BeforeEach(func() {
if runtime.GOOS == "windows" {
Skip("pending for windows")
}
})
JustBeforeEach(func() {
exitCode, _, _ := runProcess(container, garden.ProcessSpec{
User: "alice",
Path: "sh",
Args: []string{"-c", "mkdir -p /home/alice/nopermissions && chmod 0555 /home/alice/nopermissions"},
})
Expect(exitCode).To(Equal(0))
})
Context("when working directory does exist", func() {
It("returns an error", func() {
exitCode, _, stderr := runProcess(container, garden.ProcessSpec{
User: "alice",
Dir: "/home/alice/nopermissions",
Path: "touch",
Args: []string{"test.txt"},
})
Expect(exitCode).ToNot(Equal(0))
Expect(stderr).To(gbytes.Say("Permission denied"))
})
})
Context("when working directory does not exist", func() {
It("should create the working directory, and succeed", func() {
exitCode, _, _ := runProcess(container, garden.ProcessSpec{
User: "alice",
Dir: "/home/alice/nopermissions/nonexistent",
Path: "touch",
Args: []string{"test.txt"},
})
Expect(exitCode).To(Equal(0))
})
})
})
Context("when the user does not specify the working directory", func() {
It("should have the user home directory in the output", func() {
if runtime.GOOS == "windows" {
stdout := runForStdout(container, garden.ProcessSpec{
User: "alice",
Path: "cmd.exe",
Args: []string{"/C", `echo %cd%`},
})
Expect(stdout).To(gbytes.Say(`C:\\Users\\alice`))
} else {
stdout := runForStdout(container, garden.ProcessSpec{
User: "alice",
Path: "pwd",
})
Expect(stdout).To(gbytes.Say("/home/alice"))
}
})
})
})
})