aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_sdc_vl.py
blob: 8eb2a204f017e9336c5d30f902cbe4a04d1e174d (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
#   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

import pytest

import onapsdk.constants as const
from onapsdk.exceptions import ResourceNotFound
from onapsdk.sdc.vl import Vl


VLS = [
    {
        "uuid":"e12cedf4-fd3f-4d76-ae2a-0368eaee40dc",
        "invariantUUID":"4084c513-5149-456d-9be0-efc503058799",
        "name":"NeutronNet",
        "version":"1.0",
        "toscaModelURL":"/sdc/v1/catalog/resources/e12cedf4-fd3f-4d76-ae2a-0368eaee40dc/toscaModel",
        "category":"Generic",
        "subCategory":"Network Elements",
        "resourceType":"VL",
        "lifecycleState":"CERTIFIED",
        "lastUpdaterUserId":"jh0003"
    },
    {
        "uuid":"3b9f3a0d-f9d1-4d95-80ce-7f7812a2b7b5",
        "invariantUUID":"c4aa9ad7-1c68-4fde-884e-b9d693b5f725",
        "name":"Network",
        "version":"1.0",
        "toscaModelURL":"/sdc/v1/catalog/resources/3b9f3a0d-f9d1-4d95-80ce-7f7812a2b7b5/toscaModel",
        "category":"Generic",
        "subCategory":"Infrastructure",
        "resourceType":"VL",
        "lifecycleState":"CERTIFIED",
        "lastUpdaterUserId":"jh0003"
    }
]


@mock.patch.object(Vl, 'send_message_json')
def test_get_all_no_vl(mock_send):
    """Returns empty array if no vls."""
    mock_send.return_value = {}
    assert Vl.get_all() == []
    mock_send.assert_called_once_with("GET", 'get Vls', 'https://sdc.api.be.simpledemo.onap.org:30204/sdc/v1/catalog/resources?resourceType=VL')


@mock.patch.object(Vl, 'send_message_json')
def test_get_all_vl(mock_send):
    mock_send.return_value = VLS
    vls = Vl.get_all()
    assert len(vls) == 2
    vl = vls[0]
    assert vl.name == "NeutronNet"
    assert vl.identifier == "e12cedf4-fd3f-4d76-ae2a-0368eaee40dc"
    assert vl.unique_uuid == "4084c513-5149-456d-9be0-efc503058799"
    assert vl.version == "1.0"
    assert vl.status == const.CERTIFIED
    vl = vls[1]
    assert vl.name == "Network"
    assert vl.identifier == "3b9f3a0d-f9d1-4d95-80ce-7f7812a2b7b5"
    assert vl.unique_uuid == "c4aa9ad7-1c68-4fde-884e-b9d693b5f725"
    assert vl.version == "1.0"
    assert vl.status == const.CERTIFIED


@mock.patch.object(Vl, 'send_message_json')
def test_create_vl_not_exists(mock_send):
    mock_send.return_value = VLS
    with pytest.raises(ResourceNotFound):
        Vl("not_exists")