-
Notifications
You must be signed in to change notification settings - Fork 1
/
driver_test.go
512 lines (420 loc) · 12.4 KB
/
driver_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
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
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
package main
import (
"context"
"fmt"
"io/ioutil"
"path/filepath"
"reflect"
"testing"
"time"
"github.com/hashicorp/go-hclog"
"github.com/hashicorp/nomad/client/taskenv"
"github.com/hashicorp/nomad/helper/testlog"
"github.com/hashicorp/nomad/helper/uuid"
"github.com/hashicorp/nomad/nomad/structs"
"github.com/hashicorp/nomad/plugins/base"
"github.com/hashicorp/nomad/plugins/drivers"
dtestutil "github.com/hashicorp/nomad/plugins/drivers/testutils"
tu "github.com/hashicorp/nomad/testutil"
"github.com/stretchr/testify/require"
)
var (
longRunningCommand = []string{"/usr/bin/sleep", "1000d"}
)
// systemdDriverHarness wires up everything needed to launch a task with a systed driver.
// A driver plugin interface and cleanup function is returned
func systemdDriverHarness(t *testing.T, cfg map[string]interface{}) *dtestutil.DriverHarness {
logger := testlog.HCLogger(t)
if testing.Verbose() {
logger.SetLevel(hclog.Trace)
} else {
logger.SetLevel(hclog.Info)
}
baseConfig := base.Config{}
pluginConfig := PluginConfig{}
if err := base.MsgPackEncode(&baseConfig.PluginConfig, &pluginConfig); err != nil {
t.Error("Unable to encode plugin config", err)
}
d := NewSystemdDriver(logger).(*Driver)
d.SetConfig(&baseConfig)
d.buildFingerprint()
// d.config.Volumes.Enabled = true
// if enforce, err := ioutil.ReadFile("/sys/fs/selinux/enforce"); err == nil {
// if string(enforce) == "1" {
// d.logger.Info("Enabling SelinuxLabel")
// d.config.Volumes.SelinuxLabel = "z"
// }
// }
// d.config.GC.Container = true
// if v, ok := cfg["GC.Container"]; ok {
// if bv, ok := v.(bool); ok {
// d.config.GC.Container = bv
// }
// }
harness := dtestutil.NewDriverHarness(t, d)
return harness
}
func createBasicResources() *drivers.Resources {
res := drivers.Resources{
NomadResources: &structs.AllocatedTaskResources{
Memory: structs.AllocatedMemoryResources{
MemoryMB: 100,
},
Cpu: structs.AllocatedCpuResources{
CpuShares: 250,
},
},
LinuxResources: &drivers.LinuxResources{
CPUPeriod: 100000,
CPUQuota: 100000,
CPUShares: 500,
MemoryLimitBytes: 256 * 1024 * 1024,
PercentTicks: float64(500) / float64(2000),
},
}
return &res
}
func getSystemdDriver(t *testing.T, harness *dtestutil.DriverHarness) *Driver {
driver, ok := harness.Impl().(*Driver)
require.True(t, ok)
return driver
}
func newTaskConfig(command []string) TaskConfig {
return TaskConfig{
Command: command[0],
Args: command[1:],
}
}
// read a tasks stdout logfile into a string, fail on error
func readStdoutLog(t *testing.T, task *drivers.TaskConfig) string {
logfile := filepath.Join(filepath.Dir(task.StdoutPath), fmt.Sprintf("%s.stdout.0", task.Name))
stdout, err := ioutil.ReadFile(logfile)
require.NoError(t, err)
return string(stdout)
}
// read a tasks stderr logfile into a string, fail on error
func readStderrLog(t *testing.T, task *drivers.TaskConfig) string {
logfile := filepath.Join(filepath.Dir(task.StderrPath), fmt.Sprintf("%s.stderr.0", task.Name))
stderr, err := ioutil.ReadFile(logfile)
require.NoError(t, err)
return string(stderr)
}
// can we at least setup the harness?
func TestSystemdDriver_Setup(t *testing.T) {
systemdDriverHarness(t, nil)
}
// Ensure that we require a command
func TestSystemdDriver_Start_NoCommand(t *testing.T) {
if !tu.IsCI() {
t.Parallel()
}
taskCfg := TaskConfig{}
task := &drivers.TaskConfig{
ID: uuid.Generate(),
Name: "nocommand",
AllocID: uuid.Generate(),
Resources: createBasicResources(),
}
require.NoError(t, task.EncodeConcreteDriverConfig(&taskCfg))
d := systemdDriverHarness(t, nil)
cleanup := d.MkAllocDir(task, false)
defer cleanup()
_, _, err := d.StartTask(task)
require.Error(t, err)
require.Contains(t, err.Error(), "command name required")
d.DestroyTask(task.ID, true)
}
// start a long running command
func TestSystemdDriver_LongRunning(t *testing.T) {
if !tu.IsCI() {
t.Parallel()
}
taskCfg := newTaskConfig(longRunningCommand)
task := &drivers.TaskConfig{
ID: uuid.Generate(),
Name: "longrunning",
AllocID: uuid.Generate(),
Resources: createBasicResources(),
}
require.NoError(t, task.EncodeConcreteDriverConfig(&taskCfg))
d := systemdDriverHarness(t, nil)
cleanup := d.MkAllocDir(task, true)
defer cleanup()
_, _, err := d.StartTask(task)
require.NoError(t, err)
defer d.DestroyTask(task.ID, true)
// Attempt to wait
waitCh, err := d.WaitTask(context.Background(), task.ID)
require.NoError(t, err)
select {
case <-waitCh:
t.Fatalf("wait channel should not have received an exit result")
case <-time.After(time.Duration(tu.TestMultiplier()*3) * time.Second):
}
}
// test a short-living command
func TestSystemdDriver_ShortLiving(t *testing.T) {
if !tu.IsCI() {
t.Parallel()
}
taskCfg := newTaskConfig([]string{"/usr/bin/ls"})
task := &drivers.TaskConfig{
ID: uuid.Generate(),
Name: "shortliving",
AllocID: uuid.Generate(),
Resources: createBasicResources(),
}
require.NoError(t, task.EncodeConcreteDriverConfig(&taskCfg))
d := systemdDriverHarness(t, nil)
cleanup := d.MkAllocDir(task, true)
defer cleanup()
_, _, err := d.StartTask(task)
require.NoError(t, err)
defer d.DestroyTask(task.ID, true)
// Attempt to wait
waitCh, err := d.WaitTask(context.Background(), task.ID)
require.NoError(t, err)
select {
case res := <-waitCh:
if !res.Successful() {
require.Fail(t, "ExitResult should be successful: %v", res)
}
case <-time.After(time.Duration(tu.TestMultiplier()*5) * time.Second):
require.Fail(t, "timeout")
}
}
func TestSystemdDriver_AllocDir(t *testing.T) {
if !tu.IsCI() {
t.Parallel()
}
exp := []byte{'w', 'i', 'n'}
file := "output.txt"
taskCfg := newTaskConfig([]string{
"/bin/sh",
"-c",
fmt.Sprintf(`echo -n %s > $%s/%s`,
string(exp), taskenv.AllocDir, file),
})
task := &drivers.TaskConfig{
ID: uuid.Generate(),
Name: "allocDir",
AllocID: uuid.Generate(),
Resources: createBasicResources(),
}
require.NoError(t, task.EncodeConcreteDriverConfig(&taskCfg))
d := systemdDriverHarness(t, nil)
cleanup := d.MkAllocDir(task, true)
defer cleanup()
_, _, err := d.StartTask(task)
require.NoError(t, err)
defer d.DestroyTask(task.ID, true)
// Attempt to wait
waitCh, err := d.WaitTask(context.Background(), task.ID)
require.NoError(t, err)
select {
case res := <-waitCh:
if !res.Successful() {
require.Fail(t, fmt.Sprintf("ExitResult should be successful: %v", res))
}
case <-time.After(time.Duration(tu.TestMultiplier()*5) * time.Second):
require.Fail(t, "timeout")
}
// Check that data was written to the shared alloc directory.
outputFile := filepath.Join(task.TaskDir().SharedAllocDir, file)
act, err := ioutil.ReadFile(outputFile)
if err != nil {
t.Fatalf("Couldn't read expected output: %v", err)
}
if !reflect.DeepEqual(act, exp) {
t.Fatalf("Command outputted %v; want %v", act, exp)
}
}
// Check log_opt=nomad logger
func TestSystemdDriver_LogNomad(t *testing.T) {
if !tu.IsCI() {
t.Parallel()
}
stdoutMagic := uuid.Generate()
stderrMagic := uuid.Generate()
taskCfg := newTaskConfig([]string{
"/bin/sh",
"-c",
fmt.Sprintf("echo %s; 1>&2 echo %s", stdoutMagic, stderrMagic),
})
taskCfg.Logging.Driver = "nomad"
task := &drivers.TaskConfig{
ID: uuid.Generate(),
Name: "logNomad",
AllocID: uuid.Generate(),
Resources: createBasicResources(),
}
require.NoError(t, task.EncodeConcreteDriverConfig(&taskCfg))
d := systemdDriverHarness(t, nil)
cleanup := d.MkAllocDir(task, true)
defer cleanup()
_, _, err := d.StartTask(task)
require.NoError(t, err)
defer d.DestroyTask(task.ID, true)
// Attempt to wait
waitCh, err := d.WaitTask(context.Background(), task.ID)
require.NoError(t, err)
select {
case <-waitCh:
case <-time.After(time.Duration(tu.TestMultiplier()*5) * time.Second):
t.Fatalf("Container did not exit in time")
}
stdoutLog := readStdoutLog(t, task)
require.Contains(t, stdoutLog, stdoutMagic, "stdoutMagic in stdout")
stderrLog := readStderrLog(t, task)
require.Contains(t, stderrLog, stderrMagic, "stderrMagic in stderr")
}
// check setting a environment variable for the task
func TestSystemdDriver_Env(t *testing.T) {
if !tu.IsCI() {
t.Parallel()
}
taskCfg := newTaskConfig([]string{
"/bin/sh",
"-c",
"echo $testvar",
})
testvalue := uuid.Generate()
task := &drivers.TaskConfig{
ID: uuid.Generate(),
Name: "env",
AllocID: uuid.Generate(),
Resources: createBasicResources(),
Env: map[string]string{"testvar": testvalue},
}
require.NoError(t, task.EncodeConcreteDriverConfig(&taskCfg))
d := systemdDriverHarness(t, nil)
cleanup := d.MkAllocDir(task, true)
defer cleanup()
_, _, err := d.StartTask(task)
require.NoError(t, err)
defer d.DestroyTask(task.ID, true)
// Attempt to wait
waitCh, err := d.WaitTask(context.Background(), task.ID)
require.NoError(t, err)
select {
case res := <-waitCh:
// should have a exitcode=0 result
require.True(t, res.Successful())
case <-time.After(time.Duration(tu.TestMultiplier()*5) * time.Second):
t.Fatalf("Task did not exit in time")
}
// see if stdout was populated with the contents of testvalue
tasklog := readStdoutLog(t, task)
require.Contains(t, tasklog, testvalue)
}
// check setting a user for the task
func TestSystemdDriver_User(t *testing.T) {
if !tu.IsCI() {
t.Parallel()
}
taskCfg := newTaskConfig([]string{
// print our username to stdout
"/usr/bin/whoami",
})
task := &drivers.TaskConfig{
ID: uuid.Generate(),
Name: "user",
AllocID: uuid.Generate(),
Resources: createBasicResources(),
}
// use "www-data" as a user for our test, it's part of the busybox image
task.User = "www-data"
require.NoError(t, task.EncodeConcreteDriverConfig(&taskCfg))
d := systemdDriverHarness(t, nil)
cleanup := d.MkAllocDir(task, true)
defer cleanup()
_, _, err := d.StartTask(task)
require.NoError(t, err)
defer d.DestroyTask(task.ID, true)
// Attempt to wait
waitCh, err := d.WaitTask(context.Background(), task.ID)
require.NoError(t, err)
select {
case res := <-waitCh:
// should have a exitcode=0 result
require.True(t, res.Successful())
case <-time.After(time.Duration(tu.TestMultiplier()*5) * time.Second):
t.Fatalf("Task did not exit in time")
}
// see if stdout was populated with the "whoami" output
tasklog := readStdoutLog(t, task)
require.Contains(t, tasklog, "www-data")
}
// test exit code propagation
func TestSystemdDriver_ExitCode(t *testing.T) {
if !tu.IsCI() {
t.Parallel()
}
taskCfg := newTaskConfig([]string{
"/bin/sh",
"-c",
"exit 123",
})
task := &drivers.TaskConfig{
ID: uuid.Generate(),
Name: "exitcode",
AllocID: uuid.Generate(),
Resources: createBasicResources(),
}
require.NoError(t, task.EncodeConcreteDriverConfig(&taskCfg))
d := systemdDriverHarness(t, nil)
cleanup := d.MkAllocDir(task, true)
defer cleanup()
_, _, err := d.StartTask(task)
require.NoError(t, err)
defer d.DestroyTask(task.ID, true)
// Attempt to wait
waitCh, err := d.WaitTask(context.Background(), task.ID)
require.NoError(t, err)
select {
case res := <-waitCh:
require.Equal(t, 123, res.ExitCode, "Should have got exit code 123")
case <-time.After(time.Duration(tu.TestMultiplier()*5) * time.Second):
t.Fatalf("Task did not exit in time")
}
}
// test oom flag propagation
func TestSystemdDriver_OOM(t *testing.T) {
if !tu.IsCI() {
t.Parallel()
}
taskCfg := newTaskConfig([]string{
// Incrementally creates a bigger and bigger variable.
// "stress",
// "--vm",
// "1",
"/bin/bash",
"-ec",
"sleep 1;for b in {0..99999999}; do a=$b$a; done",
})
task := &drivers.TaskConfig{
ID: uuid.Generate(),
Name: "oom",
AllocID: uuid.Generate(),
Resources: createBasicResources(),
}
// limit memory to 5MB to trigger oom soon enough
task.Resources.NomadResources.Memory.MemoryMB = 5
require.NoError(t, task.EncodeConcreteDriverConfig(&taskCfg))
d := systemdDriverHarness(t, nil)
cleanup := d.MkAllocDir(task, true)
defer cleanup()
_, _, err := d.StartTask(task)
require.NoError(t, err)
defer d.DestroyTask(task.ID, true)
// Attempt to wait
waitCh, err := d.WaitTask(context.Background(), task.ID)
require.NoError(t, err)
select {
case res := <-waitCh:
require.False(t, res.Successful(), "Should have failed because of oom but was successful")
require.True(t, res.OOMKilled, "OOM Flag not set")
case <-time.After(time.Duration(tu.TestMultiplier()*5) * time.Second):
t.Fatalf("Task did not exit in time")
}
}