1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
# Copyright 2022 Orange, Deutsche Telekom AG
#
# 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 unittest import mock
from onapsdk.aai.cloud_infrastructure.cloud_region import CloudRegion, Tenant
from onapsdk.exceptions import ResourceNotFound
COUNT = {
"results":[
{
"cloud-region":2
}
]
}
@mock.patch("onapsdk.aai.cloud_infrastructure.cloud_region.AaiResource.relationships", new_callable=mock.PropertyMock)
@mock.patch("onapsdk.aai.cloud_infrastructure.cloud_region.Complex.get_by_physical_location_id")
def test_cloud_region_complex_property(mock_complex_get, mock_relationships):
cr = CloudRegion("test_cloud_owner", "test_cloud_region_id", False, False)
mock_relationships.return_value = []
assert cr.complex is None
mock_relationships.return_value = [mock.MagicMock()]
assert cr.complex is None
relationship_mock = mock.MagicMock()
relationship_mock.related_to = "complex"
relationship_mock.get_relationship_data.return_value = None
mock_relationships.return_value = [relationship_mock]
assert cr.complex is None
relationship_mock.get_relationship_data.return_value = "123"
mock_complex_get.side_effect = ResourceNotFound
assert cr.complex is None
mock_complex_get.side_effect = None
mock_complex_get.return_value = mock.MagicMock()
assert cr.complex is not None
mock_relationships.side_effect = ResourceNotFound
assert cr.complex is None
@mock.patch("onapsdk.aai.cloud_infrastructure.cloud_region.CloudRegion.tenants", new_callable=mock.PropertyMock)
def test_cloud_region_get_tenants_by_name(mock_tenants):
cr = CloudRegion("test_cloud_owner", "test_cloud_region_id", False, False)
mock_tenants.return_value = iter([
Tenant(cloud_region="test_cloud_region_id",tenant_id="test-tenant",tenant_name="test-tenant")
])
tenants = list(cr.get_tenants_by_name("test-tenant"))
assert len(tenants) == 1
assert isinstance(tenants[0], Tenant)
assert tenants[0].name == "test-tenant"
@mock.patch("onapsdk.aai.cloud_infrastructure.cloud_region.CloudRegion.send_message_json")
def test_cloud_region_count(mock_send_message_json):
mock_send_message_json.return_value = COUNT
assert CloudRegion.count() == 2
|