mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
CLOUDSTACK-8170: Skipping tests on HyperV which try to scale VM in running state because feature not supported
This commit is contained in:
parent
ab333e4e36
commit
8c68ac15c1
@ -900,9 +900,9 @@ class TestScaleVmDynamicServiceOffering(cloudstackTestCase):
|
|||||||
# 1. Scaling operation should be successful
|
# 1. Scaling operation should be successful
|
||||||
|
|
||||||
hypervisor = get_hypervisor_type(self.apiclient)
|
hypervisor = get_hypervisor_type(self.apiclient)
|
||||||
if hypervisor.lower() == "kvm":
|
if hypervisor.lower() in ["kvm", "hyperv"]:
|
||||||
self.skipTest(
|
self.skipTest(
|
||||||
"Scaling VM in running state is not supported on KVM")
|
"Scaling VM in running state is not supported on %s" % hypervisor)
|
||||||
|
|
||||||
isadmin = True
|
isadmin = True
|
||||||
if value == USER_ACCOUNT:
|
if value == USER_ACCOUNT:
|
||||||
@ -977,9 +977,9 @@ class TestScaleVmDynamicServiceOffering(cloudstackTestCase):
|
|||||||
# 2. Scale operation in step 6 should fail
|
# 2. Scale operation in step 6 should fail
|
||||||
|
|
||||||
hypervisor = get_hypervisor_type(self.apiclient)
|
hypervisor = get_hypervisor_type(self.apiclient)
|
||||||
if hypervisor.lower() == "kvm":
|
if hypervisor.lower() in ["kvm", "hyperv"]:
|
||||||
self.skipTest(
|
self.skipTest(
|
||||||
"Scaling VM in running state is not supported on KVM")
|
"Scaling VM in running state is not supported on %s" % hypervisor)
|
||||||
|
|
||||||
isadmin = True
|
isadmin = True
|
||||||
if value == USER_ACCOUNT:
|
if value == USER_ACCOUNT:
|
||||||
@ -1077,9 +1077,9 @@ class TestScaleVmDynamicServiceOffering(cloudstackTestCase):
|
|||||||
# Validations:
|
# Validations:
|
||||||
# 1. Scale operation in step 4 should be successful
|
# 1. Scale operation in step 4 should be successful
|
||||||
hypervisor = get_hypervisor_type(self.apiclient)
|
hypervisor = get_hypervisor_type(self.apiclient)
|
||||||
if hypervisor.lower() == "kvm":
|
if hypervisor.lower() in ["kvm", "hyperv"]:
|
||||||
self.skipTest(
|
self.skipTest(
|
||||||
"Scaling VM in running state is not supported on KVM")
|
"Scaling VM in running state is not supported on %s" % hypervisor)
|
||||||
|
|
||||||
isadmin = True
|
isadmin = True
|
||||||
if value == USER_ACCOUNT:
|
if value == USER_ACCOUNT:
|
||||||
@ -1160,9 +1160,9 @@ class TestScaleVmDynamicServiceOffering(cloudstackTestCase):
|
|||||||
# 3. Scale operation in step 6 should fail
|
# 3. Scale operation in step 6 should fail
|
||||||
|
|
||||||
hypervisor = get_hypervisor_type(self.apiclient)
|
hypervisor = get_hypervisor_type(self.apiclient)
|
||||||
if hypervisor.lower() == "kvm":
|
if hypervisor.lower() in ["kvm", "hyperv"]:
|
||||||
self.skipTest(
|
self.skipTest(
|
||||||
"Scaling VM in running state is not supported on KVM")
|
"Scaling VM in running state is not supported on %s" % hypervisor)
|
||||||
|
|
||||||
isadmin = True
|
isadmin = True
|
||||||
if value == USER_ACCOUNT:
|
if value == USER_ACCOUNT:
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user