summaryrefslogtreecommitdiffstats
path: root/vespajlib/src/test/java/com/yahoo/system/execution/ProcessExecutorTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'vespajlib/src/test/java/com/yahoo/system/execution/ProcessExecutorTest.java')
-rw-r--r--vespajlib/src/test/java/com/yahoo/system/execution/ProcessExecutorTest.java25
1 files changed, 25 insertions, 0 deletions
diff --git a/vespajlib/src/test/java/com/yahoo/system/execution/ProcessExecutorTest.java b/vespajlib/src/test/java/com/yahoo/system/execution/ProcessExecutorTest.java
new file mode 100644
index 00000000000..b12d66853fe
--- /dev/null
+++ b/vespajlib/src/test/java/com/yahoo/system/execution/ProcessExecutorTest.java
@@ -0,0 +1,25 @@
+// Copyright 2017 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+package com.yahoo.system.execution;
+
+import org.junit.Test;
+
+import java.util.Optional;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertTrue;
+
+/**
+ * @author gjoranv
+ */
+public class ProcessExecutorTest {
+
+ @Test
+ public void echo_can_be_executed() throws Exception {
+ final String message = "Hello from executor!";
+ ProcessExecutor executor = new ProcessExecutor.Builder(10).build();
+ Optional<ProcessResult> result = executor.execute("echo " + message);
+ assertTrue(result.isPresent());
+ assertEquals(message, result.get().stdOut.trim());
+ assertEquals("", result.get().stdErr);
+ }
+}