2015-09-08 21:08:49 +00:00
|
|
|
package driver
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2016-03-15 20:28:25 +00:00
|
|
|
"path/filepath"
|
2016-03-24 07:47:23 +00:00
|
|
|
"strings"
|
2015-09-08 21:08:49 +00:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/hashicorp/nomad/client/config"
|
|
|
|
"github.com/hashicorp/nomad/nomad/structs"
|
2015-09-25 23:49:14 +00:00
|
|
|
|
|
|
|
ctestutils "github.com/hashicorp/nomad/client/testutil"
|
2015-09-08 21:08:49 +00:00
|
|
|
)
|
|
|
|
|
2015-09-25 23:49:26 +00:00
|
|
|
// The fingerprinter test should always pass, even if QEMU is not installed.
|
2015-09-08 21:08:49 +00:00
|
|
|
func TestQemuDriver_Fingerprint(t *testing.T) {
|
2015-09-25 23:49:14 +00:00
|
|
|
ctestutils.QemuCompatible(t)
|
2016-01-06 02:02:11 +00:00
|
|
|
driverCtx, _ := testDriverContexts(&structs.Task{Name: "foo"})
|
|
|
|
d := NewQemuDriver(driverCtx)
|
2015-09-08 21:08:49 +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.qemu"] == "" {
|
|
|
|
t.Fatalf("Missing Qemu driver")
|
|
|
|
}
|
|
|
|
if node.Attributes["driver.qemu.version"] == "" {
|
|
|
|
t.Fatalf("Missing Qemu driver version")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-06 18:41:42 +00:00
|
|
|
func TestQemuDriver_StartOpen_Wait(t *testing.T) {
|
2015-10-23 07:27:59 +00:00
|
|
|
ctestutils.QemuCompatible(t)
|
2015-09-08 21:08:49 +00:00
|
|
|
task := &structs.Task{
|
2015-09-25 23:49:14 +00:00
|
|
|
Name: "linux",
|
2015-11-15 08:37:00 +00:00
|
|
|
Config: map[string]interface{}{
|
2016-03-15 20:28:25 +00:00
|
|
|
"image_path": "linux-0.2.img",
|
|
|
|
"accelerator": "tcg",
|
2015-11-18 04:54:53 +00:00
|
|
|
"port_map": []map[string]int{{
|
|
|
|
"main": 22,
|
|
|
|
"web": 8080,
|
|
|
|
}},
|
2015-09-24 04:15:28 +00:00
|
|
|
},
|
2016-02-10 21:54:54 +00:00
|
|
|
LogConfig: &structs.LogConfig{
|
|
|
|
MaxFiles: 10,
|
|
|
|
MaxFileSizeMB: 10,
|
|
|
|
},
|
2015-09-24 04:15:28 +00:00
|
|
|
Resources: &structs.Resources{
|
2015-11-06 18:41:42 +00:00
|
|
|
CPU: 500,
|
2015-09-24 04:15:28 +00:00
|
|
|
MemoryMB: 512,
|
|
|
|
Networks: []*structs.NetworkResource{
|
|
|
|
&structs.NetworkResource{
|
2015-11-15 08:37:00 +00:00
|
|
|
ReservedPorts: []structs.Port{{"main", 22000}, {"web", 80}},
|
2015-09-24 04:15:28 +00:00
|
|
|
},
|
|
|
|
},
|
2015-09-08 21:08:49 +00:00
|
|
|
},
|
|
|
|
}
|
2015-09-09 19:28:16 +00:00
|
|
|
|
2016-01-06 02:02:11 +00:00
|
|
|
driverCtx, execCtx := testDriverContexts(task)
|
|
|
|
defer execCtx.AllocDir.Destroy()
|
2015-09-25 23:49:14 +00:00
|
|
|
d := NewQemuDriver(driverCtx)
|
2015-09-09 19:28:16 +00:00
|
|
|
|
2016-03-15 20:28:25 +00:00
|
|
|
// Copy the test image into the task's directory
|
|
|
|
dst, _ := execCtx.AllocDir.TaskDirs[task.Name]
|
|
|
|
copyFile("./test-resources/qemu/linux-0.2.img", filepath.Join(dst, "linux-0.2.img"), t)
|
|
|
|
|
2016-01-06 02:02:11 +00:00
|
|
|
handle, err := d.Start(execCtx, task)
|
2015-09-08 21:08:49 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if handle == nil {
|
|
|
|
t.Fatalf("missing handle")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Attempt to open
|
2016-01-06 02:02:11 +00:00
|
|
|
handle2, err := d.Open(execCtx, handle.ID())
|
2015-09-08 21:08:49 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if handle2 == nil {
|
|
|
|
t.Fatalf("missing handle")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Clean up
|
|
|
|
if err := handle.Kill(); err != nil {
|
|
|
|
fmt.Printf("\nError killing Qemu test: %s", err)
|
|
|
|
}
|
|
|
|
}
|
2016-03-24 07:47:23 +00:00
|
|
|
|
|
|
|
func TestQemuDriverUser(t *testing.T) {
|
|
|
|
ctestutils.QemuCompatible(t)
|
|
|
|
task := &structs.Task{
|
|
|
|
Name: "linux",
|
|
|
|
User: "alice",
|
|
|
|
Config: map[string]interface{}{
|
|
|
|
"image_path": "linux-0.2.img",
|
|
|
|
"accelerator": "tcg",
|
|
|
|
"port_map": []map[string]int{{
|
|
|
|
"main": 22,
|
|
|
|
"web": 8080,
|
|
|
|
}},
|
|
|
|
},
|
|
|
|
LogConfig: &structs.LogConfig{
|
|
|
|
MaxFiles: 10,
|
|
|
|
MaxFileSizeMB: 10,
|
|
|
|
},
|
|
|
|
Resources: &structs.Resources{
|
|
|
|
CPU: 500,
|
|
|
|
MemoryMB: 512,
|
|
|
|
Networks: []*structs.NetworkResource{
|
|
|
|
&structs.NetworkResource{
|
|
|
|
ReservedPorts: []structs.Port{{"main", 22000}, {"web", 80}},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
driverCtx, execCtx := testDriverContexts(task)
|
|
|
|
defer execCtx.AllocDir.Destroy()
|
|
|
|
d := NewQemuDriver(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)
|
|
|
|
}
|
|
|
|
}
|