9f10d7d0b0
Add return-request-id-to-caller function to resources and resource managers in the following files. The methods in the resource class and resource manager return a wrapper class that has 'request_ids' property. The caller can get request ids of the callee via the property. * novaclient/v2/contrib/assisted_volume_snapshots.py * novaclient/v2/contrib/baremetal.py * novaclient/v2/contrib/cells.py * novaclient/v2/contrib/instance_action.py * novaclient/v2/contrib/list_extensions.py * novaclient/v2/contrib/migrations.py * novaclient/v2/contrib/server_external_events.py * novaclient/v2/contrib/tenant_networks.py Co-authored-by: Ankit Agrawal <ankit11.agrawal@nttdata.com> Change-Id: I58ec61eb585d145cb7d638bcb690b3ebee0461e9 Implements: blueprint return-request-id-to-caller
157 lines
5.5 KiB
Python
157 lines
5.5 KiB
Python
# Copyright 2012 OpenStack Foundation
|
|
#
|
|
# Licensed 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.
|
|
|
|
from novaclient.tests.unit.v2 import fakes
|
|
from novaclient.v2 import client
|
|
|
|
FAKE_REQUEST_ID_LIST = fakes.FAKE_REQUEST_ID_LIST
|
|
FAKE_RESPONSE_HEADERS = fakes.FAKE_RESPONSE_HEADERS
|
|
|
|
|
|
class FakeClient(fakes.FakeClient):
|
|
def __init__(self, *args, **kwargs):
|
|
client.Client.__init__(self, 'username', 'password',
|
|
'project_id', 'auth_url',
|
|
extensions=kwargs.get('extensions'),
|
|
direct_use=False)
|
|
self.client = FakeHTTPClient(**kwargs)
|
|
|
|
|
|
class FakeHTTPClient(fakes.FakeHTTPClient):
|
|
def get_os_tenant_networks(self):
|
|
return (200, FAKE_RESPONSE_HEADERS, {
|
|
'networks': [{"label": "1", "cidr": "10.0.0.0/24",
|
|
'project_id': '4ffc664c198e435e9853f2538fbcd7a7',
|
|
'id': '1'}]})
|
|
|
|
def get_os_tenant_networks_1(self, **kw):
|
|
return (200, FAKE_RESPONSE_HEADERS, {
|
|
'network': {"label": "1", "cidr": "10.0.0.0/24",
|
|
'project_id': '4ffc664c198e435e9853f2538fbcd7a7',
|
|
'id': '1'}})
|
|
|
|
def post_os_tenant_networks(self, **kw):
|
|
return (201, FAKE_RESPONSE_HEADERS, {
|
|
'network': {"label": "1", "cidr": "10.0.0.0/24",
|
|
'project_id': '4ffc664c198e435e9853f2538fbcd7a7',
|
|
'id': '1'}})
|
|
|
|
def delete_os_tenant_networks_1(self, **kw):
|
|
return (204, FAKE_RESPONSE_HEADERS, None)
|
|
|
|
def get_os_baremetal_nodes(self, **kw):
|
|
return (
|
|
200, FAKE_RESPONSE_HEADERS, {
|
|
'nodes': [
|
|
{
|
|
"id": 1,
|
|
"instance_uuid": None,
|
|
"interfaces": [],
|
|
"cpus": 2,
|
|
"local_gb": 10,
|
|
"memory_mb": 5,
|
|
"pm_address": "2.3.4.5",
|
|
"pm_user": "pmuser",
|
|
"pm_password": "pmpass",
|
|
"prov_mac_address": "aa:bb:cc:dd:ee:ff",
|
|
"prov_vlan_id": 1,
|
|
"service_host": "somehost",
|
|
"terminal_port": 8080,
|
|
}
|
|
]
|
|
}
|
|
)
|
|
|
|
def get_os_baremetal_nodes_1(self, **kw):
|
|
return (
|
|
200, FAKE_RESPONSE_HEADERS, {
|
|
'node': {
|
|
"id": 1,
|
|
"instance_uuid": None,
|
|
"pm_address": "1.2.3.4",
|
|
"interfaces": [],
|
|
"cpus": 2,
|
|
"local_gb": 10,
|
|
"memory_mb": 5,
|
|
"pm_user": "pmuser",
|
|
"pm_password": "pmpass",
|
|
"prov_mac_address": "aa:bb:cc:dd:ee:ff",
|
|
"prov_vlan_id": 1,
|
|
"service_host": "somehost",
|
|
"terminal_port": 8080,
|
|
}
|
|
}
|
|
)
|
|
|
|
def post_os_baremetal_nodes(self, **kw):
|
|
return (
|
|
200, FAKE_RESPONSE_HEADERS, {
|
|
'node': {
|
|
"id": 1,
|
|
"instance_uuid": None,
|
|
"cpus": 2,
|
|
"local_gb": 10,
|
|
"memory_mb": 5,
|
|
"pm_address": "2.3.4.5",
|
|
"pm_user": "pmuser",
|
|
"pm_password": "pmpass",
|
|
"prov_mac_address": "aa:bb:cc:dd:ee:ff",
|
|
"prov_vlan_id": 1,
|
|
"service_host": "somehost",
|
|
"terminal_port": 8080,
|
|
}
|
|
}
|
|
)
|
|
|
|
def delete_os_baremetal_nodes_1(self, **kw):
|
|
return (202, FAKE_RESPONSE_HEADERS, {})
|
|
|
|
def post_os_baremetal_nodes_1_action(self, **kw):
|
|
body = kw['body']
|
|
action = list(body)[0]
|
|
if action == "add_interface":
|
|
return (
|
|
200, FAKE_RESPONSE_HEADERS, {
|
|
'interface': {
|
|
"id": 2,
|
|
"address": "bb:cc:dd:ee:ff:aa",
|
|
"datapath_id": 1,
|
|
"port_no": 2,
|
|
}
|
|
}
|
|
)
|
|
elif action == "remove_interface":
|
|
return (202, FAKE_RESPONSE_HEADERS, {})
|
|
else:
|
|
return (500, {}, {})
|
|
|
|
def post_os_assisted_volume_snapshots(self, **kw):
|
|
return (202, FAKE_RESPONSE_HEADERS,
|
|
{'snapshot': {'id': 'blah', 'volumeId': '1'}})
|
|
|
|
def delete_os_assisted_volume_snapshots_x(self, **kw):
|
|
return (202, FAKE_RESPONSE_HEADERS, {})
|
|
|
|
def post_os_server_external_events(self, **kw):
|
|
return (200, FAKE_RESPONSE_HEADERS, {
|
|
'events': [
|
|
{'name': 'test-event',
|
|
'status': 'completed',
|
|
'tag': 'tag',
|
|
'server_uuid': 'fake-uuid1'},
|
|
{'name': 'test-event',
|
|
'status': 'completed',
|
|
'tag': 'tag',
|
|
'server_uuid': 'fake-uuid2'}]})
|