more integration test fixes

brooklyn-software-base, brooklyn-camp, brooklyn-rest-resources


Project: http://git-wip-us.apache.org/repos/asf/brooklyn-server/repo
Commit: http://git-wip-us.apache.org/repos/asf/brooklyn-server/commit/3ec0dd45
Tree: http://git-wip-us.apache.org/repos/asf/brooklyn-server/tree/3ec0dd45
Diff: http://git-wip-us.apache.org/repos/asf/brooklyn-server/diff/3ec0dd45

Branch: refs/heads/master
Commit: 3ec0dd45acbf5a06265f05f6aaa2d764245f3144
Parents: fe2b4b6
Author: Svetoslav Neykov <svetoslav.ney...@cloudsoftcorp.com>
Authored: Thu Nov 10 18:20:35 2016 +0200
Committer: Svetoslav Neykov <svetoslav.ney...@cloudsoftcorp.com>
Committed: Thu Nov 10 23:04:13 2016 +0200

----------------------------------------------------------------------
 camp/camp-brooklyn/pom.xml                      |  2 +-
 .../brooklyn/VanillaBashNetcatYamlTest.java     |  3 +-
 .../ApplicationResourceIntegrationTest.java     | 50 ++++++++++----------
 .../SensorResourceIntegrationTest.java          |  2 +
 .../BrooklynClusterIntegrationTest.java         |  2 +-
 .../BrooklynNodeIntegrationTest.java            | 42 ++++++++--------
 ...SoftwareProcessSshDriverIntegrationTest.java | 16 -------
 .../AbstractSoftwareProcessStreamsTest.java     |  2 +-
 ...laSoftwareProcessStreamsIntegrationTest.java |  5 +-
 9 files changed, 58 insertions(+), 66 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/brooklyn-server/blob/3ec0dd45/camp/camp-brooklyn/pom.xml
----------------------------------------------------------------------
diff --git a/camp/camp-brooklyn/pom.xml b/camp/camp-brooklyn/pom.xml
index 232e5c2..ce0f275 100644
--- a/camp/camp-brooklyn/pom.xml
+++ b/camp/camp-brooklyn/pom.xml
@@ -21,7 +21,7 @@
     <modelVersion>4.0.0</modelVersion>
     <artifactId>brooklyn-camp</artifactId>
     <packaging>jar</packaging>
-    <name>Brooklyn CAMP REST API</name>
+    <name>Brooklyn CAMP</name>
     <description>
         Brooklyn support for the Oasis CAMP server
     </description>

http://git-wip-us.apache.org/repos/asf/brooklyn-server/blob/3ec0dd45/camp/camp-brooklyn/src/test/java/org/apache/brooklyn/camp/brooklyn/VanillaBashNetcatYamlTest.java
----------------------------------------------------------------------
diff --git 
a/camp/camp-brooklyn/src/test/java/org/apache/brooklyn/camp/brooklyn/VanillaBashNetcatYamlTest.java
 
b/camp/camp-brooklyn/src/test/java/org/apache/brooklyn/camp/brooklyn/VanillaBashNetcatYamlTest.java
index f3a345d..bf8685b 100644
--- 
a/camp/camp-brooklyn/src/test/java/org/apache/brooklyn/camp/brooklyn/VanillaBashNetcatYamlTest.java
+++ 
b/camp/camp-brooklyn/src/test/java/org/apache/brooklyn/camp/brooklyn/VanillaBashNetcatYamlTest.java
@@ -49,7 +49,8 @@ public class VanillaBashNetcatYamlTest extends 
AbstractYamlTest {
     private static final AttributeSensor<String> SENSOR_OUTPUT_ALL = 
Sensors.newStringSensor("output.all");
     final static Effector<String> EFFECTOR_SAY_HI = 
Effectors.effector(String.class, "sayHiNetcat").buildAbstract();
     
-    @Test(groups="Integration")
+    // OSX specific test because of netcat arguments
+    @Test(groups={"Integration","Broken"})
     public void testInvocationSensorAndEnricher() throws Exception {
         Preconditions.checkArgument(Networking.isPortAvailable(4321), "port 
4321 must not be in use (no leaked nc instances) for this test to succeed!");
         

http://git-wip-us.apache.org/repos/asf/brooklyn-server/blob/3ec0dd45/rest/rest-resources/src/test/java/org/apache/brooklyn/rest/resources/ApplicationResourceIntegrationTest.java
----------------------------------------------------------------------
diff --git 
a/rest/rest-resources/src/test/java/org/apache/brooklyn/rest/resources/ApplicationResourceIntegrationTest.java
 
b/rest/rest-resources/src/test/java/org/apache/brooklyn/rest/resources/ApplicationResourceIntegrationTest.java
index 743eee4..e1a6de5 100644
--- 
a/rest/rest-resources/src/test/java/org/apache/brooklyn/rest/resources/ApplicationResourceIntegrationTest.java
+++ 
b/rest/rest-resources/src/test/java/org/apache/brooklyn/rest/resources/ApplicationResourceIntegrationTest.java
@@ -24,13 +24,12 @@ import static org.testng.Assert.assertTrue;
 import java.net.URI;
 import java.util.Set;
 
+import javax.ws.rs.core.GenericType;
 import javax.ws.rs.core.MediaType;
 import javax.ws.rs.core.Response;
 
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-import org.testng.annotations.Test;
 import org.apache.brooklyn.core.entity.lifecycle.Lifecycle;
+import org.apache.brooklyn.entity.software.base.EmptySoftwareProcess;
 import org.apache.brooklyn.rest.domain.ApplicationSpec;
 import org.apache.brooklyn.rest.domain.ApplicationSummary;
 import org.apache.brooklyn.rest.domain.EntitySpec;
@@ -39,27 +38,30 @@ import org.apache.brooklyn.rest.domain.SensorSummary;
 import org.apache.brooklyn.rest.testing.BrooklynRestResourceTest;
 import org.apache.brooklyn.test.Asserts;
 import org.apache.brooklyn.util.collections.MutableMap;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+import org.testng.annotations.Test;
 
 import com.google.common.base.Predicate;
 import com.google.common.collect.ImmutableMap;
 import com.google.common.collect.ImmutableSet;
 import com.google.common.collect.Iterables;
-import javax.ws.rs.core.GenericType;
 
-@Test(singleThreaded = true)
+@Test( // by using a different suite name we disallow interleaving other tests 
between the methods of this test class, which wrecks the test fixtures
+        suiteName = "ApplicationResourceIntegrationTest")
 public class ApplicationResourceIntegrationTest extends 
BrooklynRestResourceTest {
 
     @SuppressWarnings("unused")
     private static final Logger log = 
LoggerFactory.getLogger(ApplicationResourceIntegrationTest.class);
 
-    private final ApplicationSpec redisSpec = 
ApplicationSpec.builder().name("redis-app")
-            .entities(ImmutableSet.of(new EntitySpec("redis-ent", 
"org.apache.brooklyn.entity.nosql.redis.RedisStore")))
+    private final ApplicationSpec simpleSpec = 
ApplicationSpec.builder().name("simple-app")
+            .entities(ImmutableSet.of(new EntitySpec("simple-ent", 
EmptySoftwareProcess.class.getName())))
             .locations(ImmutableSet.of("localhost"))
             .build();
 
     @Test(groups="Integration")
-    public void testDeployRedisApplication() throws Exception {
-        Response response = clientDeploy(redisSpec);
+    public void testDeploySimpleApplication() throws Exception {
+        Response response = clientDeploy(simpleSpec);
 
         assertEquals(response.getStatus(), 201);
         assertEquals(getManagementContext().getApplications().size(), 1);
@@ -68,9 +70,9 @@ public class ApplicationResourceIntegrationTest extends 
BrooklynRestResourceTest
         waitForApplicationToBeRunning(response.getLocation());
     }
 
-    @Test(groups="Integration", dependsOnMethods = 
"testDeployRedisApplication")
+    @Test(groups="Integration", dependsOnMethods = 
"testDeploySimpleApplication")
     public void testListEntities() {
-        Set<EntitySummary> entities = 
client().path("/applications/redis-app/entities")
+        Set<EntitySummary> entities = 
client().path("/applications/simple-app/entities")
                 .get(new GenericType<Set<EntitySummary>>() {});
 
         for (EntitySummary entity : entities) {
@@ -83,28 +85,28 @@ public class ApplicationResourceIntegrationTest extends 
BrooklynRestResourceTest
         }
     }
 
-    @Test(groups="Integration", dependsOnMethods = 
"testDeployRedisApplication")
-    public void testListSensorsRedis() {
-        Set<SensorSummary> sensors = 
client().path("/applications/redis-app/entities/redis-ent/sensors")
+    @Test(groups="Integration", dependsOnMethods = 
"testDeploySimpleApplication")
+    public void testListSensors() {
+        Set<SensorSummary> sensors = 
client().path("/applications/simple-app/entities/simple-ent/sensors")
                 .get(new GenericType<Set<SensorSummary>>() {});
         assertTrue(sensors.size() > 0);
         SensorSummary uptime = Iterables.find(sensors, new 
Predicate<SensorSummary>() {
             @Override
             public boolean apply(SensorSummary sensorSummary) {
-                return sensorSummary.getName().equals("redis.uptime");
+                return 
sensorSummary.getName().equals("service.process.isRunning");
             }
         });
-        assertEquals(uptime.getType(), "java.lang.Integer");
+        assertEquals(uptime.getType(), "java.lang.Boolean");
     }
 
-    @Test(groups="Integration", dependsOnMethods = { "testListSensorsRedis", 
"testListEntities" })
-    public void testTriggerRedisStopEffector() throws Exception {
-        Response response = 
client().path("/applications/redis-app/entities/redis-ent/effectors/stop")
+    @Test(groups="Integration", dependsOnMethods = { "testListSensors", 
"testListEntities" })
+    public void testTriggerStopEffector() throws Exception {
+        Response response = 
client().path("/applications/simple-app/entities/simple-ent/effectors/stop")
                 .type(MediaType.APPLICATION_JSON_TYPE)
                 .post(toJsonEntity(ImmutableMap.of()));
         assertEquals(response.getStatus(), 
Response.Status.ACCEPTED.getStatusCode());
 
-        final URI stateSensor = 
URI.create("/applications/redis-app/entities/redis-ent/sensors/service.state");
+        final URI stateSensor = 
URI.create("/applications/simple-app/entities/simple-ent/sensors/service.state");
         final String expectedStatus = Lifecycle.STOPPED.toString();
         Asserts.succeedsEventually(MutableMap.of("timeout", 60 * 1000), new 
Runnable() {
             public void run() {
@@ -117,13 +119,13 @@ public class ApplicationResourceIntegrationTest extends 
BrooklynRestResourceTest
         });
     }
 
-    @Test(groups="Integration", dependsOnMethods = 
"testTriggerRedisStopEffector" )
-    public void testDeleteRedisApplication() throws Exception {
+    @Test(groups="Integration", dependsOnMethods = "testTriggerStopEffector" )
+    public void testDeleteApplication() throws Exception {
         int size = getManagementContext().getApplications().size();
-        Response response = client().path("/applications/redis-app")
+        Response response = client().path("/applications/simple-app")
                 .delete();
 
-        waitForPageNotFoundResponse("/applications/redis-app", 
ApplicationSummary.class);
+        waitForPageNotFoundResponse("/applications/simple-app", 
ApplicationSummary.class);
 
         assertEquals(response.getStatus(), 
Response.Status.ACCEPTED.getStatusCode());
         assertEquals(getManagementContext().getApplications().size(), size-1);

http://git-wip-us.apache.org/repos/asf/brooklyn-server/blob/3ec0dd45/rest/rest-resources/src/test/java/org/apache/brooklyn/rest/resources/SensorResourceIntegrationTest.java
----------------------------------------------------------------------
diff --git 
a/rest/rest-resources/src/test/java/org/apache/brooklyn/rest/resources/SensorResourceIntegrationTest.java
 
b/rest/rest-resources/src/test/java/org/apache/brooklyn/rest/resources/SensorResourceIntegrationTest.java
index 7cf082b..41bcb70 100644
--- 
a/rest/rest-resources/src/test/java/org/apache/brooklyn/rest/resources/SensorResourceIntegrationTest.java
+++ 
b/rest/rest-resources/src/test/java/org/apache/brooklyn/rest/resources/SensorResourceIntegrationTest.java
@@ -41,6 +41,8 @@ import org.testng.annotations.Test;
 import com.google.common.collect.ImmutableMap;
 import com.google.common.collect.Iterables;
 
+@Test( // by using a different suite name we disallow interleaving other tests 
between the methods of this test class, which wrecks the test fixtures
+        suiteName = "SensorResourceIntegrationTest")
 public class SensorResourceIntegrationTest extends BrooklynRestResourceTest {
 
     private ManagementContext mgmt;

http://git-wip-us.apache.org/repos/asf/brooklyn-server/blob/3ec0dd45/software/base/src/test/java/org/apache/brooklyn/entity/brooklynnode/BrooklynClusterIntegrationTest.java
----------------------------------------------------------------------
diff --git 
a/software/base/src/test/java/org/apache/brooklyn/entity/brooklynnode/BrooklynClusterIntegrationTest.java
 
b/software/base/src/test/java/org/apache/brooklyn/entity/brooklynnode/BrooklynClusterIntegrationTest.java
index f4074c0..1e91d2d 100644
--- 
a/software/base/src/test/java/org/apache/brooklyn/entity/brooklynnode/BrooklynClusterIntegrationTest.java
+++ 
b/software/base/src/test/java/org/apache/brooklyn/entity/brooklynnode/BrooklynClusterIntegrationTest.java
@@ -76,7 +76,7 @@ public class BrooklynClusterIntegrationTest extends 
BrooklynAppUnitTestSupport {
         }
     }
 
-    @Test(groups="Integration")
+    @Test(groups={"Integration", "Broken"})
     public void testCanStartAndStop() throws Exception {
         BrooklynCluster cluster = 
app.createAndManageChild(EntitySpec.create(BrooklynCluster.class)
                 .configure(BrooklynCluster.INITIAL_SIZE, 1)

http://git-wip-us.apache.org/repos/asf/brooklyn-server/blob/3ec0dd45/software/base/src/test/java/org/apache/brooklyn/entity/brooklynnode/BrooklynNodeIntegrationTest.java
----------------------------------------------------------------------
diff --git 
a/software/base/src/test/java/org/apache/brooklyn/entity/brooklynnode/BrooklynNodeIntegrationTest.java
 
b/software/base/src/test/java/org/apache/brooklyn/entity/brooklynnode/BrooklynNodeIntegrationTest.java
index 4d4c92e..4ea842e 100644
--- 
a/software/base/src/test/java/org/apache/brooklyn/entity/brooklynnode/BrooklynNodeIntegrationTest.java
+++ 
b/software/base/src/test/java/org/apache/brooklyn/entity/brooklynnode/BrooklynNodeIntegrationTest.java
@@ -172,7 +172,7 @@ services:
          */
     }
 
-    @Test(groups="Integration")
+    @Test(groups={"Integration", "Broken"})
     public void testCanStartAndStop() throws Exception {
         BrooklynNode brooklynNode = 
app.createAndManageChild(newBrooklynNodeSpecForTest());
         app.start(locs);
@@ -184,7 +184,7 @@ services:
         EntityAsserts.assertAttributeEquals(brooklynNode, 
BrooklynNode.SERVICE_UP, false);
     }
 
-    @Test(groups="Integration")
+    @Test(groups={"Integration", "Broken"})
     public void testSetsGlobalBrooklynPropertiesFromContents() throws 
Exception {
         BrooklynNode brooklynNode = 
app.createAndManageChild(newBrooklynNodeSpecForTest()
                 
.configure(BrooklynNode.BROOKLYN_GLOBAL_PROPERTIES_REMOTE_PATH, 
pseudoBrooklynPropertiesFile.getAbsolutePath())
@@ -195,7 +195,7 @@ services:
         assertEquals(Files.readLines(pseudoBrooklynPropertiesFile, 
Charsets.UTF_8), ImmutableList.of("abc=def"));
     }
 
-    @Test(groups="Integration")
+    @Test(groups={"Integration", "Broken"})
     public void testSetsLocalBrooklynPropertiesFromContents() throws Exception 
{
         BrooklynNode brooklynNode = 
app.createAndManageChild(newBrooklynNodeSpecForTest()
                 .configure(BrooklynNode.BROOKLYN_LOCAL_PROPERTIES_REMOTE_PATH, 
pseudoBrooklynPropertiesFile.getAbsolutePath())
@@ -206,7 +206,7 @@ services:
         assertEquals(Files.readLines(pseudoBrooklynPropertiesFile, 
Charsets.UTF_8), ImmutableList.of("abc=def"));
     }
 
-    @Test(groups="Integration")
+    @Test(groups={"Integration", "Broken"})
     public void testSetsBrooklynPropertiesFromUri() throws Exception {
         File brooklynPropertiesSourceFile = 
File.createTempFile("brooklynnode-test", ".properties");
         Files.write("abc=def", brooklynPropertiesSourceFile, Charsets.UTF_8);
@@ -220,7 +220,7 @@ services:
         assertEquals(Files.readLines(pseudoBrooklynPropertiesFile, 
Charsets.UTF_8), ImmutableList.of("abc=def"));
     }
 
-    @Test(groups="Integration")
+    @Test(groups={"Integration", "Broken"})
     public void testSetsBrooklynCatalogFromContents() throws Exception {
         BrooklynNode brooklynNode = 
app.createAndManageChild(newBrooklynNodeSpecForTest()
                 .configure(BrooklynNode.BROOKLYN_CATALOG_REMOTE_PATH, 
pseudoBrooklynCatalogFile.getAbsolutePath())
@@ -231,7 +231,7 @@ services:
         assertEquals(Files.readLines(pseudoBrooklynCatalogFile, 
Charsets.UTF_8), ImmutableList.of("<catalog/>"));
     }
 
-    @Test(groups="Integration")
+    @Test(groups={"Integration", "Broken"})
     public void testSetsBrooklynCatalogFromUri() throws Exception {
         Files.write("abc=def", brooklynCatalogSourceFile, Charsets.UTF_8);
 
@@ -244,17 +244,17 @@ services:
         assertEquals(Files.readLines(pseudoBrooklynCatalogFile, 
Charsets.UTF_8), ImmutableList.of("abc=def"));
     }
 
-    @Test(groups="Integration")
+    @Test(groups={"Integration", "Broken"})
     public void testSetsBrooklynCatalogInitialBomFromContents() throws 
Exception {
         runBrooklynCatalogInitialBom(false);
     }
     
-    @Test(groups="Integration")
+    @Test(groups={"Integration", "Broken"})
     public void testSetsBrooklynCatalogInitialBomFromUri() throws Exception {
         runBrooklynCatalogInitialBom(true);
     }
     
-    @Test(groups="Integration")
+    @Test(groups={"Integration", "Broken"})
     public void runBrooklynCatalogInitialBom(boolean useUri) throws Exception {
         String catalogContents = Joiner.on("\n").join(
                 "brooklyn.catalog:",
@@ -297,7 +297,7 @@ services:
             "\"?(running|RUNNING)\"?");
     }
 
-    @Test(groups="Integration")
+    @Test(groups={"Integration", "Broken"})
     public void testCopiesResources() throws Exception {
         File sourceFile = File.createTempFile("brooklynnode-test", 
".properties");
         Files.write("abc=def", sourceFile, Charsets.UTF_8);
@@ -319,7 +319,7 @@ services:
         }
     }
 
-    @Test(groups="Integration")
+    @Test(groups={"Integration", "Broken"})
     public void testCopiesClasspathEntriesInConfigKey() throws Exception {
         String content = "abc=def";
         File classpathEntry1 = File.createTempFile("first", ".properties");
@@ -350,7 +350,7 @@ services:
         }
     }
 
-    @Test(groups="Integration")
+    @Test(groups={"Integration", "Broken"})
     public void testCopiesClasspathEntriesInConfigKey2() throws Exception {
         String content = "abc=def";
         File classpathEntry1 = File.createTempFile("first", ".properties");
@@ -467,7 +467,7 @@ services:
 
     // TODO test that the classpath set above is actually used
 
-    @Test(groups="Integration")
+    @Test(groups={"Integration", "Broken"})
     public void testSetsBrooklynWebConsolePort() throws Exception {
         BrooklynNode brooklynNode = 
app.createAndManageChild(newBrooklynNodeSpecForTest()
                 .configure(BrooklynNode.HTTP_PORT, 
PortRanges.fromString("45000+")));
@@ -481,7 +481,7 @@ services:
         HttpTestUtils.assertHttpStatusCodeEquals(webConsoleUri.toString(), 
200, 401);
     }
 
-    @Test(groups="Integration")
+    @Test(groups={"Integration", "Broken"})
     public void testStartsAppOnStartup() throws Exception {
         BrooklynNode brooklynNode = 
app.createAndManageChild(newBrooklynNodeSpecForTest()
                 .configure(BrooklynNode.APP, 
BasicApplicationImpl.class.getName()));
@@ -521,7 +521,7 @@ services:
             }});
     }
 
-    @Test(groups="Integration")
+    @Test(groups={"Integration", "Broken"})
     public void testStartsAppViaEffector() throws Exception {
         BrooklynNode brooklynNode = 
app.createAndManageChild(newBrooklynNodeSpecForTest());
         app.start(locs);
@@ -544,7 +544,7 @@ services:
             "\"?(running|RUNNING)\"?");
     }
     
-    @Test(groups="Integration")
+    @Test(groups={"Integration", "Broken"})
     public void testUsesLocation() throws Exception {
         String brooklynPropertiesContents = 
             "brooklyn.location.named.mynamedloc=localhost:(name=myname)\n"+
@@ -578,7 +578,7 @@ services:
         assertEquals(parseJson(locatedLocationsContent, 
ImmutableList.of(appLocationId, "longitude"), Double.class), 45.6, 0.00001);
     }
 
-    @Test(groups="Integration")
+    @Test(groups={"Integration", "Broken"})
     public void testAuthenticationAndHttps() throws Exception {
         String adminPassword = "p4ssw0rd";
         BrooklynNode brooklynNode = 
app.createAndManageChild(newBrooklynNodeSpecForTest()
@@ -611,7 +611,7 @@ services:
         Assert.assertEquals(response.getResponseCode(), 200);
     }
 
-    @Test(groups="Integration")
+    @Test(groups={"Integration", "Broken"})
     public void testStopPlainThrowsException() throws Exception {
         BrooklynNode brooklynNode = setUpBrooklynNodeWithApp();
 
@@ -637,17 +637,17 @@ services:
         }
     }
 
-    @Test(groups="Integration")
+    @Test(groups={"Integration", "Broken"})
     public void testStopAndKillAppsEffector() throws Exception {
         createNodeAndExecStopEffector(BrooklynNode.STOP_NODE_AND_KILL_APPS);
     }
 
-    @Test(groups="Integration")
+    @Test(groups={"Integration", "Broken"})
     public void testStopButLeaveAppsEffector() throws Exception {
         createNodeAndExecStopEffector(BrooklynNode.STOP_NODE_BUT_LEAVE_APPS);
     }
     
-    @Test(groups="Integration")
+    @Test(groups={"Integration", "Broken"})
     public void testStopAndRestartProcess() throws Exception {
         persistenceDir = Files.createTempDir();
         BrooklynNode brooklynNode = 
app.createAndManageChild(newBrooklynNodeSpecForTest()

http://git-wip-us.apache.org/repos/asf/brooklyn-server/blob/3ec0dd45/software/base/src/test/java/org/apache/brooklyn/entity/java/JavaSoftwareProcessSshDriverIntegrationTest.java
----------------------------------------------------------------------
diff --git 
a/software/base/src/test/java/org/apache/brooklyn/entity/java/JavaSoftwareProcessSshDriverIntegrationTest.java
 
b/software/base/src/test/java/org/apache/brooklyn/entity/java/JavaSoftwareProcessSshDriverIntegrationTest.java
index 425c831..d39ed94 100644
--- 
a/software/base/src/test/java/org/apache/brooklyn/entity/java/JavaSoftwareProcessSshDriverIntegrationTest.java
+++ 
b/software/base/src/test/java/org/apache/brooklyn/entity/java/JavaSoftwareProcessSshDriverIntegrationTest.java
@@ -131,22 +131,6 @@ public class JavaSoftwareProcessSshDriverIntegrationTest 
extends BrooklynAppLive
         Os.deleteRecursively(dir2);
     }
 
-    @Test(groups = "Integration")
-    public void testStartsInLegacySpecifiedDirectory() throws Exception {
-        String dir1 = Os.mergePathsUnix(Os.tmp(), 
"/brooklyn-test-"+Strings.makeRandomId(4));
-        String dir2 = Os.mergePathsUnix(Os.tmp(), 
"/brooklyn-test-"+Strings.makeRandomId(4));
-        tearDown();
-        mgmt = new LocalManagementContextForTests();
-        mgmt.getBrooklynProperties().put("brooklyn.dirs.install", dir1);
-        mgmt.getBrooklynProperties().put("brooklyn.dirs.run", dir2);
-        setUp();
-
-        app.config().set(BrooklynConfigKeys.RUN_DIR, dir2);
-        doTestSpecifiedDirectory(dir1, dir2);
-        Os.deleteRecursively(dir1);
-        Os.deleteRecursively(dir2);
-    }
-
     protected void doTestSpecifiedDirectory(final String installDirPrefix, 
final String runDirPrefix) throws Exception {
         final MyEntity entity = 
app.createAndManageChild(EntitySpec.create(MyEntity.class));
         app.start(ImmutableList.of(localhost));

http://git-wip-us.apache.org/repos/asf/brooklyn-server/blob/3ec0dd45/software/base/src/test/java/org/apache/brooklyn/entity/software/base/AbstractSoftwareProcessStreamsTest.java
----------------------------------------------------------------------
diff --git 
a/software/base/src/test/java/org/apache/brooklyn/entity/software/base/AbstractSoftwareProcessStreamsTest.java
 
b/software/base/src/test/java/org/apache/brooklyn/entity/software/base/AbstractSoftwareProcessStreamsTest.java
index 4197551..75216f7 100644
--- 
a/software/base/src/test/java/org/apache/brooklyn/entity/software/base/AbstractSoftwareProcessStreamsTest.java
+++ 
b/software/base/src/test/java/org/apache/brooklyn/entity/software/base/AbstractSoftwareProcessStreamsTest.java
@@ -94,7 +94,7 @@ public abstract class AbstractSoftwareProcessStreamsTest 
extends BrooklynAppLive
             String stdout = getStreamOrFail(subTask, 
BrooklynTaskTags.STREAM_STDOUT);
             String stderr = getStreamOrFail(subTask, 
BrooklynTaskTags.STREAM_STDERR);
 //            String env = getStreamOrFail(subTask, 
BrooklynTaskTags.STREAM_ENV);
-            String msg = "stdin="+stdin+"; stdout="+stdout+"; stderr="+stderr; 
//+"; env="+env;
+            String msg = "taskName='" + taskNameRegex + "'; expected=" + 
echoed + "; actual=" + stdout + 
"\nstdin="+stdin+"\nstdout="+stdout+"\nstderr="+stderr; //+"; env="+env;
 
             assertTrue(stdin.contains("echo "+echoed), msg);
             assertTrue(stdout.contains(echoed), msg);

http://git-wip-us.apache.org/repos/asf/brooklyn-server/blob/3ec0dd45/software/base/src/test/java/org/apache/brooklyn/entity/software/base/VanillaSoftwareProcessStreamsIntegrationTest.java
----------------------------------------------------------------------
diff --git 
a/software/base/src/test/java/org/apache/brooklyn/entity/software/base/VanillaSoftwareProcessStreamsIntegrationTest.java
 
b/software/base/src/test/java/org/apache/brooklyn/entity/software/base/VanillaSoftwareProcessStreamsIntegrationTest.java
index 2712b84..ee630b5 100644
--- 
a/software/base/src/test/java/org/apache/brooklyn/entity/software/base/VanillaSoftwareProcessStreamsIntegrationTest.java
+++ 
b/software/base/src/test/java/org/apache/brooklyn/entity/software/base/VanillaSoftwareProcessStreamsIntegrationTest.java
@@ -37,7 +37,10 @@ public class VanillaSoftwareProcessStreamsIntegrationTest 
extends AbstractSoftwa
         localhost = 
app.getManagementContext().getLocationRegistry().getLocationManaged("localhost");
     }
 
-    @Test(groups = "Integration")
+    // Fails on subsequent runs because "BROOKLYN" marker already created in 
+    // install folder so install step not executed.
+    // TODO Tests leave a lot of garbage in /tmp - should clean up after 
themselves.
+    @Test(groups = {"Integration", "Broken"})
     @Override
     public void testGetsStreams() {
         Map<String, String> cmds = getCommands();

Reply via email to