aboutsummaryrefslogtreecommitdiffstats
path: root/bpmn/MSOCommonBPMN/src/test/java/org/onap/so/client/cds/ConfigureInstanceParamsForVnfTest.java
blob: 547129e89806aa3ebf1958a42ec8075bc1d0cd94 (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
/*-
 * ============LICENSE_START=======================================================
 * ONAP - SO
 * ================================================================================
 * Copyright (C) 2021 Bell Canada
 * ================================================================================
 * 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.client.cds;

import static org.junit.Assert.assertEquals;
import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.when;
import com.google.gson.JsonObject;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Map;
import java.util.UUID;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.InjectMocks;
import org.mockito.Mock;
import org.mockito.junit.MockitoJUnitRunner;
import org.onap.so.serviceinstancebeans.ModelInfo;
import org.onap.so.serviceinstancebeans.Resources;
import org.onap.so.serviceinstancebeans.Service;
import org.onap.so.serviceinstancebeans.Vnfs;

@RunWith(MockitoJUnitRunner.class)
public class ConfigureInstanceParamsForVnfTest {

    @InjectMocks
    private ConfigureInstanceParamsForVnf configureInstanceParamsForVnf;

    @Mock
    private ExtractServiceFromUserParameters extractServiceFromUserParameters;

    private static final String VNF_1_CUSTOMIZATION_ID = UUID.randomUUID().toString();
    private static final String VNF_2_CUSTOMIZATION_ID = UUID.randomUUID().toString();
    private static final String VNF_1_INSTANCE_NAME = "vnf-instance-1";
    private static final String VNF_2_INSTANCE_NAME = "vnf-instance-2";
    private static final List<Map<String, String>> VNF_1_INSTANCE_PARAMS =
            Arrays.asList(Map.of("param-1", "xyz", "param-2", "123"), Map.of("param-3", "CCC"));
    private static final List<Map<String, String>> VNF_2_INSTANCE_PARAMS =
            Arrays.asList(Map.of("param-1", "abc", "param-2", "999"), Map.of("param-3", "AAA"));


    @Test
    public void testPopulateInstanceParamsByInstanceName() throws Exception {
        Service service = new Service();
        Resources resources = new Resources();
        resources.setVnfs(createVnfs());
        service.setResources(resources);
        when(extractServiceFromUserParameters.getServiceFromRequestUserParams(any())).thenReturn(service);
        JsonObject jsonObject = new JsonObject();

        configureInstanceParamsForVnf.populateInstanceParams(jsonObject, new ArrayList<>(), VNF_2_CUSTOMIZATION_ID,
                VNF_2_INSTANCE_NAME);

        assertEquals("abc", jsonObject.get("param-1").getAsString());
        assertEquals("999", jsonObject.get("param-2").getAsString());
        assertEquals("AAA", jsonObject.get("param-3").getAsString());
    }

    @Test
    public void testPopulateInstanceParamsByCustomizationId() throws Exception {
        Service service = new Service();
        Resources resources = new Resources();
        resources.setVnfs(createVnfs());
        service.setResources(resources);
        when(extractServiceFromUserParameters.getServiceFromRequestUserParams(any())).thenReturn(service);
        JsonObject jsonObject = new JsonObject();

        // No instance name is passed
        configureInstanceParamsForVnf.populateInstanceParams(jsonObject, new ArrayList<>(), VNF_1_CUSTOMIZATION_ID,
                null);

        assertEquals("xyz", jsonObject.get("param-1").getAsString());
        assertEquals("123", jsonObject.get("param-2").getAsString());
        assertEquals("CCC", jsonObject.get("param-3").getAsString());
    }

    private List<Vnfs> createVnfs() {
        Vnfs vnf1 = new Vnfs();
        vnf1.setInstanceName(VNF_1_INSTANCE_NAME);
        ModelInfo modelInfo = new ModelInfo();
        modelInfo.setModelCustomizationId(VNF_1_CUSTOMIZATION_ID);
        vnf1.setModelInfo(modelInfo);
        vnf1.setInstanceParams(VNF_1_INSTANCE_PARAMS);

        Vnfs vnf2 = new Vnfs();
        modelInfo = new ModelInfo();
        modelInfo.setModelCustomizationId(VNF_2_CUSTOMIZATION_ID);
        vnf2.setModelInfo(modelInfo);
        vnf2.setInstanceName(VNF_2_INSTANCE_NAME);
        vnf2.setInstanceParams(VNF_2_INSTANCE_PARAMS);

        return Arrays.asList(vnf1, vnf2);
    }

}