aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-model/src/test/java/org/openecomp/sdc/be/model/jsontitan/operations/CapabilitiesOperationTest.java
blob: 0c9c35b62a9d25ae06858b37994f99e0fc49cbc9 (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
/*
 * Copyright © 2016-2018 European Support Limited
 *
 * 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.
 */

package org.openecomp.sdc.be.model.jsontitan.operations;

import fj.data.Either;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
import org.mockito.InjectMocks;
import org.mockito.Mock;
import org.mockito.MockitoAnnotations;
import org.openecomp.sdc.be.dao.jsongraph.GraphVertex;
import org.openecomp.sdc.be.dao.jsongraph.TitanDao;
import org.openecomp.sdc.be.dao.titan.TitanOperationStatus;
import org.openecomp.sdc.be.datatypes.elements.MapPropertiesDataDefinition;
import org.openecomp.sdc.be.datatypes.elements.PropertyDataDefinition;
import org.openecomp.sdc.be.model.jsontitan.datamodel.TopologyTemplate;
import org.openecomp.sdc.be.model.jsontitan.utils.CapabilityTestUtils;
import org.openecomp.sdc.be.model.operations.api.StorageOperationStatus;

import java.util.HashMap;
import java.util.Map;

import static org.mockito.ArgumentMatchers.any;
import static org.mockito.ArgumentMatchers.anyMap;
import static org.mockito.ArgumentMatchers.anyString;
import static org.mockito.Mockito.when;

public class CapabilitiesOperationTest {

    @InjectMocks
    CapabilitiesOperation operation = new CapabilitiesOperation();
    @Mock
    private  TitanDao mockTitanDao;
    @Mock
    private TopologyTemplateOperation topologyTemplateOperation;

    @Before
    public void setUp() {
        MockitoAnnotations.initMocks(this);

        when(mockTitanDao.commit()).thenReturn(TitanOperationStatus.OK);
        when(mockTitanDao.getVertexById(anyString(), any())).thenReturn(Either.left(new GraphVertex()));

        when(topologyTemplateOperation.updateFullToscaData(any(), any(), any(), anyMap())).thenReturn(StorageOperationStatus.OK);
        TopologyTemplate topologyTemplate = new TopologyTemplate();

        Map<String, MapPropertiesDataDefinition> capPropsForTopologyTemplate = CapabilityTestUtils
                .createCapPropsForTopologyTemplate(topologyTemplate);
        topologyTemplate.setCapabilitiesProperties(capPropsForTopologyTemplate);

        when(topologyTemplateOperation.getToscaElement(anyString(), any())).thenReturn(Either.left(topologyTemplate));
    }

    @Test
    public void testCreateOrUpdateCapabilitiesProperties() {

        Map<String, PropertyDataDefinition> mapToscaDataDefinition = new HashMap<>();
        PropertyDataDefinition propertyDataDefinition = new PropertyDataDefinition();
        propertyDataDefinition.setUniqueId("ComponentInput1_uniqueId");
        propertyDataDefinition.setName("propName");
        mapToscaDataDefinition.put(propertyDataDefinition.getUniqueId(), propertyDataDefinition);
        MapPropertiesDataDefinition  mapPropertiesDataDefinition = new MapPropertiesDataDefinition(mapToscaDataDefinition);

        Map<String, MapPropertiesDataDefinition> propertiesMap = new HashMap<>();
        propertiesMap.put(propertyDataDefinition.getUniqueId(), mapPropertiesDataDefinition);

        StorageOperationStatus operationStatus = operation.createOrUpdateCapabilityProperties("componentId",
                propertiesMap);

        Assert.assertEquals(StorageOperationStatus.OK, operationStatus);
    }
}