aboutsummaryrefslogtreecommitdiffstats
path: root/asdc-controller/src/test/java/org/onap/so/asdc/installer/heat/ToscaResourceInputTest.java
blob: e738235a0a891f001b87ef126ea1721312ba3705 (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
/*-
 * ============LICENSE_START=======================================================
 * ONAP - SO
 * ================================================================================
 * Copyright (C) 2019 Huawei Intellectual Property. All rights reserved.
 * ================================================================================
 * 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.
 * ============LICENSE_END=========================================================
 */
package org.onap.so.asdc.installer.heat;

import org.junit.Rule;
import org.junit.Test;
import org.mockito.Mock;
import org.mockito.junit.MockitoJUnit;
import org.mockito.junit.MockitoRule;
import org.onap.sdc.tosca.parser.api.ISdcCsarHelper;
import org.onap.sdc.toscaparser.api.NodeTemplate;
import org.onap.sdc.toscaparser.api.Property;
import org.onap.sdc.toscaparser.api.elements.Metadata;
import org.onap.sdc.toscaparser.api.functions.GetInput;
import org.onap.sdc.toscaparser.api.parameters.Input;
import org.onap.so.asdc.client.exceptions.ArtifactInstallerException;
import org.onap.so.asdc.installer.ToscaResourceStructure;
import org.onap.so.db.catalog.beans.Service;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
import java.util.LinkedHashMap;

import static org.junit.Assert.assertEquals;
import static org.mockito.Matchers.any;
import static org.mockito.Mockito.when;

public class ToscaResourceInputTest {
    @Rule
    public MockitoRule rule = MockitoJUnit.rule();

    @Mock
    ISdcCsarHelper sdcCsarHelper;

    @Mock
    NodeTemplate nodeTemplate;

    @Mock
    Property property;

    @Mock
    GetInput getInput;

    @Mock
    Input input;

    @Test
    public void processResourceSequenceTest() {
        ToscaResourceInstaller toscaResourceInstaller = new ToscaResourceInstaller();
        ToscaResourceStructure toscaResourceStructure = new ToscaResourceStructure();
        toscaResourceStructure.setSdcCsarHelper(sdcCsarHelper);
        ArrayList<Input> inputs = new ArrayList<>();
        Service service = new Service();

        HashMap<String, Object> hashMap = new HashMap();
        hashMap.put("name", "node1");

        Metadata metadata = new Metadata(hashMap);
        when(nodeTemplate.getMetaData()).thenReturn(metadata);
        when(sdcCsarHelper.getServiceInputs()).thenReturn(inputs);
        when(sdcCsarHelper.getServiceNodeTemplates()).thenReturn(Arrays.asList(nodeTemplate));
        when(sdcCsarHelper.getRequirementsOf(any())).thenReturn(null);


        toscaResourceInstaller.processResourceSequence(toscaResourceStructure, service);
        assertEquals(service.getResourceOrder(), "node1");
    }

    @Test
    public void resouceInputTest() throws ArtifactInstallerException {
        ToscaResourceInstaller toscaResourceInstaller = new ToscaResourceInstaller();
        ToscaResourceStructure toscaResourceStructure = new ToscaResourceStructure();

        toscaResourceStructure.setSdcCsarHelper(sdcCsarHelper);

        HashMap hashMap = new HashMap();
        hashMap.put("customizationUUID", "id1");
        Metadata metadata = new Metadata(hashMap);

        LinkedHashMap propertyMap = new LinkedHashMap();
        propertyMap.put("prop1", property);

        when(sdcCsarHelper.getServiceNodeTemplates()).thenReturn(Arrays.asList(nodeTemplate));
        when(nodeTemplate.getMetaData()).thenReturn(metadata);
        when(nodeTemplate.getProperties()).thenReturn(propertyMap);
        when(property.getValue()).thenReturn("value1");

        String resourceInput = toscaResourceInstaller.getResourceInput(toscaResourceStructure, "id1");
        assertEquals("{\\\"prop1\\\":\\\"value1\\\"}", resourceInput);
    }

    @Test
    public void resouceInputGetInputTest() throws ArtifactInstallerException {
        ToscaResourceInstaller toscaResourceInstaller = new ToscaResourceInstaller();
        ToscaResourceStructure toscaResourceStructure = new ToscaResourceStructure();

        toscaResourceStructure.setSdcCsarHelper(sdcCsarHelper);

        HashMap hashMap = new HashMap();
        hashMap.put("customizationUUID", "id1");
        Metadata metadata = new Metadata(hashMap);

        LinkedHashMap propertyMap = new LinkedHashMap();
        propertyMap.put("prop1", property);

        when(sdcCsarHelper.getServiceNodeTemplates()).thenReturn(Arrays.asList(nodeTemplate));
        when(sdcCsarHelper.getServiceInputs()).thenReturn(Arrays.asList(input));
        when(nodeTemplate.getMetaData()).thenReturn(metadata);
        when(nodeTemplate.getProperties()).thenReturn(propertyMap);
        when(property.getValue()).thenReturn(getInput);
        when(getInput.getInputName()).thenReturn("res_key");
        when(input.getName()).thenReturn("res_key");
        when(input.getDefault()).thenReturn("default_value");

        String resourceInput = toscaResourceInstaller.getResourceInput(toscaResourceStructure, "id1");
        assertEquals("{\\\"prop1\\\":\\\"res_key|default_value\\\"}", resourceInput);
    }
}