mirror of
				https://github.com/apache/cloudstack.git
				synced 2025-10-26 08:42:29 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			1005 lines
		
	
	
		
			44 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			1005 lines
		
	
	
		
			44 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
| // Licensed to the Apache Software Foundation (ASF) under one
 | |
| // or more contributor license agreements.  See the NOTICE file
 | |
| // distributed with this work for additional information
 | |
| // regarding copyright ownership.  The ASF licenses this file
 | |
| // to you under the Apache License, Version 2.0 (the
 | |
| // "License"); you may not use this file except in compliance
 | |
| // with the License.  You may obtain a copy of the License at
 | |
| //
 | |
| //   http://www.apache.org/licenses/LICENSE-2.0
 | |
| //
 | |
| // Unless required by applicable law or agreed to in writing,
 | |
| // software distributed under the License is distributed on an
 | |
| // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 | |
| // KIND, either express or implied.  See the License for the
 | |
| // specific language governing permissions and limitations
 | |
| // under the License.
 | |
| 
 | |
| package com.cloud.vm;
 | |
| 
 | |
| import static org.junit.Assert.assertFalse;
 | |
| import static org.junit.Assert.assertTrue;
 | |
| import static org.mockito.Matchers.any;
 | |
| import static org.mockito.Matchers.anyBoolean;
 | |
| import static org.mockito.Matchers.anyFloat;
 | |
| import static org.mockito.Matchers.anyInt;
 | |
| import static org.mockito.Matchers.anyLong;
 | |
| import static org.mockito.Matchers.anyString;
 | |
| import static org.mockito.Matchers.eq;
 | |
| import static org.mockito.Mockito.doNothing;
 | |
| import static org.mockito.Mockito.doReturn;
 | |
| import static org.mockito.Mockito.doThrow;
 | |
| import static org.mockito.Mockito.mock;
 | |
| import static org.mockito.Mockito.times;
 | |
| import static org.mockito.Mockito.verify;
 | |
| import static org.mockito.Mockito.when;
 | |
| 
 | |
| import java.lang.reflect.Field;
 | |
| import java.util.ArrayList;
 | |
| import java.util.List;
 | |
| import java.util.UUID;
 | |
| 
 | |
| import com.cloud.network.element.UserDataServiceProvider;
 | |
| import com.cloud.storage.Storage;
 | |
| import com.cloud.user.User;
 | |
| import com.cloud.event.dao.UsageEventDao;
 | |
| import com.cloud.uservm.UserVm;
 | |
| import org.junit.Before;
 | |
| import org.junit.Test;
 | |
| import org.mockito.Mock;
 | |
| import org.mockito.Mockito;
 | |
| import org.mockito.MockitoAnnotations;
 | |
| import org.mockito.Spy;
 | |
| 
 | |
| import org.apache.cloudstack.acl.ControlledEntity;
 | |
| import org.apache.cloudstack.acl.SecurityChecker.AccessType;
 | |
| import org.apache.cloudstack.api.ServerApiException;
 | |
| import org.apache.cloudstack.api.command.admin.vm.AssignVMCmd;
 | |
| import org.apache.cloudstack.api.command.user.vm.RestoreVMCmd;
 | |
| import org.apache.cloudstack.api.command.user.vm.ScaleVMCmd;
 | |
| import org.apache.cloudstack.api.command.user.vm.UpdateVmNicIpCmd;
 | |
| import org.apache.cloudstack.context.CallContext;
 | |
| import org.apache.cloudstack.engine.orchestration.service.NetworkOrchestrationService;
 | |
| import org.apache.cloudstack.engine.orchestration.service.VolumeOrchestrationService;
 | |
| import org.apache.cloudstack.framework.config.dao.ConfigurationDao;
 | |
| import org.apache.cloudstack.storage.datastore.db.PrimaryDataStoreDao;
 | |
| import org.apache.cloudstack.storage.datastore.db.StoragePoolVO;
 | |
| import org.apache.cloudstack.storage.datastore.db.TemplateDataStoreVO;
 | |
| 
 | |
| import com.cloud.capacity.CapacityManager;
 | |
| import com.cloud.configuration.ConfigurationManager;
 | |
| import com.cloud.dc.DataCenterVO;
 | |
| import com.cloud.dc.DataCenter.NetworkType;
 | |
| import com.cloud.dc.dao.DataCenterDao;
 | |
| import com.cloud.deploy.DeployDestination;
 | |
| import com.cloud.exception.ConcurrentOperationException;
 | |
| import com.cloud.exception.InsufficientCapacityException;
 | |
| import com.cloud.exception.InvalidParameterValueException;
 | |
| import com.cloud.exception.PermissionDeniedException;
 | |
| import com.cloud.exception.ResourceAllocationException;
 | |
| import com.cloud.exception.ResourceUnavailableException;
 | |
| import com.cloud.hypervisor.Hypervisor;
 | |
| import com.cloud.hypervisor.Hypervisor.HypervisorType;
 | |
| import com.cloud.network.IpAddressManager;
 | |
| import com.cloud.network.Network;
 | |
| import com.cloud.network.Network.GuestType;
 | |
| import com.cloud.network.Network.Service;
 | |
| import com.cloud.network.NetworkModel;
 | |
| import com.cloud.network.dao.IPAddressDao;
 | |
| import com.cloud.network.dao.NetworkDao;
 | |
| import com.cloud.network.dao.NetworkVO;
 | |
| import com.cloud.offering.ServiceOffering;
 | |
| import com.cloud.offerings.NetworkOfferingVO;
 | |
| import com.cloud.offerings.dao.NetworkOfferingDao;
 | |
| import com.cloud.service.ServiceOfferingVO;
 | |
| import com.cloud.service.dao.ServiceOfferingDao;
 | |
| import com.cloud.storage.Storage.ImageFormat;
 | |
| import com.cloud.storage.VMTemplateVO;
 | |
| import com.cloud.storage.Volume;
 | |
| import com.cloud.storage.VolumeVO;
 | |
| import com.cloud.storage.dao.VMTemplateDao;
 | |
| import com.cloud.storage.dao.VolumeDao;
 | |
| import com.cloud.user.Account;
 | |
| import com.cloud.user.AccountManager;
 | |
| import com.cloud.user.AccountService;
 | |
| import com.cloud.user.AccountVO;
 | |
| import com.cloud.user.ResourceLimitService;
 | |
| import com.cloud.user.UserVO;
 | |
| import com.cloud.user.dao.AccountDao;
 | |
| import com.cloud.user.dao.UserDao;
 | |
| import com.cloud.utils.db.EntityManager;
 | |
| import com.cloud.utils.exception.CloudRuntimeException;
 | |
| import com.cloud.vm.VirtualMachine.State;
 | |
| import com.cloud.vm.dao.NicDao;
 | |
| import com.cloud.vm.dao.UserVmDao;
 | |
| import com.cloud.vm.dao.VMInstanceDao;
 | |
| import com.cloud.vm.snapshot.VMSnapshotVO;
 | |
| import com.cloud.vm.snapshot.dao.VMSnapshotDao;
 | |
| import org.apache.cloudstack.storage.datastore.db.TemplateDataStoreDao;
 | |
| 
 | |
| public class UserVmManagerTest {
 | |
| 
 | |
|     @Spy
 | |
|     UserVmManagerImpl _userVmMgr = new UserVmManagerImpl();
 | |
|     @Mock
 | |
|     VirtualMachineManager _itMgr;
 | |
|     @Mock
 | |
|     VolumeOrchestrationService _storageMgr;
 | |
|     @Mock
 | |
|     Account _account;
 | |
|     @Mock
 | |
|     AccountManager _accountMgr;
 | |
|     @Mock
 | |
|     AccountService _accountService;
 | |
|     @Mock
 | |
|     ConfigurationManager _configMgr;
 | |
|     @Mock
 | |
|     CapacityManager _capacityMgr;
 | |
|     @Mock
 | |
|     AccountDao _accountDao;
 | |
|     @Mock
 | |
|     ConfigurationDao _configDao;
 | |
|     @Mock
 | |
|     UserDao _userDao;
 | |
|     @Mock
 | |
|     UserVmDao _vmDao;
 | |
|     @Mock
 | |
|     VMInstanceDao _vmInstanceDao;
 | |
|     @Mock
 | |
|     VMTemplateDao _templateDao;
 | |
|     @Mock
 | |
|     TemplateDataStoreDao _templateStoreDao;
 | |
|     @Mock
 | |
|     VolumeDao _volsDao;
 | |
|     @Mock
 | |
|     RestoreVMCmd _restoreVMCmd;
 | |
|     @Mock
 | |
|     AccountVO _accountMock;
 | |
|     @Mock
 | |
|     UserVO _userMock;
 | |
|     @Mock
 | |
|     UserVmVO _vmMock;
 | |
|     @Mock
 | |
|     VMInstanceVO _vmInstance;
 | |
|     @Mock
 | |
|     VMTemplateVO _templateMock;
 | |
|     @Mock
 | |
|     TemplateDataStoreVO _templateDataStoreMock;
 | |
|     @Mock
 | |
|     VolumeVO _volumeMock;
 | |
|     @Mock
 | |
|     List<VolumeVO> _rootVols;
 | |
|     @Mock
 | |
|     Account _accountMock2;
 | |
|     @Mock
 | |
|     ServiceOfferingDao _offeringDao;
 | |
|     @Mock
 | |
|     ServiceOfferingVO _offeringVo;
 | |
|     @Mock
 | |
|     EntityManager _entityMgr;
 | |
|     @Mock
 | |
|     ResourceLimitService _resourceLimitMgr;
 | |
|     @Mock
 | |
|     PrimaryDataStoreDao _storagePoolDao;
 | |
|     @Mock
 | |
|     UsageEventDao _usageEventDao;
 | |
|     @Mock
 | |
|     VMSnapshotDao _vmSnapshotDao;
 | |
|     @Mock
 | |
|     UpdateVmNicIpCmd _updateVmNicIpCmd;
 | |
|     @Mock
 | |
|     NicDao _nicDao;
 | |
|     @Mock
 | |
|     NicVO _nicMock;
 | |
|     @Mock
 | |
|     NetworkModel _networkModel;
 | |
|     @Mock
 | |
|     NetworkDao _networkDao;
 | |
|     @Mock
 | |
|     NetworkVO _networkMock;
 | |
|     @Mock
 | |
|     DataCenterDao _dcDao;
 | |
|     @Mock
 | |
|     DataCenterVO _dcMock;
 | |
|     @Mock
 | |
|     IpAddressManager _ipAddrMgr;
 | |
|     @Mock
 | |
|     IPAddressDao _ipAddressDao;
 | |
|     @Mock
 | |
|     NetworkOfferingDao _networkOfferingDao;
 | |
|     @Mock
 | |
|     NetworkOfferingVO _networkOfferingMock;
 | |
|     @Mock
 | |
|     NetworkOrchestrationService _networkMgr;
 | |
| 
 | |
|     @Before
 | |
|     public void setup() {
 | |
|         MockitoAnnotations.initMocks(this);
 | |
| 
 | |
|         _userVmMgr._vmDao = _vmDao;
 | |
|         _userVmMgr._vmInstanceDao = _vmInstanceDao;
 | |
|         _userVmMgr._templateDao = _templateDao;
 | |
|         _userVmMgr._templateStoreDao = _templateStoreDao;
 | |
|         _userVmMgr._volsDao = _volsDao;
 | |
|         _userVmMgr._usageEventDao = _usageEventDao;
 | |
|         _userVmMgr._itMgr = _itMgr;
 | |
|         _userVmMgr.volumeMgr = _storageMgr;
 | |
|         _userVmMgr._accountDao = _accountDao;
 | |
|         _userVmMgr._accountService = _accountService;
 | |
|         _userVmMgr._userDao = _userDao;
 | |
|         _userVmMgr._accountMgr = _accountMgr;
 | |
|         _userVmMgr._configMgr = _configMgr;
 | |
|         _userVmMgr._offeringDao = _offeringDao;
 | |
|         _userVmMgr._capacityMgr = _capacityMgr;
 | |
|         _userVmMgr._resourceLimitMgr = _resourceLimitMgr;
 | |
|         _userVmMgr._scaleRetry = 2;
 | |
|         _userVmMgr._entityMgr = _entityMgr;
 | |
|         _userVmMgr._storagePoolDao = _storagePoolDao;
 | |
|         _userVmMgr._vmSnapshotDao = _vmSnapshotDao;
 | |
|         _userVmMgr._nicDao = _nicDao;
 | |
|         _userVmMgr._networkModel = _networkModel;
 | |
|         _userVmMgr._networkDao = _networkDao;
 | |
|         _userVmMgr._dcDao = _dcDao;
 | |
|         _userVmMgr._ipAddrMgr = _ipAddrMgr;
 | |
|         _userVmMgr._ipAddressDao = _ipAddressDao;
 | |
|         _userVmMgr._networkOfferingDao = _networkOfferingDao;
 | |
|         _userVmMgr._networkMgr = _networkMgr;
 | |
| 
 | |
|         doReturn(3L).when(_account).getId();
 | |
|         doReturn(8L).when(_vmMock).getAccountId();
 | |
|         when(_accountDao.findById(anyLong())).thenReturn(_accountMock);
 | |
|         when(_userDao.findById(anyLong())).thenReturn(_userMock);
 | |
|         doReturn(Account.State.enabled).when(_account).getState();
 | |
|         when(_vmMock.getId()).thenReturn(314L);
 | |
|         when(_vmInstance.getId()).thenReturn(1L);
 | |
|         when(_vmInstance.getServiceOfferingId()).thenReturn(2L);
 | |
|         List<VMSnapshotVO> mockList = mock(List.class);
 | |
|         when(_vmSnapshotDao.findByVm(anyLong())).thenReturn(mockList);
 | |
|         when(mockList.size()).thenReturn(0);
 | |
|         when(_templateStoreDao.findByTemplateZoneReady(anyLong(),anyLong())).thenReturn(_templateDataStoreMock);
 | |
| 
 | |
|     }
 | |
| 
 | |
|     // Test restoreVm when VM state not in running/stopped case
 | |
|     @Test(expected = CloudRuntimeException.class)
 | |
|     public void testRestoreVMF1() throws ResourceAllocationException, InsufficientCapacityException, ResourceUnavailableException {
 | |
| 
 | |
|         when(_vmDao.findById(anyLong())).thenReturn(_vmMock);
 | |
|         when(_templateDao.findById(anyLong())).thenReturn(_templateMock);
 | |
|         doReturn(VirtualMachine.State.Error).when(_vmMock).getState();
 | |
|         Account account = new AccountVO("testaccount", 1L, "networkdomain", (short)0, "uuid");
 | |
|         UserVO user = new UserVO(1, "testuser", "password", "firstname", "lastName", "email", "timezone", UUID.randomUUID().toString(), User.Source.UNKNOWN);
 | |
| 
 | |
|         CallContext.register(user, account);
 | |
|         try {
 | |
|             _userVmMgr.restoreVMInternal(_account, _vmMock, null);
 | |
|         } finally {
 | |
|             CallContext.unregister();
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     // Test restoreVm when VM is in stopped state
 | |
|     @Test
 | |
|     public void testRestoreVMF2() throws ResourceUnavailableException, InsufficientCapacityException, ServerApiException, ConcurrentOperationException,
 | |
|         ResourceAllocationException {
 | |
| 
 | |
|         doReturn(VirtualMachine.State.Stopped).when(_vmMock).getState();
 | |
|         when(_vmDao.findById(anyLong())).thenReturn(_vmMock);
 | |
|         when(_volsDao.findByInstanceAndType(314L, Volume.Type.ROOT)).thenReturn(_rootVols);
 | |
|         doReturn(false).when(_rootVols).isEmpty();
 | |
|         when(_rootVols.get(eq(0))).thenReturn(_volumeMock);
 | |
|         doReturn(3L).when(_volumeMock).getTemplateId();
 | |
|         when(_templateDao.findById(anyLong())).thenReturn(_templateMock);
 | |
|         when(_storageMgr.allocateDuplicateVolume(_volumeMock, null)).thenReturn(_volumeMock);
 | |
|         doNothing().when(_volsDao).attachVolume(anyLong(), anyLong(), anyLong());
 | |
|         when(_volumeMock.getId()).thenReturn(3L);
 | |
|         doNothing().when(_volsDao).detachVolume(anyLong());
 | |
| 
 | |
|         when(_templateMock.getUuid()).thenReturn("e0552266-7060-11e2-bbaa-d55f5db67735");
 | |
| 
 | |
|         Account account = new AccountVO("testaccount", 1L, "networkdomain", (short)0, "uuid");
 | |
|         UserVO user = new UserVO(1, "testuser", "password", "firstname", "lastName", "email", "timezone", UUID.randomUUID().toString(), User.Source.UNKNOWN);
 | |
| 
 | |
|         StoragePoolVO storagePool = new StoragePoolVO();
 | |
| 
 | |
|         storagePool.setManaged(false);
 | |
| 
 | |
|         when(_storagePoolDao.findById(anyLong())).thenReturn(storagePool);
 | |
| 
 | |
|         CallContext.register(user, account);
 | |
|         try {
 | |
|             _userVmMgr.restoreVMInternal(_account, _vmMock, null);
 | |
|         } finally {
 | |
|             CallContext.unregister();
 | |
|         }
 | |
| 
 | |
|     }
 | |
| 
 | |
|     // Test restoreVM when VM is in running state
 | |
|     @Test
 | |
|     public void testRestoreVMF3() throws ResourceUnavailableException, InsufficientCapacityException, ServerApiException, ConcurrentOperationException,
 | |
|         ResourceAllocationException {
 | |
| 
 | |
|         doReturn(VirtualMachine.State.Running).when(_vmMock).getState();
 | |
|         when(_vmDao.findById(anyLong())).thenReturn(_vmMock);
 | |
|         when(_volsDao.findByInstanceAndType(314L, Volume.Type.ROOT)).thenReturn(_rootVols);
 | |
|         doReturn(false).when(_rootVols).isEmpty();
 | |
|         when(_rootVols.get(eq(0))).thenReturn(_volumeMock);
 | |
|         doReturn(3L).when(_volumeMock).getTemplateId();
 | |
|         when(_templateDao.findById(anyLong())).thenReturn(_templateMock);
 | |
|         when(_storageMgr.allocateDuplicateVolume(_volumeMock, null)).thenReturn(_volumeMock);
 | |
|         doNothing().when(_volsDao).attachVolume(anyLong(), anyLong(), anyLong());
 | |
|         when(_volumeMock.getId()).thenReturn(3L);
 | |
|         doNothing().when(_volsDao).detachVolume(anyLong());
 | |
| 
 | |
|         when(_templateMock.getUuid()).thenReturn("e0552266-7060-11e2-bbaa-d55f5db67735");
 | |
| 
 | |
|         Account account = new AccountVO("testaccount", 1L, "networkdomain", (short)0, "uuid");
 | |
|         UserVO user = new UserVO(1, "testuser", "password", "firstname", "lastName", "email", "timezone", UUID.randomUUID().toString(), User.Source.UNKNOWN);
 | |
| 
 | |
|         StoragePoolVO storagePool = new StoragePoolVO();
 | |
| 
 | |
|         storagePool.setManaged(false);
 | |
| 
 | |
|         when(_storagePoolDao.findById(anyLong())).thenReturn(storagePool);
 | |
| 
 | |
|         CallContext.register(user, account);
 | |
|         try {
 | |
|             _userVmMgr.restoreVMInternal(_account, _vmMock, null);
 | |
|         } finally {
 | |
|             CallContext.unregister();
 | |
|         }
 | |
| 
 | |
|     }
 | |
| 
 | |
|     // Test restoreVM on providing new template Id, when VM is in running state
 | |
|     @Test
 | |
|     public void testRestoreVMF4() throws ResourceUnavailableException, InsufficientCapacityException, ServerApiException, ConcurrentOperationException,
 | |
|         ResourceAllocationException {
 | |
|         doReturn(VirtualMachine.State.Running).when(_vmMock).getState();
 | |
|         when(_vmDao.findById(anyLong())).thenReturn(_vmMock);
 | |
|         when(_volsDao.findByInstanceAndType(314L, Volume.Type.ROOT)).thenReturn(_rootVols);
 | |
|         doReturn(false).when(_rootVols).isEmpty();
 | |
|         when(_rootVols.get(eq(0))).thenReturn(_volumeMock);
 | |
|         doReturn(3L).when(_volumeMock).getTemplateId();
 | |
|         doReturn(ImageFormat.VHD).when(_templateMock).getFormat();
 | |
|         when(_templateDao.findById(anyLong())).thenReturn(_templateMock);
 | |
|         doNothing().when(_accountMgr).checkAccess(_account, null, true, _templateMock);
 | |
|         when(_storageMgr.allocateDuplicateVolume(_volumeMock, 14L)).thenReturn(_volumeMock);
 | |
|         when(_templateMock.getGuestOSId()).thenReturn(5L);
 | |
|         doNothing().when(_vmMock).setGuestOSId(anyLong());
 | |
|         doNothing().when(_vmMock).setTemplateId(3L);
 | |
|         when(_vmDao.update(314L, _vmMock)).thenReturn(true);
 | |
|         when(_storageMgr.allocateDuplicateVolume(_volumeMock, null)).thenReturn(_volumeMock);
 | |
|         doNothing().when(_volsDao).attachVolume(anyLong(), anyLong(), anyLong());
 | |
|         when(_volumeMock.getId()).thenReturn(3L);
 | |
|         doNothing().when(_volsDao).detachVolume(anyLong());
 | |
|         List<VMSnapshotVO> mockList = mock(List.class);
 | |
|         when(_vmSnapshotDao.findByVm(anyLong())).thenReturn(mockList);
 | |
|         when(mockList.size()).thenReturn(0);
 | |
|         when(_templateMock.getUuid()).thenReturn("b1a3626e-72e0-4697-8c7c-a110940cc55d");
 | |
| 
 | |
|         Account account = new AccountVO("testaccount", 1L, "networkdomain", (short)0, "uuid");
 | |
|         UserVO user = new UserVO(1, "testuser", "password", "firstname", "lastName", "email", "timezone", UUID.randomUUID().toString(), User.Source.UNKNOWN);
 | |
| 
 | |
|         StoragePoolVO storagePool = new StoragePoolVO();
 | |
| 
 | |
|         storagePool.setManaged(false);
 | |
| 
 | |
|         when(_storagePoolDao.findById(anyLong())).thenReturn(storagePool);
 | |
| 
 | |
|         CallContext.register(user, account);
 | |
|         try {
 | |
|             _userVmMgr.restoreVMInternal(_account, _vmMock, 14L);
 | |
|         } finally {
 | |
|             CallContext.unregister();
 | |
|         }
 | |
| 
 | |
|     }
 | |
| 
 | |
|     // Test restoreVM on providing new ISO Id, when VM(deployed using ISO) is in running state
 | |
|     @Test
 | |
|     public void testRestoreVMF5() throws ResourceUnavailableException, InsufficientCapacityException, ServerApiException, ConcurrentOperationException,
 | |
|         ResourceAllocationException {
 | |
|         doReturn(VirtualMachine.State.Running).when(_vmMock).getState();
 | |
|         when(_vmDao.findById(anyLong())).thenReturn(_vmMock);
 | |
|         when(_volsDao.findByInstanceAndType(314L, Volume.Type.ROOT)).thenReturn(_rootVols);
 | |
|         doReturn(false).when(_rootVols).isEmpty();
 | |
|         when(_rootVols.get(eq(0))).thenReturn(_volumeMock);
 | |
|         doReturn(null).when(_volumeMock).getTemplateId();
 | |
|         doReturn(3L).when(_vmMock).getIsoId();
 | |
|         doReturn(ImageFormat.ISO).when(_templateMock).getFormat();
 | |
|         when(_templateDao.findById(anyLong())).thenReturn(_templateMock);
 | |
|         doNothing().when(_accountMgr).checkAccess(_account, null, true, _templateMock);
 | |
|         when(_storageMgr.allocateDuplicateVolume(_volumeMock, null)).thenReturn(_volumeMock);
 | |
|         doNothing().when(_vmMock).setIsoId(14L);
 | |
|         when(_templateMock.getGuestOSId()).thenReturn(5L);
 | |
|         doNothing().when(_vmMock).setGuestOSId(anyLong());
 | |
|         doNothing().when(_vmMock).setTemplateId(3L);
 | |
|         when(_vmDao.update(314L, _vmMock)).thenReturn(true);
 | |
|         when(_storageMgr.allocateDuplicateVolume(_volumeMock, null)).thenReturn(_volumeMock);
 | |
|         doNothing().when(_volsDao).attachVolume(anyLong(), anyLong(), anyLong());
 | |
|         when(_volumeMock.getId()).thenReturn(3L);
 | |
|         doNothing().when(_volsDao).detachVolume(anyLong());
 | |
|         List<VMSnapshotVO> mockList = mock(List.class);
 | |
|         when(_vmSnapshotDao.findByVm(anyLong())).thenReturn(mockList);
 | |
|         when(mockList.size()).thenReturn(0);
 | |
|         when(_templateMock.getUuid()).thenReturn("b1a3626e-72e0-4697-8c7c-a110940cc55d");
 | |
| 
 | |
|         Account account = new AccountVO("testaccount", 1L, "networkdomain", (short)0, "uuid");
 | |
|         UserVO user = new UserVO(1, "testuser", "password", "firstname", "lastName", "email", "timezone", UUID.randomUUID().toString(), User.Source.UNKNOWN);
 | |
| 
 | |
|         StoragePoolVO storagePool = new StoragePoolVO();
 | |
| 
 | |
|         storagePool.setManaged(false);
 | |
| 
 | |
|         when(_storagePoolDao.findById(anyLong())).thenReturn(storagePool);
 | |
| 
 | |
|         CallContext.register(user, account);
 | |
|         try {
 | |
|             _userVmMgr.restoreVMInternal(_account, _vmMock, 14L);
 | |
|         } finally {
 | |
|             CallContext.unregister();
 | |
|         }
 | |
| 
 | |
|         verify(_vmMock, times(1)).setIsoId(14L);
 | |
| 
 | |
|     }
 | |
| 
 | |
|     // Test scaleVm on incompatible HV.
 | |
|     @Test(expected = InvalidParameterValueException.class)
 | |
|     public void testScaleVMF1()  throws Exception {
 | |
| 
 | |
|         ScaleVMCmd cmd = new ScaleVMCmd();
 | |
|         Class<?> _class = cmd.getClass();
 | |
| 
 | |
|         Field idField = _class.getDeclaredField("id");
 | |
|         idField.setAccessible(true);
 | |
|         idField.set(cmd, 1L);
 | |
| 
 | |
|         Field serviceOfferingIdField = _class.getDeclaredField("serviceOfferingId");
 | |
|         serviceOfferingIdField.setAccessible(true);
 | |
|         serviceOfferingIdField.set(cmd, 1L);
 | |
| 
 | |
|         when(_vmInstanceDao.findById(anyLong())).thenReturn(_vmInstance);
 | |
| 
 | |
|        // UserContext.current().setEventDetails("Vm Id: "+getId());
 | |
|         Account account = new AccountVO("testaccount", 1L, "networkdomain", (short)0, "uuid");
 | |
|         UserVO user = new UserVO(1, "testuser", "password", "firstname", "lastName", "email", "timezone", UUID.randomUUID().toString(), User.Source.UNKNOWN);
 | |
|         //AccountVO(String accountName, long domainId, String networkDomain, short type, int regionId)
 | |
|         doReturn(VirtualMachine.State.Running).when(_vmInstance).getState();
 | |
| 
 | |
|         CallContext.register(user, account);
 | |
|         try {
 | |
|             _userVmMgr.upgradeVirtualMachine(cmd);
 | |
|         } finally {
 | |
|             CallContext.unregister();
 | |
|         }
 | |
| 
 | |
|     }
 | |
| 
 | |
|     // Test scaleVm on equal service offerings.
 | |
|     @Test(expected = InvalidParameterValueException.class)
 | |
|     public void testScaleVMF2()  throws Exception {
 | |
| 
 | |
|         ScaleVMCmd cmd = new ScaleVMCmd();
 | |
|         Class<?> _class = cmd.getClass();
 | |
| 
 | |
|         Field idField = _class.getDeclaredField("id");
 | |
|         idField.setAccessible(true);
 | |
|         idField.set(cmd, 1L);
 | |
| 
 | |
|         Field serviceOfferingIdField = _class.getDeclaredField("serviceOfferingId");
 | |
|         serviceOfferingIdField.setAccessible(true);
 | |
|         serviceOfferingIdField.set(cmd, 1L);
 | |
| 
 | |
|         when(_vmInstanceDao.findById(anyLong())).thenReturn(_vmInstance);
 | |
|         doReturn(Hypervisor.HypervisorType.XenServer).when(_vmInstance).getHypervisorType();
 | |
| 
 | |
|         doReturn(VirtualMachine.State.Running).when(_vmInstance).getState();
 | |
| 
 | |
|         doNothing().when(_accountMgr).checkAccess(_account, null, true, _templateMock);
 | |
| 
 | |
|         doNothing().when(_itMgr).checkIfCanUpgrade(_vmMock, _offeringVo);
 | |
| 
 | |
|         ServiceOffering so1 =  getSvcoffering(512);
 | |
|         ServiceOffering so2 =  getSvcoffering(256);
 | |
| 
 | |
|         when(_offeringDao.findById(anyLong())).thenReturn((ServiceOfferingVO)so1);
 | |
|         when(_offeringDao.findByIdIncludingRemoved(anyLong(), anyLong())).thenReturn((ServiceOfferingVO)so1);
 | |
| 
 | |
|         Account account = new AccountVO("testaccount", 1L, "networkdomain", (short)0, UUID.randomUUID().toString());
 | |
|         UserVO user = new UserVO(1, "testuser", "password", "firstname", "lastName", "email", "timezone", UUID.randomUUID().toString(), User.Source.UNKNOWN);
 | |
|         CallContext.register(user, account);
 | |
|         try {
 | |
|             _userVmMgr.upgradeVirtualMachine(cmd);
 | |
|         } finally {
 | |
|             CallContext.unregister();
 | |
|         }
 | |
| 
 | |
|     }
 | |
| 
 | |
|     // Test scaleVm for Stopped vm.
 | |
|     //@Test(expected=InvalidParameterValueException.class)
 | |
|     public void testScaleVMF3()  throws Exception {
 | |
| 
 | |
|         ScaleVMCmd cmd = new ScaleVMCmd();
 | |
|         Class<?> _class = cmd.getClass();
 | |
| 
 | |
|         Field idField = _class.getDeclaredField("id");
 | |
|         idField.setAccessible(true);
 | |
|         idField.set(cmd, 1L);
 | |
| 
 | |
|         Field serviceOfferingIdField = _class.getDeclaredField("serviceOfferingId");
 | |
|         serviceOfferingIdField.setAccessible(true);
 | |
|         serviceOfferingIdField.set(cmd, 1L);
 | |
| 
 | |
|         when(_vmInstanceDao.findById(anyLong())).thenReturn(_vmInstance);
 | |
|         doReturn(Hypervisor.HypervisorType.XenServer).when(_vmInstance).getHypervisorType();
 | |
| 
 | |
|         ServiceOffering so1 =  getSvcoffering(512);
 | |
|         ServiceOffering so2 =  getSvcoffering(256);
 | |
| 
 | |
|         when(_entityMgr.findById(eq(ServiceOffering.class), anyLong())).thenReturn(so2);
 | |
|         when(_entityMgr.findById(ServiceOffering.class, 1L)).thenReturn(so1);
 | |
| 
 | |
|         doReturn(VirtualMachine.State.Stopped).when(_vmInstance).getState();
 | |
|         when(_vmDao.findById(anyLong())).thenReturn(null);
 | |
| 
 | |
|         doReturn(true).when(_itMgr).upgradeVmDb(anyLong(), anyLong());
 | |
| 
 | |
|         //when(_vmDao.findById(anyLong())).thenReturn(_vmMock);
 | |
| 
 | |
|         Account account = new AccountVO("testaccount", 1L, "networkdomain", (short)0, UUID.randomUUID().toString());
 | |
|         UserVO user = new UserVO(1, "testuser", "password", "firstname", "lastName", "email", "timezone", UUID.randomUUID().toString(), User.Source.UNKNOWN);
 | |
|         CallContext.register(user, account);
 | |
|         try {
 | |
|             _userVmMgr.upgradeVirtualMachine(cmd);
 | |
|         } finally {
 | |
|             CallContext.unregister();
 | |
|         }
 | |
| 
 | |
|     }
 | |
| 
 | |
|     // Test scaleVm for Running vm. Full positive test.
 | |
|     public void testScaleVMF4()  throws Exception {
 | |
| 
 | |
|         ScaleVMCmd cmd = new ScaleVMCmd();
 | |
|         Class<?> _class = cmd.getClass();
 | |
| 
 | |
|         Field idField = _class.getDeclaredField("id");
 | |
|         idField.setAccessible(true);
 | |
|         idField.set(cmd, 1L);
 | |
| 
 | |
|         Field serviceOfferingIdField = _class.getDeclaredField("serviceOfferingId");
 | |
|         serviceOfferingIdField.setAccessible(true);
 | |
|         serviceOfferingIdField.set(cmd, 1L);
 | |
| 
 | |
|         //UserContext.current().setEventDetails("Vm Id: "+getId());
 | |
|         //Account account = (Account) new AccountVO("testaccount", 1L, "networkdomain", (short) 0, 1);
 | |
|         //AccountVO(String accountName, long domainId, String networkDomain, short type, int regionId)
 | |
|         //UserContext.registerContext(1, account, null, true);
 | |
| 
 | |
|         when(_vmInstanceDao.findById(anyLong())).thenReturn(_vmInstance);
 | |
|         doReturn(Hypervisor.HypervisorType.XenServer).when(_vmInstance).getHypervisorType();
 | |
| 
 | |
|         ServiceOffering so1 =  getSvcoffering(512);
 | |
|         ServiceOffering so2 =  getSvcoffering(256);
 | |
| 
 | |
|         when(_entityMgr.findById(eq(ServiceOffering.class), anyLong())).thenReturn(so2);
 | |
|         when(_entityMgr.findById(ServiceOffering.class, 1L)).thenReturn(so1);
 | |
| 
 | |
|         doReturn(VirtualMachine.State.Running).when(_vmInstance).getState();
 | |
| 
 | |
|         //when(ApiDBUtils.getCpuOverprovisioningFactor()).thenReturn(3f);
 | |
|         when(_capacityMgr.checkIfHostHasCapacity(anyLong(), anyInt(), anyLong(), anyBoolean(), anyFloat(), anyFloat(),  anyBoolean())).thenReturn(false);
 | |
|         when(_itMgr.reConfigureVm(_vmInstance.getUuid(), so1, false)).thenReturn(_vmInstance);
 | |
| 
 | |
|         doReturn(true).when(_itMgr).upgradeVmDb(anyLong(), anyLong());
 | |
| 
 | |
|         when(_vmDao.findById(anyLong())).thenReturn(_vmMock);
 | |
| 
 | |
|         Account account = new AccountVO("testaccount", 1L, "networkdomain", (short)0, UUID.randomUUID().toString());
 | |
|         UserVO user = new UserVO(1, "testuser", "password", "firstname", "lastName", "email", "timezone", UUID.randomUUID().toString(), User.Source.UNKNOWN);
 | |
|         CallContext.register(user, account);
 | |
|         try {
 | |
|             _userVmMgr.upgradeVirtualMachine(cmd);
 | |
|         } finally {
 | |
|             CallContext.unregister();
 | |
|         }
 | |
| 
 | |
|     }
 | |
| 
 | |
|     private ServiceOfferingVO getSvcoffering(int ramSize) {
 | |
| 
 | |
|         long id  = 4L;
 | |
|         String name = "name";
 | |
|         String displayText = "displayText";
 | |
|         int cpu = 1;
 | |
|         //int ramSize = 256;
 | |
|         int speed = 128;
 | |
| 
 | |
|         boolean ha = false;
 | |
|         boolean useLocalStorage = false;
 | |
| 
 | |
|         ServiceOfferingVO serviceOffering =
 | |
|             new ServiceOfferingVO(name, cpu, ramSize, speed, null, null, ha, displayText, Storage.ProvisioningType.THIN,
 | |
|                     useLocalStorage, false, null, false, null, false);
 | |
|         return serviceOffering;
 | |
|     }
 | |
| 
 | |
|     // Test Move VM b/w accounts where caller is not ROOT/Domain admin
 | |
|     @Test(expected = InvalidParameterValueException.class)
 | |
|     public void testMoveVmToUser1()  throws Exception {
 | |
|         AssignVMCmd cmd = new AssignVMCmd();
 | |
|         Class<?> _class = cmd.getClass();
 | |
| 
 | |
|         Field virtualmachineIdField = _class.getDeclaredField("virtualMachineId");
 | |
|         virtualmachineIdField.setAccessible(true);
 | |
|         virtualmachineIdField.set(cmd, 1L);
 | |
| 
 | |
|         Field accountNameField = _class.getDeclaredField("accountName");
 | |
|         accountNameField.setAccessible(true);
 | |
|         accountNameField.set(cmd, "account");
 | |
| 
 | |
|         Field domainIdField = _class.getDeclaredField("domainId");
 | |
|         domainIdField.setAccessible(true);
 | |
|         domainIdField.set(cmd, 1L);
 | |
| 
 | |
|         // caller is of type 0
 | |
|         Account caller = new AccountVO("testaccount", 1, "networkdomain", (short)0, UUID.randomUUID().toString());
 | |
|         UserVO user = new UserVO(1, "testuser", "password", "firstname", "lastName", "email", "timezone", UUID.randomUUID().toString(), User.Source.UNKNOWN);
 | |
| 
 | |
|         CallContext.register(user, caller);
 | |
|         try {
 | |
| 
 | |
|         _userVmMgr.moveVMToUser(cmd);
 | |
|         } finally {
 | |
|             CallContext.unregister();
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     // Test Move VM b/w accounts where caller doesn't have access to the old or new account
 | |
|     @Test(expected = PermissionDeniedException.class)
 | |
|     public void testMoveVmToUser2()  throws Exception {
 | |
|         AssignVMCmd cmd = new AssignVMCmd();
 | |
|         Class<?> _class = cmd.getClass();
 | |
| 
 | |
|         Field virtualmachineIdField = _class.getDeclaredField("virtualMachineId");
 | |
|         virtualmachineIdField.setAccessible(true);
 | |
|         virtualmachineIdField.set(cmd, 1L);
 | |
| 
 | |
|         Field accountNameField = _class.getDeclaredField("accountName");
 | |
|         accountNameField.setAccessible(true);
 | |
|         accountNameField.set(cmd, "account");
 | |
| 
 | |
|         Field domainIdField = _class.getDeclaredField("domainId");
 | |
|         domainIdField.setAccessible(true);
 | |
|         domainIdField.set(cmd, 1L);
 | |
| 
 | |
|         // caller is of type 0
 | |
|         Account caller = new AccountVO("testaccount", 1, "networkdomain", (short)1, UUID.randomUUID().toString());
 | |
|         UserVO user = new UserVO(1, "testuser", "password", "firstname", "lastName", "email", "timezone", UUID.randomUUID().toString(), User.Source.UNKNOWN);
 | |
| 
 | |
|         Account oldAccount = new AccountVO("testaccount", 1, "networkdomain", (short)0, UUID.randomUUID().toString());
 | |
|         Account newAccount = new AccountVO("testaccount", 1, "networkdomain", (short)1, UUID.randomUUID().toString());
 | |
| 
 | |
|         UserVmVO vm = new UserVmVO(10L, "test", "test", 1L, HypervisorType.Any, 1L, false, false, 1L, 1L, 1, 5L, "test", "test", 1L);
 | |
|         vm.setState(VirtualMachine.State.Stopped);
 | |
|         when(_vmDao.findById(anyLong())).thenReturn(vm);
 | |
| 
 | |
|         when(_accountService.getActiveAccountById(anyLong())).thenReturn(oldAccount);
 | |
| 
 | |
|         when(_accountMgr.finalizeOwner(any(Account.class), anyString(), anyLong(), anyLong())).thenReturn(newAccount);
 | |
| 
 | |
|         doThrow(new PermissionDeniedException("Access check failed")).when(_accountMgr).checkAccess(any(Account.class), any(AccessType.class), any(Boolean.class),
 | |
|             any(ControlledEntity.class));
 | |
| 
 | |
|         CallContext.register(user, caller);
 | |
| 
 | |
|         when(_accountMgr.isRootAdmin(anyLong())).thenReturn(true);
 | |
| 
 | |
|         try {
 | |
|             _userVmMgr.moveVMToUser(cmd);
 | |
|         } finally {
 | |
|             CallContext.unregister();
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     @Test
 | |
|     public void testUpdateVmNicIpSuccess1() throws Exception {
 | |
|         UpdateVmNicIpCmd cmd = new UpdateVmNicIpCmd();
 | |
|         Class<?> _class = cmd.getClass();
 | |
| 
 | |
|         Field virtualmachineIdField = _class.getDeclaredField("nicId");
 | |
|         virtualmachineIdField.setAccessible(true);
 | |
|         virtualmachineIdField.set(cmd, 1L);
 | |
| 
 | |
|         Field accountNameField = _class.getDeclaredField("ipAddr");
 | |
|         accountNameField.setAccessible(true);
 | |
|         accountNameField.set(cmd, "10.10.10.10");
 | |
| 
 | |
|         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);
 | |
|         doReturn(9L).when(_networkMock).getNetworkOfferingId();
 | |
|         when(_networkOfferingDao.findByIdIncludingRemoved(anyLong())).thenReturn(_networkOfferingMock);
 | |
|         doReturn(10L).when(_networkOfferingMock).getId();
 | |
| 
 | |
|         List<Service> services = new ArrayList<Service>();
 | |
|         services.add(Service.Dhcp);
 | |
|         when(_networkModel.listNetworkOfferingServices(anyLong())).thenReturn(services);
 | |
|         when(_vmMock.getState()).thenReturn(State.Stopped);
 | |
|         doNothing().when(_accountMgr).checkAccess(_account, null, true, _vmMock);
 | |
|         when(_accountDao.findByIdIncludingRemoved(anyLong())).thenReturn(_accountMock);
 | |
| 
 | |
|         when(_networkMock.getState()).thenReturn(Network.State.Implemented);
 | |
|         when(_networkMock.getDataCenterId()).thenReturn(3L);
 | |
|         when(_networkMock.getGuestType()).thenReturn(GuestType.Isolated);
 | |
|         when(_dcDao.findById(anyLong())).thenReturn(_dcMock);
 | |
|         when(_dcMock.getNetworkType()).thenReturn(NetworkType.Advanced);
 | |
| 
 | |
|         when(_ipAddrMgr.allocateGuestIP(Mockito.eq(_networkMock), anyString())).thenReturn("10.10.10.10");
 | |
|         doNothing().when(_networkMgr).implementNetworkElementsAndResources(Mockito.any(DeployDestination.class), Mockito.any(ReservationContext.class), Mockito.eq(_networkMock), Mockito.eq(_networkOfferingMock));
 | |
|         when(_nicDao.persist(any(NicVO.class))).thenReturn(nic);
 | |
| 
 | |
|         Account caller = new AccountVO("testaccount", 1, "networkdomain", (short)0, UUID.randomUUID().toString());
 | |
|         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();
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     @Test
 | |
|     public void testUpdateVmNicIpSuccess2() throws Exception {
 | |
|         UpdateVmNicIpCmd cmd = new UpdateVmNicIpCmd();
 | |
|         Class<?> _class = cmd.getClass();
 | |
| 
 | |
|         Field virtualmachineIdField = _class.getDeclaredField("nicId");
 | |
|         virtualmachineIdField.setAccessible(true);
 | |
|         virtualmachineIdField.set(cmd, 1L);
 | |
| 
 | |
|         Field accountNameField = _class.getDeclaredField("ipAddr");
 | |
|         accountNameField.setAccessible(true);
 | |
|         accountNameField.set(cmd, "10.10.10.10");
 | |
| 
 | |
|         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);
 | |
|         doReturn(9L).when(_networkMock).getNetworkOfferingId();
 | |
|         when(_networkOfferingDao.findByIdIncludingRemoved(anyLong())).thenReturn(_networkOfferingMock);
 | |
|         doReturn(10L).when(_networkOfferingMock).getId();
 | |
| 
 | |
|         List<Service> services = new ArrayList<Service>();
 | |
|         when(_networkModel.listNetworkOfferingServices(anyLong())).thenReturn(services);
 | |
|         when(_vmMock.getState()).thenReturn(State.Running);
 | |
|         doNothing().when(_accountMgr).checkAccess(_account, null, true, _vmMock);
 | |
|         when(_accountDao.findByIdIncludingRemoved(anyLong())).thenReturn(_accountMock);
 | |
| 
 | |
|         when(_networkMock.getState()).thenReturn(Network.State.Implemented);
 | |
|         when(_networkMock.getDataCenterId()).thenReturn(3L);
 | |
|         when(_networkMock.getGuestType()).thenReturn(GuestType.Shared);
 | |
|         when(_dcDao.findById(anyLong())).thenReturn(_dcMock);
 | |
|         when(_dcMock.getNetworkType()).thenReturn(NetworkType.Advanced);
 | |
| 
 | |
|         when(_ipAddrMgr.allocatePublicIpForGuestNic(Mockito.eq(_networkMock), anyLong(), Mockito.eq(_accountMock), anyString())).thenReturn("10.10.10.10");
 | |
|         when(_ipAddressDao.findByIpAndSourceNetworkId(anyLong(), anyString())).thenReturn(null);
 | |
|         when(_nicDao.persist(any(NicVO.class))).thenReturn(nic);
 | |
| 
 | |
|         Account caller = new AccountVO("testaccount", 1, "networkdomain", (short)0, UUID.randomUUID().toString());
 | |
|         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();
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     // vm is running in network with dhcp support
 | |
|     @Test(expected = InvalidParameterValueException.class)
 | |
|     public void testUpdateVmNicIpFailure1() throws Exception {
 | |
|         UpdateVmNicIpCmd cmd = new UpdateVmNicIpCmd();
 | |
|         Class<?> _class = cmd.getClass();
 | |
| 
 | |
|         Field virtualmachineIdField = _class.getDeclaredField("nicId");
 | |
|         virtualmachineIdField.setAccessible(true);
 | |
|         virtualmachineIdField.set(cmd, 1L);
 | |
| 
 | |
|         Field accountNameField = _class.getDeclaredField("ipAddr");
 | |
|         accountNameField.setAccessible(true);
 | |
|         accountNameField.set(cmd, "10.10.10.10");
 | |
| 
 | |
|         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();
 | |
| 
 | |
|         List<Service> services = new ArrayList<Service>();
 | |
|         services.add(Service.Dhcp);
 | |
|         when(_networkModel.listNetworkOfferingServices(anyLong())).thenReturn(services);
 | |
|         when(_vmMock.getState()).thenReturn(State.Running);
 | |
| 
 | |
|         Account caller = new AccountVO("testaccount", 1, "networkdomain", (short)0, UUID.randomUUID().toString());
 | |
|         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();
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     // vm is stopped in isolated network in advanced zone
 | |
|     @Test(expected = InvalidParameterValueException.class)
 | |
|     public void testUpdateVmNicIpFailure2() throws Exception {
 | |
|         UpdateVmNicIpCmd cmd = new UpdateVmNicIpCmd();
 | |
|         Class<?> _class = cmd.getClass();
 | |
| 
 | |
|         Field virtualmachineIdField = _class.getDeclaredField("nicId");
 | |
|         virtualmachineIdField.setAccessible(true);
 | |
|         virtualmachineIdField.set(cmd, 1L);
 | |
| 
 | |
|         Field accountNameField = _class.getDeclaredField("ipAddr");
 | |
|         accountNameField.setAccessible(true);
 | |
|         accountNameField.set(cmd, "10.10.10.10");
 | |
| 
 | |
|         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);
 | |
|         doReturn(9L).when(_networkMock).getNetworkOfferingId();
 | |
|         when(_networkOfferingDao.findByIdIncludingRemoved(anyLong())).thenReturn(_networkOfferingMock);
 | |
|         doReturn(10L).when(_networkOfferingMock).getId();
 | |
| 
 | |
|         List<Service> services = new ArrayList<Service>();
 | |
|         services.add(Service.Dhcp);
 | |
|         when(_networkModel.listNetworkOfferingServices(anyLong())).thenReturn(services);
 | |
|         when(_vmMock.getState()).thenReturn(State.Stopped);
 | |
|         doNothing().when(_accountMgr).checkAccess(_account, null, true, _vmMock);
 | |
|         when(_accountDao.findByIdIncludingRemoved(anyLong())).thenReturn(_accountMock);
 | |
| 
 | |
|         when(_networkMock.getState()).thenReturn(Network.State.Implemented);
 | |
|         when(_networkMock.getDataCenterId()).thenReturn(3L);
 | |
|         when(_networkMock.getGuestType()).thenReturn(GuestType.Isolated);
 | |
|         when(_dcDao.findById(anyLong())).thenReturn(_dcMock);
 | |
|         when(_dcMock.getNetworkType()).thenReturn(NetworkType.Advanced);
 | |
| 
 | |
|         when(_ipAddrMgr.allocateGuestIP(Mockito.eq(_networkMock), anyString())).thenReturn(null);
 | |
| 
 | |
|         Account caller = new AccountVO("testaccount", 1, "networkdomain", (short)0, UUID.randomUUID().toString());
 | |
|         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();
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     // vm is stopped in shared network in advanced zone
 | |
|     @Test(expected = InvalidParameterValueException.class)
 | |
|     public void testUpdateVmNicIpFailure3() throws Exception {
 | |
|         UpdateVmNicIpCmd cmd = new UpdateVmNicIpCmd();
 | |
|         Class<?> _class = cmd.getClass();
 | |
| 
 | |
|         Field virtualmachineIdField = _class.getDeclaredField("nicId");
 | |
|         virtualmachineIdField.setAccessible(true);
 | |
|         virtualmachineIdField.set(cmd, 1L);
 | |
| 
 | |
|         Field accountNameField = _class.getDeclaredField("ipAddr");
 | |
|         accountNameField.setAccessible(true);
 | |
|         accountNameField.set(cmd, "10.10.10.10");
 | |
| 
 | |
|         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);
 | |
|         doReturn(9L).when(_networkMock).getNetworkOfferingId();
 | |
|         when(_networkOfferingDao.findByIdIncludingRemoved(anyLong())).thenReturn(_networkOfferingMock);
 | |
|         doReturn(10L).when(_networkOfferingMock).getId();
 | |
| 
 | |
|         List<Service> services = new ArrayList<Service>();
 | |
|         services.add(Service.Dhcp);
 | |
|         when(_networkModel.listNetworkOfferingServices(anyLong())).thenReturn(services);
 | |
|         when(_vmMock.getState()).thenReturn(State.Stopped);
 | |
|         doNothing().when(_accountMgr).checkAccess(_account, null, true, _vmMock);
 | |
|         when(_accountDao.findByIdIncludingRemoved(anyLong())).thenReturn(_accountMock);
 | |
| 
 | |
|         when(_networkMock.getState()).thenReturn(Network.State.Implemented);
 | |
|         when(_networkMock.getDataCenterId()).thenReturn(3L);
 | |
|         when(_networkMock.getGuestType()).thenReturn(GuestType.Shared);
 | |
|         when(_dcDao.findById(anyLong())).thenReturn(_dcMock);
 | |
|         when(_dcMock.getNetworkType()).thenReturn(NetworkType.Advanced);
 | |
| 
 | |
|         when(_ipAddrMgr.allocatePublicIpForGuestNic(Mockito.eq(_networkMock), anyLong(), Mockito.eq(_accountMock), anyString())).thenReturn(null);
 | |
| 
 | |
|         Account caller = new AccountVO("testaccount", 1, "networkdomain", (short)0, UUID.randomUUID().toString());
 | |
|         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();
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     @Test
 | |
|     public void testApplyUserDataInNetworkWithoutUserDataSupport() throws Exception {
 | |
|         UserVm userVm = mock(UserVm.class);
 | |
|         when(userVm.getId()).thenReturn(1L);
 | |
| 
 | |
|         when(_nicMock.getNetworkId()).thenReturn(2L);
 | |
|         when(_networkMock.getNetworkOfferingId()).thenReturn(3L);
 | |
|         when(_networkDao.findById(2L)).thenReturn(_networkMock);
 | |
| 
 | |
|         // No userdata support
 | |
|         assertFalse(_userVmMgr.applyUserData(HypervisorType.KVM, userVm, _nicMock));
 | |
|     }
 | |
| 
 | |
|     @Test(expected = CloudRuntimeException.class)
 | |
|     public void testApplyUserDataInNetworkWithoutElement() throws Exception {
 | |
|         UserVm userVm = mock(UserVm.class);
 | |
|         when(userVm.getId()).thenReturn(1L);
 | |
| 
 | |
|         when(_nicMock.getNetworkId()).thenReturn(2L);
 | |
|         when(_networkMock.getNetworkOfferingId()).thenReturn(3L);
 | |
|         when(_networkDao.findById(2L)).thenReturn(_networkMock);
 | |
| 
 | |
|         UserDataServiceProvider userDataServiceProvider = mock(UserDataServiceProvider.class);
 | |
|         when(userDataServiceProvider.saveUserData(any(Network.class), any(NicProfile.class), any(VirtualMachineProfile.class))).thenReturn(true);
 | |
| 
 | |
|         // Userdata support, but no implementing element
 | |
|         when(_networkModel.areServicesSupportedByNetworkOffering(3L, Service.UserData)).thenReturn(true);
 | |
|         _userVmMgr.applyUserData(HypervisorType.KVM, userVm, _nicMock);
 | |
|     }
 | |
| 
 | |
|     @Test
 | |
|     public void testApplyUserDataSuccessful() throws Exception {
 | |
|         UserVm userVm = mock(UserVm.class);
 | |
|         when(userVm.getId()).thenReturn(1L);
 | |
| 
 | |
|         when(_nicMock.getNetworkId()).thenReturn(2L);
 | |
|         when(_networkMock.getNetworkOfferingId()).thenReturn(3L);
 | |
|         when(_networkDao.findById(2L)).thenReturn(_networkMock);
 | |
| 
 | |
|         UserDataServiceProvider userDataServiceProvider = mock(UserDataServiceProvider.class);
 | |
|         when(userDataServiceProvider.saveUserData(any(Network.class), any(NicProfile.class), any(VirtualMachineProfile.class))).thenReturn(true);
 | |
| 
 | |
|         // Userdata support with implementing element
 | |
|         when(_networkModel.areServicesSupportedByNetworkOffering(3L, Service.UserData)).thenReturn(true);
 | |
|         when(_networkModel.getUserDataUpdateProvider(_networkMock)).thenReturn(userDataServiceProvider);
 | |
|         assertTrue(_userVmMgr.applyUserData(HypervisorType.KVM, userVm, _nicMock));
 | |
|     }
 | |
| 
 | |
|     @Test
 | |
|     public void testPersistDeviceBusInfoWithNullController() {
 | |
|         when(_vmMock.getDetail(any(String.class))).thenReturn(null);
 | |
|         _userVmMgr.persistDeviceBusInfo(_vmMock, null);
 | |
|         verify(_vmDao, times(0)).saveDetails(any(UserVmVO.class));
 | |
|     }
 | |
| 
 | |
|     @Test
 | |
|     public void testPersistDeviceBusInfoWithEmptyController() {
 | |
|         when(_vmMock.getDetail(any(String.class))).thenReturn("");
 | |
|         _userVmMgr.persistDeviceBusInfo(_vmMock, "");
 | |
|         verify(_vmDao, times(0)).saveDetails(any(UserVmVO.class));
 | |
|     }
 | |
| 
 | |
|     @Test
 | |
|     public void testPersistDeviceBusInfo() {
 | |
|         when(_vmMock.getDetail(any(String.class))).thenReturn(null);
 | |
|         _userVmMgr.persistDeviceBusInfo(_vmMock, "lsilogic");
 | |
|         verify(_vmDao, times(1)).saveDetails(any(UserVmVO.class));
 | |
|     }
 | |
| }
 |