mirror of https://github.com/apache/cloudstack.git
236 lines
9.5 KiB
Java
236 lines
9.5 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.resource;
|
|
|
|
import com.cloud.host.Host;
|
|
import com.cloud.host.HostVO;
|
|
import com.cloud.host.Status;
|
|
import com.cloud.host.dao.HostDao;
|
|
import com.cloud.hypervisor.Hypervisor;
|
|
import com.cloud.org.Cluster;
|
|
import com.cloud.service.ServiceOfferingVO;
|
|
import com.cloud.service.dao.ServiceOfferingDao;
|
|
import com.cloud.utils.Ternary;
|
|
import com.cloud.utils.exception.CloudRuntimeException;
|
|
import com.cloud.vm.VMInstanceDetailVO;
|
|
import com.cloud.vm.VMInstanceVO;
|
|
import com.cloud.vm.VmDetailConstants;
|
|
import com.cloud.vm.dao.VMInstanceDetailsDao;
|
|
|
|
import org.junit.After;
|
|
import org.junit.Assert;
|
|
import org.junit.Before;
|
|
import org.junit.Test;
|
|
import org.mockito.InjectMocks;
|
|
import org.mockito.Mock;
|
|
import org.mockito.Mockito;
|
|
import org.mockito.MockitoAnnotations;
|
|
import org.mockito.Spy;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.Arrays;
|
|
import java.util.Collections;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
public class RollingMaintenanceManagerImplTest {
|
|
|
|
@Mock
|
|
HostDao hostDao;
|
|
@Mock
|
|
HostVO host1;
|
|
@Mock
|
|
HostVO host2;
|
|
@Mock
|
|
HostVO host3;
|
|
@Mock
|
|
HostVO host4;
|
|
@Mock
|
|
Cluster cluster;
|
|
@Mock
|
|
VMInstanceVO vm;
|
|
@Mock
|
|
ServiceOfferingDao serviceOfferingDao;
|
|
@Mock
|
|
VMInstanceDetailsDao vmInstanceDetailsDao;
|
|
|
|
@Spy
|
|
@InjectMocks
|
|
private RollingMaintenanceManagerImpl manager = new RollingMaintenanceManagerImpl();
|
|
|
|
// Hosts in cluster 1
|
|
private static final long hostId1 = 1L;
|
|
private static final long hostId2 = 2L;
|
|
|
|
// Hosts in cluster 2
|
|
private static final long hostId3 = 3L;
|
|
private static final long hostId4 = 4L;
|
|
|
|
private static final long clusterId1 = 1L;
|
|
private static final long clusterId2 = 2L;
|
|
|
|
private static final long podId = 1L;
|
|
private static final long zoneId = 1L;
|
|
|
|
private AutoCloseable closeable;
|
|
|
|
@Before
|
|
public void setup() throws Exception {
|
|
closeable = MockitoAnnotations.openMocks(this);
|
|
Mockito.when(hostDao.findByClusterId(clusterId1)).thenReturn(Arrays.asList(host1, host2));
|
|
Mockito.when(hostDao.findByClusterId(clusterId2)).thenReturn(Arrays.asList(host3, host4));
|
|
List<HostVO> hosts = Arrays.asList(host1, host2, host3, host4);
|
|
Mockito.when(hostDao.findByPodId(podId)).thenReturn(hosts);
|
|
Mockito.when(hostDao.findByDataCenterId(zoneId)).thenReturn(hosts);
|
|
for (HostVO host : hosts) {
|
|
Mockito.when(host.getHypervisorType()).thenReturn(Hypervisor.HypervisorType.KVM);
|
|
Mockito.when(host.getState()).thenReturn(Status.Up);
|
|
Mockito.when(host.isInMaintenanceStates()).thenReturn(false);
|
|
}
|
|
Mockito.when(host1.getClusterId()).thenReturn(clusterId1);
|
|
Mockito.when(host2.getClusterId()).thenReturn(clusterId1);
|
|
|
|
Mockito.when(host3.getClusterId()).thenReturn(clusterId2);
|
|
Mockito.when(host4.getClusterId()).thenReturn(clusterId2);
|
|
|
|
Mockito.when(hostDao.findById(hostId1)).thenReturn(host1);
|
|
Mockito.when(hostDao.findById(hostId2)).thenReturn(host2);
|
|
Mockito.when(hostDao.findById(hostId3)).thenReturn(host3);
|
|
Mockito.when(hostDao.findById(hostId4)).thenReturn(host4);
|
|
|
|
Mockito.when(host1.getStatus()).thenReturn(Status.Up);
|
|
Mockito.when(host2.getStatus()).thenReturn(Status.Up);
|
|
Mockito.when(host1.getResourceState()).thenReturn(ResourceState.Enabled);
|
|
Mockito.when(host2.getResourceState()).thenReturn(ResourceState.Enabled);
|
|
}
|
|
|
|
@After
|
|
public void tearDown() throws Exception {
|
|
closeable.close();
|
|
}
|
|
|
|
private void checkResults(Map<Long, List<Host>> result) {
|
|
Assert.assertEquals(2, result.size());
|
|
Assert.assertTrue(result.containsKey(clusterId1));
|
|
Assert.assertTrue(result.containsKey(clusterId2));
|
|
List<Host> cluster1Hosts = result.get(clusterId1);
|
|
List<Host> cluster2Hosts = result.get(clusterId2);
|
|
Assert.assertEquals(2, cluster1Hosts.size());
|
|
Assert.assertTrue(cluster1Hosts.contains(host1));
|
|
Assert.assertTrue(cluster1Hosts.contains(host2));
|
|
Assert.assertEquals(2, cluster2Hosts.size());
|
|
Assert.assertTrue(cluster2Hosts.contains(host3));
|
|
Assert.assertTrue(cluster2Hosts.contains(host4));
|
|
}
|
|
|
|
@Test
|
|
public void testGetHostsByClusterForRollingMaintenanceZoneScope() {
|
|
Map<Long, List<Host>> result = manager.getHostsByClusterForRollingMaintenance(RollingMaintenanceManager.ResourceType.Zone, Collections.singletonList(zoneId));
|
|
checkResults(result);
|
|
}
|
|
|
|
@Test
|
|
public void testGetHostsByClusterForRollingMaintenancePodScope() {
|
|
Map<Long, List<Host>> result = manager.getHostsByClusterForRollingMaintenance(RollingMaintenanceManager.ResourceType.Pod, Collections.singletonList(podId));
|
|
checkResults(result);
|
|
}
|
|
|
|
@Test
|
|
public void testGetHostsByClusterForRollingMaintenanceClusterScope() {
|
|
List<Long> clusterIds = Arrays.asList(clusterId1, clusterId2);
|
|
Map<Long, List<Host>> result = manager.getHostsByClusterForRollingMaintenance(RollingMaintenanceManager.ResourceType.Cluster, clusterIds);
|
|
checkResults(result);
|
|
}
|
|
|
|
@Test
|
|
public void testGetHostsByClusterForRollingMaintenanceHostScope() {
|
|
List<Long> hostIds = Arrays.asList(hostId1, hostId2, hostId3, hostId4);
|
|
Map<Long, List<Host>> result = manager.getHostsByClusterForRollingMaintenance(RollingMaintenanceManager.ResourceType.Host, hostIds);
|
|
checkResults(result);
|
|
}
|
|
|
|
@Test(expected = CloudRuntimeException.class)
|
|
public void testPerformStateChecksNotForce() {
|
|
List<Host> hosts = Arrays.asList(host1, host2);
|
|
Mockito.when(host1.getStatus()).thenReturn(Status.Error);
|
|
manager.performStateChecks(cluster, hosts, false, new ArrayList<>());
|
|
}
|
|
|
|
@Test
|
|
public void testPerformStateChecksForce() {
|
|
List<Host> hosts = new ArrayList<>();
|
|
hosts.add(host1);
|
|
hosts.add(host2);
|
|
Mockito.when(host1.getStatus()).thenReturn(Status.Error);
|
|
List<RollingMaintenanceManager.HostSkipped> skipped = new ArrayList<>();
|
|
manager.performStateChecks(cluster, hosts, true, skipped);
|
|
|
|
Assert.assertFalse(skipped.isEmpty());
|
|
Assert.assertEquals(1, skipped.size());
|
|
Assert.assertEquals(host1, skipped.get(0).getHost());
|
|
|
|
Assert.assertEquals(1, hosts.size());
|
|
}
|
|
|
|
@Test
|
|
public void testGetComputeResourcesCpuSpeedAndRamSize_ForNormalOffering() {
|
|
ServiceOfferingVO serviceOffering = Mockito.mock(ServiceOfferingVO.class);
|
|
Mockito.when(serviceOffering.isDynamic()).thenReturn(false);
|
|
Mockito.when(serviceOffering.getCpu()).thenReturn(1);
|
|
Mockito.when(serviceOffering.getSpeed()).thenReturn(500);
|
|
Mockito.when(serviceOffering.getRamSize()).thenReturn(512);
|
|
|
|
Mockito.when(vm.getServiceOfferingId()).thenReturn(1L);
|
|
Mockito.when(serviceOfferingDao.findById(1L)).thenReturn(serviceOffering);
|
|
|
|
Ternary<Integer, Integer, Integer> cpuSpeedAndRamSize = manager.getComputeResourcesCpuSpeedAndRamSize(vm);
|
|
|
|
Assert.assertEquals(1, cpuSpeedAndRamSize.first().intValue());
|
|
Assert.assertEquals(500, cpuSpeedAndRamSize.second().intValue());
|
|
Assert.assertEquals(512, cpuSpeedAndRamSize.third().intValue());
|
|
}
|
|
|
|
@Test
|
|
public void testGetComputeResourcesCpuSpeedAndRamSize_ForCustomOffering() {
|
|
ServiceOfferingVO serviceOffering = Mockito.mock(ServiceOfferingVO.class);
|
|
Mockito.when(serviceOffering.isDynamic()).thenReturn(true);
|
|
Mockito.when(serviceOffering.getCpu()).thenReturn(null);
|
|
Mockito.when(serviceOffering.getSpeed()).thenReturn(null);
|
|
Mockito.when(serviceOffering.getRamSize()).thenReturn(null);
|
|
|
|
List<VMInstanceDetailVO> vmDetails = new ArrayList<>();
|
|
VMInstanceDetailVO cpuDetail = new VMInstanceDetailVO(1L, VmDetailConstants.CPU_NUMBER, "2", false);
|
|
vmDetails.add(cpuDetail);
|
|
VMInstanceDetailVO speedDetail = new VMInstanceDetailVO(1L, VmDetailConstants.CPU_SPEED, "1000", false);
|
|
vmDetails.add(speedDetail);
|
|
VMInstanceDetailVO ramSizeDetail = new VMInstanceDetailVO(1L, VmDetailConstants.MEMORY, "1024", false);
|
|
vmDetails.add(ramSizeDetail);
|
|
|
|
Mockito.when(vm.getId()).thenReturn(1L);
|
|
Mockito.when(vm.getServiceOfferingId()).thenReturn(1L);
|
|
Mockito.when(serviceOfferingDao.findById(1L)).thenReturn(serviceOffering);
|
|
Mockito.when(vmInstanceDetailsDao.listDetails(1L)).thenReturn(vmDetails);
|
|
|
|
Ternary<Integer, Integer, Integer> cpuSpeedAndRamSize = manager.getComputeResourcesCpuSpeedAndRamSize(vm);
|
|
|
|
Assert.assertEquals(2, cpuSpeedAndRamSize.first().intValue());
|
|
Assert.assertEquals(1000, cpuSpeedAndRamSize.second().intValue());
|
|
Assert.assertEquals(1024, cpuSpeedAndRamSize.third().intValue());
|
|
}
|
|
}
|