Merge "Fix non-parameterized service id in hypervisors sample tests" into stable/newton

This commit is contained in:
Zuul 2017-11-16 06:42:09 +00:00 committed by Gerrit Code Review
commit 3a5d3c5334
5 changed files with 8 additions and 6 deletions

View File

@ -20,7 +20,7 @@
"running_vms": 0,
"service": {
"host": "%(host_name)s",
"id": 2,
"id": "%(int:service_id)s",
"disabled_reason": null
},
"vcpus": 1,

View File

@ -19,7 +19,7 @@
"running_vms": 0,
"service": {
"host": "%(host_name)s",
"id": 2,
"id": "%(int:service_id)s",
"disabled_reason": null
},
"vcpus": 1,

View File

@ -33,7 +33,7 @@
"running_vms": 0,
"service": {
"host": "%(host_name)s",
"id": 2,
"id": "%(int:service_id)s",
"disabled_reason": null
},
"vcpus": 1,

View File

@ -32,7 +32,7 @@
"running_vms": 0,
"service": {
"host": "%(host_name)s",
"id": 2,
"id": "%(int:service_id)s",
"disabled_reason": null
},
"vcpus": 1,

View File

@ -59,7 +59,8 @@ class HypervisorsSampleJsonTests(api_sample_base.ApiSampleTestBaseV21):
def test_hypervisors_detail(self):
hypervisor_id = '1'
subs = {
'hypervisor_id': hypervisor_id
'hypervisor_id': hypervisor_id,
'service_id': '[0-9]+',
}
response = self._do_get('os-hypervisors/detail')
self._verify_response('hypervisors-detail-resp', subs, response, 200)
@ -67,7 +68,8 @@ class HypervisorsSampleJsonTests(api_sample_base.ApiSampleTestBaseV21):
def test_hypervisors_show(self):
hypervisor_id = '1'
subs = {
'hypervisor_id': hypervisor_id
'hypervisor_id': hypervisor_id,
'service_id': '[0-9]+',
}
response = self._do_get('os-hypervisors/%s' % hypervisor_id)
self._verify_response('hypervisors-show-resp', subs, response, 200)