Merge "Add NovaAggregates.create_and_get_aggregate_details"
This commit is contained in:
commit
b3381fa830
@ -1377,3 +1377,19 @@
|
|||||||
sla:
|
sla:
|
||||||
failure_rate:
|
failure_rate:
|
||||||
max: 0
|
max: 0
|
||||||
|
|
||||||
|
NovaAggregates.create_and_get_aggregate_details:
|
||||||
|
-
|
||||||
|
args:
|
||||||
|
availability_zone: "nova"
|
||||||
|
runner:
|
||||||
|
type: "constant"
|
||||||
|
times: 10
|
||||||
|
concurrency: 2
|
||||||
|
context:
|
||||||
|
users:
|
||||||
|
tenants: 3
|
||||||
|
users_per_tenant: 2
|
||||||
|
sla:
|
||||||
|
failure_rate:
|
||||||
|
max: 0
|
||||||
|
@ -104,3 +104,19 @@ class CreateAggregateAddAndRemoveHost(utils.NovaScenario):
|
|||||||
host_name = hosts[0].host_name
|
host_name = hosts[0].host_name
|
||||||
self._aggregate_add_host(aggregate, host_name)
|
self._aggregate_add_host(aggregate, host_name)
|
||||||
self._aggregate_remove_host(aggregate, host_name)
|
self._aggregate_remove_host(aggregate, host_name)
|
||||||
|
|
||||||
|
|
||||||
|
@validation.required_services(consts.Service.NOVA)
|
||||||
|
@validation.required_openstack(admin=True)
|
||||||
|
@scenario.configure(context={"admin_cleanup": ["nova"]},
|
||||||
|
name="NovaAggregates.create_and_get_aggregate_details")
|
||||||
|
class CreateAndGetAggregateDetails(utils.NovaScenario):
|
||||||
|
"""Scenario for create and get aggregate details."""
|
||||||
|
|
||||||
|
def run(self, availability_zone):
|
||||||
|
"""Create an aggregate and then get its details.
|
||||||
|
|
||||||
|
This scenario first creates an aggregate and then get details of it.
|
||||||
|
"""
|
||||||
|
aggregate = self._create_aggregate(availability_zone)
|
||||||
|
self._get_aggregate_details(aggregate)
|
||||||
|
@ -1097,6 +1097,15 @@ class NovaScenario(scenario.OpenStackScenario):
|
|||||||
return self.admin_clients("nova").aggregates.create(aggregate_name,
|
return self.admin_clients("nova").aggregates.create(aggregate_name,
|
||||||
availability_zone)
|
availability_zone)
|
||||||
|
|
||||||
|
@atomic.action_timer("nova.get_aggregate_details")
|
||||||
|
def _get_aggregate_details(self, aggregate):
|
||||||
|
"""Get details of the specified aggregate.
|
||||||
|
|
||||||
|
:param aggregate: The aggregate to get details
|
||||||
|
:returns: Detailed information of aggregate
|
||||||
|
"""
|
||||||
|
return self.admin_clients("nova").aggregates.get_details(aggregate)
|
||||||
|
|
||||||
@atomic.action_timer("nova.delete_aggregate")
|
@atomic.action_timer("nova.delete_aggregate")
|
||||||
def _delete_aggregate(self, aggregate):
|
def _delete_aggregate(self, aggregate):
|
||||||
"""Delete the specified aggregate.
|
"""Delete the specified aggregate.
|
||||||
|
@ -0,0 +1,25 @@
|
|||||||
|
{
|
||||||
|
"NovaAggregates.create_and_get_aggregate_details": [
|
||||||
|
{
|
||||||
|
"args": {
|
||||||
|
"availability_zone": "nova"
|
||||||
|
},
|
||||||
|
"runner": {
|
||||||
|
"type": "constant",
|
||||||
|
"times": 10,
|
||||||
|
"concurrency": 2
|
||||||
|
},
|
||||||
|
"context": {
|
||||||
|
"users": {
|
||||||
|
"tenants": 3,
|
||||||
|
"users_per_tenant": 2
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"sla": {
|
||||||
|
"failure_rate": {
|
||||||
|
"max": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,16 @@
|
|||||||
|
---
|
||||||
|
NovaAggregates.create_and_get_aggregate_details:
|
||||||
|
-
|
||||||
|
args:
|
||||||
|
availability_zone: "nova"
|
||||||
|
runner:
|
||||||
|
type: "constant"
|
||||||
|
times: 10
|
||||||
|
concurrency: 2
|
||||||
|
context:
|
||||||
|
users:
|
||||||
|
tenants: 3
|
||||||
|
users_per_tenant: 2
|
||||||
|
sla:
|
||||||
|
failure_rate:
|
||||||
|
max: 0
|
@ -71,3 +71,12 @@ class NovaAggregatesTestCase(test.TestCase):
|
|||||||
"fake_aggregate", "fake_host_name")
|
"fake_aggregate", "fake_host_name")
|
||||||
scenario._aggregate_remove_host.assert_called_once_with(
|
scenario._aggregate_remove_host.assert_called_once_with(
|
||||||
"fake_aggregate", "fake_host_name")
|
"fake_aggregate", "fake_host_name")
|
||||||
|
|
||||||
|
def test_create_and_get_aggregate_details(self):
|
||||||
|
scenario = aggregates.CreateAndGetAggregateDetails()
|
||||||
|
scenario._create_aggregate = mock.Mock()
|
||||||
|
scenario._get_aggregate_details = mock.Mock()
|
||||||
|
scenario.run(availability_zone="nova")
|
||||||
|
scenario._create_aggregate.assert_called_once_with("nova")
|
||||||
|
aggregate = scenario._create_aggregate.return_value
|
||||||
|
scenario._get_aggregate_details.assert_called_once_with(aggregate)
|
||||||
|
@ -1141,6 +1141,18 @@ class NovaScenarioTestCase(test.ScenarioTestCase):
|
|||||||
self._test_atomic_action_timer(nova_scenario.atomic_actions(),
|
self._test_atomic_action_timer(nova_scenario.atomic_actions(),
|
||||||
"nova.delete_aggregate")
|
"nova.delete_aggregate")
|
||||||
|
|
||||||
|
def test_get_aggregate_details(self):
|
||||||
|
nova_scenario = utils.NovaScenario(context=self.context)
|
||||||
|
result = nova_scenario._get_aggregate_details("fake_aggregate")
|
||||||
|
self.assertEqual(
|
||||||
|
self.admin_clients("nova").aggregates.get_details.return_value,
|
||||||
|
result)
|
||||||
|
self.admin_clients(
|
||||||
|
"nova").aggregates.get_details.assert_called_once_with(
|
||||||
|
"fake_aggregate")
|
||||||
|
self._test_atomic_action_timer(nova_scenario.atomic_actions(),
|
||||||
|
"nova.get_aggregate_details")
|
||||||
|
|
||||||
def test_update_aggregate(self):
|
def test_update_aggregate(self):
|
||||||
aggregate = mock.Mock()
|
aggregate = mock.Mock()
|
||||||
nova_scenario = utils.NovaScenario(context=self.context)
|
nova_scenario = utils.NovaScenario(context=self.context)
|
||||||
|
Loading…
Reference in New Issue
Block a user