A few more skips & small fixes

This commit is contained in:
Andrei Savu 2012-06-07 22:54:19 +03:00
parent 1261a4c9b0
commit bc22b99dee
5 changed files with 12 additions and 10 deletions

View File

@ -34,15 +34,16 @@ public enum GuestIPType {
* network. Dhcp role is played by domain router.
*/
VIRTUAL,
/**
* traffic directly to the network and VMs created here are assigned an IP
* directly from the network as configured
*/
DIRECT,
/**
* Not sure what exactly these *are* yet, but I know they exist in CS3.
*/
/**
* TODO: add comments to explain the meaning (cs3 only)
*/
SHARED,
ISOLATED,

View File

@ -56,7 +56,6 @@ public class AccountClientLiveTest extends BaseCloudStackClientLiveTest {
assert user.getLastName() != null : user;
assert user.getFirstName() != null : user;
assert user.getId() != null : user;
assert user.getSecretKey() != null : user;
assert user.getState() != null : user;
}
assert account.getIPsAvailable() == null || account.getIPsAvailable() >= 0 : account;

View File

@ -65,6 +65,7 @@ public class NetworkClientLiveTest extends BaseCloudStackClientLiveTest {
}
}
@Test
public void testCreateGuestVirtualNetwork() {
if (!networksSupported)
return;
@ -94,13 +95,12 @@ public class NetworkClientLiveTest extends BaseCloudStackClientLiveTest {
}
}
@Test
public void testCreateVLANNetwork() {
skipIfNotDomainAdmin();
if (!networksSupported)
return;
if (!domainAdminEnabled) {
Logger.getAnonymousLogger().log(Level.SEVERE, "domainAdmin credentials not present, skipping test");
return;
}
final NetworkOffering offering;
try {
offering = get(
@ -130,6 +130,7 @@ public class NetworkClientLiveTest extends BaseCloudStackClientLiveTest {
}
}
@Test
public void testListNetworks() throws Exception {
if (!networksSupported)
return;

View File

@ -110,8 +110,8 @@ public class TemplateClientLiveTest extends BaseCloudStackClientLiveTest {
return network != null && network.getState().equals("Implemented");
}
});
assertEquals(Iterables.size(networks), 1);
Network network = Iterables.getOnlyElement(networks, null);
assertTrue(Iterables.size(networks) >= 1);
Network network = Iterables.get(networks, 0);
assertNotNull(network);
// Create a VM and stop it

View File

@ -336,6 +336,7 @@ public class VirtualMachineClientLiveTest extends BaseCloudStackClientLiveTest {
super.tearDown();
}
@Test
public void testListVirtualMachines() throws Exception {
Set<VirtualMachine> response = client.getVirtualMachineClient().listVirtualMachines();
assert null != response;