open-nomad/client/driver/rkt_test.go

389 lines
8.8 KiB
Go
Raw Normal View History

2015-09-29 22:33:25 +00:00
package driver
import (
2015-10-07 22:24:16 +00:00
"fmt"
2015-10-09 19:14:56 +00:00
"io/ioutil"
2016-07-11 21:46:45 +00:00
"os"
2015-10-09 19:14:56 +00:00
"path/filepath"
"reflect"
"strings"
2015-10-07 22:24:16 +00:00
"testing"
"time"
2015-09-29 22:33:25 +00:00
2015-10-07 22:24:16 +00:00
"github.com/hashicorp/nomad/client/config"
"github.com/hashicorp/nomad/client/driver/env"
2015-10-07 22:24:16 +00:00
"github.com/hashicorp/nomad/nomad/structs"
2016-01-21 23:24:24 +00:00
"github.com/hashicorp/nomad/testutil"
2015-09-29 22:33:25 +00:00
2015-10-07 22:24:16 +00:00
ctestutils "github.com/hashicorp/nomad/client/testutil"
2015-09-29 22:33:25 +00:00
)
2015-10-21 01:08:46 +00:00
func TestRktVersionRegex(t *testing.T) {
2016-07-11 21:46:45 +00:00
if os.Getenv("NOMAD_TEST_RKT") == "" {
t.Skip("skipping rkt tests")
}
2015-10-23 23:23:43 +00:00
input_rkt := "rkt version 0.8.1"
input_appc := "appc version 1.2.0"
expected_rkt := "0.8.1"
expected_appc := "1.2.0"
rktMatches := reRktVersion.FindStringSubmatch(input_rkt)
appcMatches := reAppcVersion.FindStringSubmatch(input_appc)
if rktMatches[1] != expected_rkt {
fmt.Printf("Test failed; got %q; want %q\n", rktMatches[1], expected_rkt)
}
if appcMatches[1] != expected_appc {
fmt.Printf("Test failed; got %q; want %q\n", appcMatches[1], expected_appc)
}
2015-10-21 01:08:46 +00:00
}
2015-09-29 22:33:25 +00:00
// The fingerprinter test should always pass, even if rkt is not installed.
func TestRktDriver_Fingerprint(t *testing.T) {
2016-07-11 21:46:45 +00:00
if os.Getenv("NOMAD_TEST_RKT") == "" {
t.Skip("skipping rkt tests")
}
2015-10-07 22:24:16 +00:00
ctestutils.RktCompatible(t)
2016-01-06 02:02:11 +00:00
driverCtx, _ := testDriverContexts(&structs.Task{Name: "foo"})
d := NewRktDriver(driverCtx)
2015-10-07 22:24:16 +00:00
node := &structs.Node{
Attributes: make(map[string]string),
}
apply, err := d.Fingerprint(&config.Config{}, node)
if err != nil {
t.Fatalf("err: %v", err)
}
if !apply {
t.Fatalf("should apply")
}
if node.Attributes["driver.rkt"] != "1" {
2015-10-07 22:24:16 +00:00
t.Fatalf("Missing Rkt driver")
}
if node.Attributes["driver.rkt.version"] == "" {
t.Fatalf("Missing Rkt driver version")
}
if node.Attributes["driver.rkt.appc.version"] == "" {
t.Fatalf("Missing appc version for the Rkt driver")
}
2015-09-29 22:33:25 +00:00
}
func TestRktDriver_Start_DNS(t *testing.T) {
2016-07-11 21:46:45 +00:00
if os.Getenv("NOMAD_TEST_RKT") == "" {
t.Skip("skipping rkt tests")
}
2015-10-07 22:24:16 +00:00
ctestutils.RktCompatible(t)
// TODO: use test server to load from a fixture
task := &structs.Task{
Name: "etcd",
Config: map[string]interface{}{
2016-03-10 22:56:43 +00:00
"trust_prefix": "coreos.com/etcd",
"image": "coreos.com/etcd:v2.0.4",
"command": "/etcd",
"dns_servers": []string{"8.8.8.8", "8.8.4.4"},
"dns_search_domains": []string{"example.com", "example.org", "example.net"},
2015-10-07 22:24:16 +00:00
},
LogConfig: &structs.LogConfig{
MaxFiles: 10,
MaxFileSizeMB: 10,
},
Resources: &structs.Resources{
2016-02-06 08:23:56 +00:00
MemoryMB: 128,
CPU: 100,
},
2015-10-07 22:24:16 +00:00
}
2016-01-06 02:02:11 +00:00
driverCtx, execCtx := testDriverContexts(task)
2016-02-10 23:55:24 +00:00
defer execCtx.AllocDir.Destroy()
2015-10-07 22:24:16 +00:00
d := NewRktDriver(driverCtx)
2016-01-06 02:02:11 +00:00
handle, err := d.Start(execCtx, task)
2015-10-07 22:24:16 +00:00
if err != nil {
t.Fatalf("err: %v", err)
}
if handle == nil {
t.Fatalf("missing handle")
}
2016-02-10 23:55:24 +00:00
defer handle.Kill()
2015-10-07 22:24:16 +00:00
// Attempt to open
2016-01-06 02:02:11 +00:00
handle2, err := d.Open(execCtx, handle.ID())
2015-10-07 22:24:16 +00:00
if err != nil {
t.Fatalf("err: %v", err)
}
if handle2 == nil {
t.Fatalf("missing handle")
}
2015-09-29 22:33:25 +00:00
}
2015-09-29 22:55:23 +00:00
func TestRktDriver_Start_Wait(t *testing.T) {
2016-07-11 21:46:45 +00:00
if os.Getenv("NOMAD_TEST_RKT") == "" {
t.Skip("skipping rkt tests")
}
2015-10-07 22:24:16 +00:00
ctestutils.RktCompatible(t)
task := &structs.Task{
Name: "etcd",
Config: map[string]interface{}{
2015-10-07 22:24:16 +00:00
"trust_prefix": "coreos.com/etcd",
"image": "coreos.com/etcd:v2.0.4",
"command": "/etcd",
"args": []string{"--version"},
2015-10-07 22:24:16 +00:00
},
LogConfig: &structs.LogConfig{
MaxFiles: 10,
MaxFileSizeMB: 10,
},
2015-12-21 06:09:11 +00:00
Resources: &structs.Resources{
2016-02-06 08:23:56 +00:00
MemoryMB: 128,
CPU: 100,
2015-12-21 06:09:11 +00:00
},
2015-10-07 22:24:16 +00:00
}
2016-01-06 02:02:11 +00:00
driverCtx, execCtx := testDriverContexts(task)
defer execCtx.AllocDir.Destroy()
2015-10-07 22:24:16 +00:00
d := NewRktDriver(driverCtx)
2016-01-06 02:02:11 +00:00
handle, err := d.Start(execCtx, task)
2015-10-07 22:24:16 +00:00
if err != nil {
t.Fatalf("err: %v", err)
}
if handle == nil {
t.Fatalf("missing handle")
}
defer handle.Kill()
// Update should be a no-op
err = handle.Update(task)
if err != nil {
t.Fatalf("err: %v", err)
}
select {
case res := <-handle.WaitCh():
if !res.Successful() {
t.Fatalf("err: %v", res)
2015-10-07 22:24:16 +00:00
}
2016-01-21 23:24:24 +00:00
case <-time.After(time.Duration(testutil.TestMultiplier()*5) * time.Second):
2015-10-07 22:24:16 +00:00
t.Fatalf("timeout")
}
2015-09-29 22:55:23 +00:00
}
2015-10-09 19:14:56 +00:00
func TestRktDriver_Start_Wait_Skip_Trust(t *testing.T) {
2016-07-11 21:46:45 +00:00
if os.Getenv("NOMAD_TEST_RKT") == "" {
t.Skip("skipping rkt tests")
}
ctestutils.RktCompatible(t)
task := &structs.Task{
Name: "etcd",
Config: map[string]interface{}{
"image": "coreos.com/etcd:v2.0.4",
"command": "/etcd",
"args": []string{"--version"},
},
LogConfig: &structs.LogConfig{
MaxFiles: 10,
MaxFileSizeMB: 10,
},
2015-12-21 06:09:11 +00:00
Resources: &structs.Resources{
2016-02-06 08:23:56 +00:00
MemoryMB: 128,
CPU: 100,
2015-12-21 06:09:11 +00:00
},
}
2016-01-06 02:02:11 +00:00
driverCtx, execCtx := testDriverContexts(task)
defer execCtx.AllocDir.Destroy()
d := NewRktDriver(driverCtx)
2016-01-06 02:02:11 +00:00
handle, err := d.Start(execCtx, task)
if err != nil {
t.Fatalf("err: %v", err)
}
if handle == nil {
t.Fatalf("missing handle")
}
defer handle.Kill()
// Update should be a no-op
err = handle.Update(task)
if err != nil {
t.Fatalf("err: %v", err)
}
select {
case res := <-handle.WaitCh():
if !res.Successful() {
t.Fatalf("err: %v", res)
}
2016-01-21 23:24:24 +00:00
case <-time.After(time.Duration(testutil.TestMultiplier()*5) * time.Second):
t.Fatalf("timeout")
}
}
func TestRktDriver_Start_Wait_AllocDir(t *testing.T) {
2016-07-11 21:46:45 +00:00
if os.Getenv("NOMAD_TEST_RKT") == "" {
t.Skip("skipping rkt tests")
}
2015-10-09 19:14:56 +00:00
ctestutils.RktCompatible(t)
exp := []byte{'w', 'i', 'n'}
file := "output.txt"
2015-10-09 19:14:56 +00:00
task := &structs.Task{
Name: "alpine",
Config: map[string]interface{}{
"image": "docker://alpine",
"command": "/bin/sh",
"args": []string{
"-c",
fmt.Sprintf(`echo -n %s > ${%s}/%s`, string(exp), env.AllocDir, file),
},
2015-10-09 19:14:56 +00:00
},
LogConfig: &structs.LogConfig{
MaxFiles: 10,
MaxFileSizeMB: 10,
},
2015-12-21 06:09:11 +00:00
Resources: &structs.Resources{
2016-02-06 08:23:56 +00:00
MemoryMB: 128,
CPU: 100,
2015-12-21 06:09:11 +00:00
},
2015-10-09 19:14:56 +00:00
}
2016-01-06 02:02:11 +00:00
driverCtx, execCtx := testDriverContexts(task)
defer execCtx.AllocDir.Destroy()
2015-10-09 19:14:56 +00:00
d := NewRktDriver(driverCtx)
2016-01-06 02:02:11 +00:00
handle, err := d.Start(execCtx, task)
2015-10-09 19:14:56 +00:00
if err != nil {
t.Fatalf("err: %v", err)
}
if handle == nil {
t.Fatalf("missing handle")
}
defer handle.Kill()
select {
case res := <-handle.WaitCh():
if !res.Successful() {
t.Fatalf("err: %v", res)
2015-10-09 19:14:56 +00:00
}
2016-01-21 23:24:24 +00:00
case <-time.After(time.Duration(testutil.TestMultiplier()*5) * time.Second):
2015-10-09 19:14:56 +00:00
t.Fatalf("timeout")
}
// Check that data was written to the shared alloc directory.
outputFile := filepath.Join(execCtx.AllocDir.SharedDir, file)
act, err := ioutil.ReadFile(outputFile)
if err != nil {
t.Fatalf("Couldn't read expected output: %v", err)
}
2015-10-09 19:14:56 +00:00
if !reflect.DeepEqual(act, exp) {
t.Fatalf("Command output is %v; expected %v", act, exp)
}
2015-10-09 19:14:56 +00:00
}
func TestRktDriverUser(t *testing.T) {
2016-07-11 21:46:45 +00:00
if os.Getenv("NOMAD_TEST_RKT") == "" {
t.Skip("skipping rkt tests")
}
ctestutils.RktCompatible(t)
task := &structs.Task{
Name: "etcd",
User: "alice",
Config: map[string]interface{}{
"trust_prefix": "coreos.com/etcd",
"image": "coreos.com/etcd:v2.0.4",
"command": "/etcd",
"args": []string{"--version"},
},
LogConfig: &structs.LogConfig{
MaxFiles: 10,
MaxFileSizeMB: 10,
},
Resources: &structs.Resources{
MemoryMB: 128,
CPU: 100,
},
}
driverCtx, execCtx := testDriverContexts(task)
defer execCtx.AllocDir.Destroy()
d := NewRktDriver(driverCtx)
handle, err := d.Start(execCtx, task)
if err == nil {
handle.Kill()
t.Fatalf("Should've failed")
}
msg := "unknown user alice"
if !strings.Contains(err.Error(), msg) {
t.Fatalf("Expecting '%v' in '%v'", msg, err)
}
}
2016-08-04 01:18:58 +00:00
func TestRktTrustPrefix(t *testing.T) {
if os.Getenv("NOMAD_TEST_RKT") == "" {
t.Skip("skipping rkt tests")
}
ctestutils.RktCompatible(t)
task := &structs.Task{
Name: "etcd",
Config: map[string]interface{}{
"trust_prefix": "example.com/invalid",
"image": "coreos.com/etcd:v2.0.4",
"command": "/etcd",
"args": []string{"--version"},
},
LogConfig: &structs.LogConfig{
MaxFiles: 10,
MaxFileSizeMB: 10,
},
Resources: &structs.Resources{
MemoryMB: 128,
CPU: 100,
},
}
driverCtx, execCtx := testDriverContexts(task)
defer execCtx.AllocDir.Destroy()
d := NewRktDriver(driverCtx)
handle, err := d.Start(execCtx, task)
if err == nil {
handle.Kill()
t.Fatalf("Should've failed")
}
msg := "Error running rkt trust"
if !strings.Contains(err.Error(), msg) {
t.Fatalf("Expecting '%v' in '%v'", msg, err)
}
}
2016-08-04 08:15:18 +00:00
func TestRktTaskValidate(t *testing.T) {
ctestutils.RktCompatible(t)
task := &structs.Task{
Name: "etcd",
Config: map[string]interface{}{
"trust_prefix": "coreos.com/etcd",
"image": "coreos.com/etcd:v2.0.4",
"command": "/etcd",
"args": []string{"--version"},
"dns_servers": []string{"8.8.8.8", "8.8.4.4"},
"dns_search_domains": []string{"example.com", "example.org", "example.net"},
},
Resources: basicResources,
2016-08-04 08:15:18 +00:00
}
driverCtx, execCtx := testDriverContexts(task)
defer execCtx.AllocDir.Destroy()
d := NewRktDriver(driverCtx)
if err := d.Validate(task.Config); err != nil {
t.Fatalf("Validation error in TaskConfig : '%v'", err)
}
}