mirror of https://github.com/apache/jclouds.git
adding password for ninefold
This commit is contained in:
parent
e08372a8aa
commit
e325217b21
|
@ -39,7 +39,7 @@
|
|||
<test.ninefold-compute.identity>FIXME_IDENTITY</test.ninefold-compute.identity>
|
||||
<test.ninefold-compute.credential>FIXME_CREDENTIAL</test.ninefold-compute.credential>
|
||||
<test.ninefold-compute.image-id>575</test.ninefold-compute.image-id>
|
||||
<test.ninefold-compute.login-user>user</test.ninefold-compute.login-user>
|
||||
<test.ninefold-compute.login-user>user:Password01</test.ninefold-compute.login-user>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
|
|
|
@ -19,6 +19,8 @@
|
|||
package org.jclouds.ninefold.compute.compute;
|
||||
|
||||
import org.jclouds.cloudstack.compute.CloudStackComputeServiceLiveTest;
|
||||
import org.jclouds.compute.domain.ExecResponse;
|
||||
import org.jclouds.compute.domain.NodeMetadata;
|
||||
import org.testng.annotations.Test;
|
||||
|
||||
/**
|
||||
|
@ -32,4 +34,8 @@ public class NinefoldComputeServiceLiveTest extends CloudStackComputeServiceLive
|
|||
provider = "ninefold-compute";
|
||||
}
|
||||
|
||||
protected void checkResponseEqualsHostname(ExecResponse execResponse, NodeMetadata node1) {
|
||||
// hostname is not predictable based on node metadata
|
||||
assert execResponse.getOutput().trim().equals("ubuntu");
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue