open-nomad/client/driver/java_test.go

260 lines
5.9 KiB
Go
Raw Normal View History

2015-09-01 21:57:21 +00:00
package driver
import (
2016-02-18 05:20:22 +00:00
"os"
"os/exec"
2016-02-18 05:20:22 +00:00
"path/filepath"
"strings"
2015-09-01 21:57:21 +00:00
"testing"
"time"
"github.com/hashicorp/nomad/client/config"
"github.com/hashicorp/nomad/nomad/structs"
2016-01-21 23:24:24 +00:00
"github.com/hashicorp/nomad/testutil"
2015-09-25 23:49:14 +00:00
ctestutils "github.com/hashicorp/nomad/client/testutil"
2015-09-01 21:57:21 +00:00
)
// javaLocated checks whether java is installed so we can run java stuff.
func javaLocated() bool {
_, err := exec.Command("java", "-version").CombinedOutput()
return err == nil
}
// The fingerprinter test should always pass, even if Java is not installed.
2015-09-01 21:57:21 +00:00
func TestJavaDriver_Fingerprint(t *testing.T) {
t.Parallel()
ctestutils.JavaCompatible(t)
2016-01-06 02:02:11 +00:00
driverCtx, _ := testDriverContexts(&structs.Task{Name: "foo"})
d := NewJavaDriver(driverCtx)
2015-09-01 21:57:21 +00:00
node := &structs.Node{
2016-02-18 19:34:17 +00:00
Attributes: map[string]string{
"unique.cgroup.mountpoint": "/sys/fs/cgroups",
},
2015-09-01 21:57:21 +00:00
}
apply, err := d.Fingerprint(&config.Config{}, node)
if err != nil {
t.Fatalf("err: %v", err)
}
if apply != javaLocated() {
t.Fatalf("Fingerprinter should detect Java when it is installed")
2015-09-01 21:57:21 +00:00
}
if node.Attributes["driver.java"] != "1" {
2015-09-01 21:57:21 +00:00
t.Fatalf("missing driver")
}
for _, key := range []string{"driver.java.version", "driver.java.runtime", "driver.java.vm"} {
if node.Attributes[key] == "" {
t.Fatalf("missing driver key (%s)", key)
}
}
2015-09-01 21:57:21 +00:00
}
func TestJavaDriver_StartOpen_Wait(t *testing.T) {
t.Parallel()
2015-11-11 00:59:52 +00:00
if !javaLocated() {
t.Skip("Java not found; skipping")
}
ctestutils.JavaCompatible(t)
2015-09-01 21:57:21 +00:00
task := &structs.Task{
2015-09-25 23:49:14 +00:00
Name: "demo-app",
Config: map[string]interface{}{
2016-03-15 20:28:25 +00:00
"jar_path": "demoapp.jar",
"jvm_options": []string{"-Xmx64m", "-Xms32m"},
2015-09-01 21:57:21 +00:00
},
2016-02-10 21:54:54 +00:00
LogConfig: &structs.LogConfig{
MaxFiles: 10,
MaxFileSizeMB: 10,
},
Resources: basicResources,
2015-09-01 21:57:21 +00:00
}
2015-09-25 23:49:14 +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 := NewJavaDriver(driverCtx)
2016-03-15 20:28:25 +00:00
// Copy the test jar into the task's directory
dst, _ := execCtx.AllocDir.TaskDirs[task.Name]
copyFile("./test-resources/java/demoapp.jar", filepath.Join(dst, "demoapp.jar"), t)
2016-01-06 02:02:11 +00:00
handle, err := d.Start(execCtx, task)
2015-09-01 21:57:21 +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-01 21:57:21 +00:00
if err != nil {
t.Fatalf("err: %v", err)
}
if handle2 == nil {
t.Fatalf("missing handle")
}
time.Sleep(2 * time.Second)
// There is a race condition between the handle waiting and killing. One
// will return an error.
handle.Kill()
handle2.Kill()
2015-09-01 21:57:21 +00:00
}
func TestJavaDriver_Start_Wait(t *testing.T) {
t.Parallel()
if !javaLocated() {
t.Skip("Java not found; skipping")
}
ctestutils.JavaCompatible(t)
2015-09-01 21:57:21 +00:00
task := &structs.Task{
2015-09-25 23:49:14 +00:00
Name: "demo-app",
Config: map[string]interface{}{
2016-03-15 20:28:25 +00:00
"jar_path": "demoapp.jar",
2015-09-01 21:57:21 +00:00
},
2016-02-10 21:54:54 +00:00
LogConfig: &structs.LogConfig{
MaxFiles: 10,
MaxFileSizeMB: 10,
},
Resources: basicResources,
2015-09-01 21:57:21 +00:00
}
2015-09-25 23:49:14 +00:00
2016-01-06 02:02:11 +00:00
driverCtx, execCtx := testDriverContexts(task)
2015-09-25 23:49:14 +00:00
d := NewJavaDriver(driverCtx)
2016-03-15 20:28:25 +00:00
// Copy the test jar into the task's directory
dst, _ := execCtx.AllocDir.TaskDirs[task.Name]
copyFile("./test-resources/java/demoapp.jar", filepath.Join(dst, "demoapp.jar"), t)
2016-01-06 02:02:11 +00:00
handle, err := d.Start(execCtx, task)
2015-09-01 21:57:21 +00:00
if err != nil {
t.Fatalf("err: %v", err)
}
if handle == nil {
t.Fatalf("missing handle")
}
// Task should terminate quickly
select {
case res := <-handle.WaitCh():
if !res.Successful() {
t.Fatalf("err: %v", res)
2015-09-01 21:57:21 +00:00
}
2016-01-21 23:24:24 +00:00
case <-time.After(time.Duration(testutil.TestMultiplier()*5) * time.Second):
2015-09-01 21:57:21 +00:00
// expect the timeout b/c it's a long lived process
break
}
2015-09-03 14:49:39 +00:00
2016-02-18 05:20:22 +00:00
// Get the stdout of the process and assrt that it's not empty
2016-02-25 07:07:06 +00:00
stdout := filepath.Join(execCtx.AllocDir.LogDir(), "demo-app.stdout.0")
2016-02-18 05:20:22 +00:00
fInfo, err := os.Stat(stdout)
if err != nil {
t.Fatalf("failed to get stdout of process: %v", err)
}
if fInfo.Size() == 0 {
t.Fatalf("stdout of process is empty")
}
2015-09-03 14:49:39 +00:00
// need to kill long lived process
err = handle.Kill()
if err != nil {
t.Fatalf("Error: %s", err)
}
2015-09-01 21:57:21 +00:00
}
func TestJavaDriver_Start_Kill_Wait(t *testing.T) {
t.Parallel()
if !javaLocated() {
t.Skip("Java not found; skipping")
}
ctestutils.JavaCompatible(t)
2015-09-01 21:57:21 +00:00
task := &structs.Task{
2015-09-25 23:49:14 +00:00
Name: "demo-app",
Config: map[string]interface{}{
2016-03-15 20:28:25 +00:00
"jar_path": "demoapp.jar",
2015-09-01 21:57:21 +00:00
},
2016-02-10 21:54:54 +00:00
LogConfig: &structs.LogConfig{
MaxFiles: 10,
MaxFileSizeMB: 10,
},
Resources: basicResources,
2015-09-01 21:57:21 +00:00
}
2015-09-25 23:49:14 +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 := NewJavaDriver(driverCtx)
2016-03-15 20:28:25 +00:00
// Copy the test jar into the task's directory
dst, _ := execCtx.AllocDir.TaskDirs[task.Name]
copyFile("./test-resources/java/demoapp.jar", filepath.Join(dst, "demoapp.jar"), t)
2016-01-06 02:02:11 +00:00
handle, err := d.Start(execCtx, task)
2015-09-01 21:57:21 +00:00
if err != nil {
t.Fatalf("err: %v", err)
}
if handle == nil {
t.Fatalf("missing handle")
}
go func() {
time.Sleep(100 * time.Millisecond)
err := handle.Kill()
if err != nil {
t.Fatalf("err: %v", err)
}
}()
// Task should terminate quickly
select {
case res := <-handle.WaitCh():
if res.Successful() {
2015-09-26 00:55:29 +00:00
t.Fatal("should err")
2015-09-01 21:57:21 +00:00
}
2016-01-21 23:24:24 +00:00
case <-time.After(time.Duration(testutil.TestMultiplier()*10) * time.Second):
2015-09-01 21:57:21 +00:00
t.Fatalf("timeout")
2015-09-03 14:49:39 +00:00
2016-02-17 18:04:19 +00:00
// Need to kill long lived process
if err = handle.Kill(); err != nil {
t.Fatalf("Error: %s", err)
}
2015-09-03 14:49:39 +00:00
}
2015-09-01 21:57:21 +00:00
}
func TestJavaDriverUser(t *testing.T) {
t.Parallel()
if !javaLocated() {
t.Skip("Java not found; skipping")
}
ctestutils.JavaCompatible(t)
task := &structs.Task{
Name: "demo-app",
User: "alice",
Config: map[string]interface{}{
"jar_path": "demoapp.jar",
},
LogConfig: &structs.LogConfig{
MaxFiles: 10,
MaxFileSizeMB: 10,
},
Resources: basicResources,
}
driverCtx, execCtx := testDriverContexts(task)
defer execCtx.AllocDir.Destroy()
d := NewJavaDriver(driverCtx)
handle, err := d.Start(execCtx, task)
if err == nil {
handle.Kill()
t.Fatalf("Should've failed")
}
msg := "user alice"
if !strings.Contains(err.Error(), msg) {
t.Fatalf("Expecting '%v' in '%v'", msg, err)
}
}