Search in sources :

Example 6 with UpdateVmNicIpCmd

use of com.cloud.api.command.user.vm.UpdateVmNicIpCmd in project cosmic by MissionCriticalCloud.

the class UpdateVmNicIpTest method testFailure.

@Test
public void testFailure() throws ResourceAllocationException, ResourceUnavailableException, ConcurrentOperationException, InsufficientCapacityException {
    final UserVmService userVmService = Mockito.mock(UserVmService.class);
    updateVmNicIpCmd = Mockito.mock(UpdateVmNicIpCmd.class);
    Mockito.when(userVmService.updateNicIpForVirtualMachine(Mockito.any(UpdateVmNicIpCmd.class))).thenReturn(null);
    updateVmNicIpCmd._userVmService = userVmService;
    updateVmNicIpCmd._responseGenerator = responseGenerator;
    try {
        updateVmNicIpCmd.execute();
    } catch (final ServerApiException exception) {
        Assert.assertEquals("Failed to update ip address on vm NIC. Refer to server logs for details.", exception.getDescription());
    }
}
Also used : UserVmService(com.cloud.vm.UserVmService) ServerApiException(com.cloud.api.ServerApiException) UpdateVmNicIpCmd(com.cloud.api.command.user.vm.UpdateVmNicIpCmd) Test(org.junit.Test)

Example 7 with UpdateVmNicIpCmd

use of com.cloud.api.command.user.vm.UpdateVmNicIpCmd in project cosmic by MissionCriticalCloud.

the class UserVmManagerTest method testUpdateVmNicIpFailure1.

// vm is running in network with dhcp support
@Test(expected = InvalidParameterValueException.class)
public void testUpdateVmNicIpFailure1() throws Exception {
    final UpdateVmNicIpCmd cmd = new UpdateVmNicIpCmd();
    final Class<?> _class = cmd.getClass();
    final Field virtualmachineIdField = _class.getDeclaredField("nicId");
    virtualmachineIdField.setAccessible(true);
    virtualmachineIdField.set(cmd, 1L);
    final Field accountNameField = _class.getDeclaredField("ipAddr");
    accountNameField.setAccessible(true);
    accountNameField.set(cmd, "10.10.10.10");
    final NicVO nic = new NicVO("nic", 1L, 2L, VirtualMachine.Type.User);
    when(_nicDao.findById(anyLong())).thenReturn(nic);
    when(_vmDao.findById(anyLong())).thenReturn(_vmMock);
    when(_networkDao.findById(anyLong())).thenReturn(_networkMock);
    when(_networkMock.getState()).thenReturn(Network.State.Implemented);
    doReturn(9L).when(_networkMock).getNetworkOfferingId();
    when(_networkOfferingDao.findByIdIncludingRemoved(anyLong())).thenReturn(_networkOfferingMock);
    doReturn(10L).when(_networkOfferingMock).getId();
    final List<Service> services = new ArrayList<>();
    services.add(Service.Dhcp);
    when(_networkModel.listNetworkOfferingServices(anyLong())).thenReturn(services);
    when(_vmMock.getState()).thenReturn(State.Running);
    final Account caller = new AccountVO("testaccount", 1, "networkdomain", (short) 0, UUID.randomUUID().toString());
    final UserVO user = new UserVO(1, "testuser", "password", "firstname", "lastName", "email", "timezone", UUID.randomUUID().toString(), User.Source.UNKNOWN);
    CallContext.register(user, caller);
    try {
        _userVmMgr.updateNicIpForVirtualMachine(cmd);
    } finally {
        CallContext.unregister();
    }
}
Also used : Field(java.lang.reflect.Field) Account(com.cloud.user.Account) UserVO(com.cloud.user.UserVO) ArrayList(java.util.ArrayList) AccountService(com.cloud.user.AccountService) ResourceLimitService(com.cloud.user.ResourceLimitService) Service(com.cloud.network.Network.Service) NetworkOrchestrationService(com.cloud.engine.orchestration.service.NetworkOrchestrationService) VolumeOrchestrationService(com.cloud.engine.orchestration.service.VolumeOrchestrationService) UpdateVmNicIpCmd(com.cloud.api.command.user.vm.UpdateVmNicIpCmd) AccountVO(com.cloud.user.AccountVO) Test(org.junit.Test)

Aggregations

UpdateVmNicIpCmd (com.cloud.api.command.user.vm.UpdateVmNicIpCmd)7 Test (org.junit.Test)7 NetworkOrchestrationService (com.cloud.engine.orchestration.service.NetworkOrchestrationService)5 VolumeOrchestrationService (com.cloud.engine.orchestration.service.VolumeOrchestrationService)5 Service (com.cloud.network.Network.Service)5 Account (com.cloud.user.Account)5 AccountService (com.cloud.user.AccountService)5 AccountVO (com.cloud.user.AccountVO)5 ResourceLimitService (com.cloud.user.ResourceLimitService)5 UserVO (com.cloud.user.UserVO)5 Field (java.lang.reflect.Field)5 ArrayList (java.util.ArrayList)5 UserVmService (com.cloud.vm.UserVmService)2 ResponseGenerator (com.cloud.api.ResponseGenerator)1 ServerApiException (com.cloud.api.ServerApiException)1 UserVmResponse (com.cloud.api.response.UserVmResponse)1 DeployDestination (com.cloud.deploy.DeployDestination)1 UserVm (com.cloud.uservm.UserVm)1 LinkedList (java.util.LinkedList)1