You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@brooklyn.apache.org by sv...@apache.org on 2016/09/26 16:37:19 UTC

[2/5] brooklyn-server git commit: Mark failing tests as broken in JcloudsLoginLiveTest

Mark failing tests as broken in JcloudsLoginLiveTest

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

Branch: refs/heads/master
Commit: d0d8cf09755c6adbdd6c5990aa77ab2a7f4d74b6
Parents: d49441d
Author: Aled Sage <al...@gmail.com>
Authored: Fri Sep 23 19:07:48 2016 +0100
Committer: Aled Sage <al...@gmail.com>
Committed: Fri Sep 23 19:07:48 2016 +0100

----------------------------------------------------------------------
 .../apache/brooklyn/location/jclouds/JcloudsLoginLiveTest.java | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/brooklyn-server/blob/d0d8cf09/locations/jclouds/src/test/java/org/apache/brooklyn/location/jclouds/JcloudsLoginLiveTest.java
----------------------------------------------------------------------
diff --git a/locations/jclouds/src/test/java/org/apache/brooklyn/location/jclouds/JcloudsLoginLiveTest.java b/locations/jclouds/src/test/java/org/apache/brooklyn/location/jclouds/JcloudsLoginLiveTest.java
index 8c2b68b..0b737b9 100644
--- a/locations/jclouds/src/test/java/org/apache/brooklyn/location/jclouds/JcloudsLoginLiveTest.java
+++ b/locations/jclouds/src/test/java/org/apache/brooklyn/location/jclouds/JcloudsLoginLiveTest.java
@@ -172,12 +172,14 @@ public class JcloudsLoginLiveTest extends AbstractJcloudsLiveTest {
         }
     }
 
-    @Test(groups = {"Live"})
+    // TODO Fails when ssh'ing during obtain(), because it prefers the password over the ssh key
+    @Test(groups = {"Live", "Broken"})
     public void testSpecifyingPasswordAndSshKeysPrefersKeysAndDisablesPassword() throws Exception {
         runSpecifyingPasswordAndSshKeysPrefersKeys(false);
     }
 
-    @Test(groups = {"Live"})
+    // TODO Fails because the password is passed through (so asserting machine config does not have password fails)
+    @Test(groups = {"Live", "Broken"})
     public void testSpecifyingPasswordAndSshKeysPrefersKeysAndAllowsPassword() throws Exception {
         runSpecifyingPasswordAndSshKeysPrefersKeys(true);
     }