aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_cds_blueprint_models.py
blob: 4b1744dd6e6e9fd6248ac5c468bf0b6a4ab3137e (plain)
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
"""Test CdsBlueprintModel module."""
#   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.
import os.path

from unittest import mock
from tempfile import TemporaryDirectory

import pytest
import requests
import io

from onapsdk.exceptions import ResourceNotFound
from onapsdk.cds.blueprint_model import BlueprintModel
from onapsdk.cds.cds_element import CdsElement
from onapsdk.cds.blueprint import Blueprint
from onapsdk.onap_service import OnapService


# pylint: disable=C0301
BLUEPRINT_MODEL = {
    "blueprintModel": {
        "id": "11111111-2222-3333-4444-555555555555",
        "artifactUUId": None,
        "artifactType": "SDNC_MODEL",
        "artifactVersion": "1.0.0",
        "artifactDescription": "",
        "internalVersion": None,
        "createdDate": "2020-12-14T19:33:57.000Z",
        "artifactName": "test_blueprint",
        "published": "Y",
        "updatedBy": "Carlos Santana <carlos.santana@onap.com>",
        "tags": "Carlos Santana, test, blueprint"
    }
}

BLUEPRINT_MODEL_LIST = [
    BLUEPRINT_MODEL
]
# pylint: enable=C0301


def test_init():
    """Test the initialization."""
    element = CdsElement()
    assert isinstance(element, OnapService)


def test_class_variables():
    """Test the class variables."""
    assert CdsElement._url == "http://portal.api.simpledemo.onap.org:30449"
    assert CdsElement.auth == ("ccsdkapps", "ccsdkapps")
    assert CdsElement.headers == {
        "Content-Type": "application/json",
        "Accept": "application/json"}


@mock.patch.object(CdsElement, 'send_message_json')
def test_blueprint_model_all(mock_send):
    """Test get_all function of BlueprintModel."""
    mock_send.return_value = BLUEPRINT_MODEL_LIST
    assert len(list(BlueprintModel.get_all())) == 1

    blueprint_model_1 = next(BlueprintModel.get_all())
    assert blueprint_model_1.blueprint_model_id == "11111111-2222-3333-4444-555555555555"
    assert blueprint_model_1.artifact_uuid is None
    assert blueprint_model_1.artifact_type == "SDNC_MODEL"
    assert blueprint_model_1.artifact_version == "1.0.0"
    assert blueprint_model_1.internal_version is None
    assert blueprint_model_1.created_date == "2020-12-14T19:33:57.000Z"
    assert blueprint_model_1.artifact_name == "test_blueprint"
    assert blueprint_model_1.published == "Y"
    assert blueprint_model_1.updated_by == "Carlos Santana <carlos.santana@onap.com>"
    assert blueprint_model_1.tags == "Carlos Santana, test, blueprint"


@mock.patch.object(CdsElement, 'send_message_json')
def test_blueprint_model_all_empty(mock_send):
    """Test get_all function of BlueprintModel with no BlueprintModels."""
    mock_send.return_value = ""
    assert len(list(BlueprintModel.get_all())) == 0


@mock.patch.object(CdsElement, 'send_message_json')
def test_blueprint_model_by_id(mock_send):
    """Test get_by_id function of BlueprintModel."""
    mock_send.return_value = BLUEPRINT_MODEL

    blueprint_model_2 = BlueprintModel.get_by_id(
        blueprint_model_id="11111111-2222-3333-4444-555555555555")
    assert blueprint_model_2.blueprint_model_id == "11111111-2222-3333-4444-555555555555"
    assert blueprint_model_2.artifact_uuid is None
    assert blueprint_model_2.artifact_type == "SDNC_MODEL"
    assert blueprint_model_2.artifact_version == "1.0.0"
    assert blueprint_model_2.internal_version is None
    assert blueprint_model_2.created_date == "2020-12-14T19:33:57.000Z"
    assert blueprint_model_2.artifact_name == "test_blueprint"
    assert blueprint_model_2.published == "Y"
    assert blueprint_model_2.updated_by == "Carlos Santana <carlos.santana@onap.com>"
    assert blueprint_model_2.tags == "Carlos Santana, test, blueprint"


@mock.patch.object(CdsElement, 'send_message_json')
def test_blueprint_model_by_id_non_existing(mock_send):
    """Test get_by_id exception for non existing BlueprintModel."""

    mock_send.side_effect = ResourceNotFound
    with pytest.raises(ResourceNotFound) as exc:
        BlueprintModel.get_by_id(
            blueprint_model_id="11111111-2222-3333-4444-555555555555")

    assert exc.type == ResourceNotFound


@mock.patch.object(CdsElement, 'send_message_json')
def test_blueprint_model_by_name_and_version(mock_send):
    """Test get_by_name_and_version function of BlueprintModel."""
    mock_send.return_value = BLUEPRINT_MODEL

    blueprint_model_3 = BlueprintModel.get_by_name_and_version(
        blueprint_name="test_blueprint",
        blueprint_version="1.0.0")
    assert blueprint_model_3.blueprint_model_id == "11111111-2222-3333-4444-555555555555"
    assert blueprint_model_3.artifact_uuid is None
    assert blueprint_model_3.artifact_type == "SDNC_MODEL"
    assert blueprint_model_3.artifact_version == "1.0.0"
    assert blueprint_model_3.internal_version is None
    assert blueprint_model_3.created_date == "2020-12-14T19:33:57.000Z"
    assert blueprint_model_3.artifact_name == "test_blueprint"
    assert blueprint_model_3.published == "Y"
    assert blueprint_model_3.updated_by == "Carlos Santana <carlos.santana@onap.com>"
    assert blueprint_model_3.tags == "Carlos Santana, test, blueprint"


@mock.patch.object(CdsElement, 'send_message_json')
def test_blueprint_model_by_name_and_version_non_existing(mock_send):
    """Test get_by_name_and_version exception for non existing BlueprintModel."""

    mock_send.side_effect = ResourceNotFound
    with pytest.raises(ResourceNotFound) as exc:
        BlueprintModel.get_by_name_and_version(
            blueprint_name="test_blueprint_wrong",
            blueprint_version="1.0.0")

    assert exc.type == ResourceNotFound


@mock.patch.object(CdsElement, 'send_message')
def test_get_blueprint_object(mock_send):
    """Test retrieve Blueprint object for selected BlueprintModel."""
    mock_send.return_value.content = b"test cba - it will never work"

    blueprint_model_4 = BlueprintModel(
        blueprint_model_id="11111111-2222-3333-4444-555555555555")

    blueprint4_object = blueprint_model_4.get_blueprint()
    assert isinstance(blueprint4_object, Blueprint)


@mock.patch.object(CdsElement, 'send_message')
def test_save_blueprint(mock_send):
    """Test download BlueprintModel from onap cds."""
    r = requests.Response()
    r.raw = io.BytesIO(b'test cba - it will never work')
    mock_send.return_value = r

    blueprint_model_5 = BlueprintModel(
        blueprint_model_id="11111111-2222-3333-4444-555555555555")

    with TemporaryDirectory() as tmpdirname:
        path = os.path.join(tmpdirname, "test.zip")
        blueprint_model_5.save(dst_file_path=path)

        with open(path, "rb") as f:
            assert f.read() == b"test cba - it will never work"


@mock.patch.object(CdsElement, 'send_message')
def test_delete_blueprint(mock_send):
    """Test delete BlueprintModel in onap cds. """

    blueprint_model_6 = BlueprintModel(
        blueprint_model_id="11111111-2222-3333-4444-555555555555")
    blueprint_model_6.delete()
    mock_send.assert_called_once()

    method, description, url = mock_send.call_args[0]
    assert method == "DELETE"
    assert description == f"Delete blueprint"
    assert url == f"{CdsElement._url}/api/v1/blueprint-model/{blueprint_model_6.blueprint_model_id}"