summaryrefslogtreecommitdiffstats
path: root/catalog-be/src/test/java/org/openecomp/sdc/be/ecomp/converters/AssetMetadataConverterTest.java
blob: e591832a473ebd2b79f74d3eeaa8ea6ca8a2db4f (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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
/*-
 * ============LICENSE_START=======================================================
 * SDC
 * ================================================================================
 * Copyright (C) 2019 AT&T 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.openecomp.sdc.be.ecomp.converters;

import fj.data.Either;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
import org.mockito.InjectMocks;
import org.mockito.Mock;
import org.mockito.MockitoAnnotations;
import org.mockito.Spy;
import org.mockito.junit.jupiter.MockitoExtension;
import org.openecomp.sdc.be.dao.api.ActionStatus;
import org.openecomp.sdc.be.datatypes.enums.ComponentTypeEnum;
import org.openecomp.sdc.be.datatypes.enums.OriginTypeEnum;
import org.openecomp.sdc.be.externalapi.servlet.representation.AssetMetadata;
import org.openecomp.sdc.be.impl.ComponentsUtils;
import org.openecomp.sdc.be.model.ArtifactDefinition;
import org.openecomp.sdc.be.model.Component;
import org.openecomp.sdc.be.model.ComponentInstance;
import org.openecomp.sdc.be.model.DistributionStatusEnum;
import org.openecomp.sdc.be.model.LifecycleStateEnum;
import org.openecomp.sdc.be.model.Product;
import org.openecomp.sdc.be.model.Resource;
import org.openecomp.sdc.be.model.Service;
import org.openecomp.sdc.be.model.category.CategoryDefinition;
import org.openecomp.sdc.be.model.category.SubCategoryDefinition;
import org.openecomp.sdc.be.model.jsonjanusgraph.operations.ToscaOperationFacade;
import org.openecomp.sdc.common.api.ArtifactGroupTypeEnum;
import org.openecomp.sdc.exception.ResponseFormat;

import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import static org.junit.jupiter.api.Assertions.assertTrue;
import static org.mockito.ArgumentMatchers.anyString;
import static org.mockito.Mockito.when;

@ExtendWith(MockitoExtension.class)
class AssetMetadataConverterTest {

    @InjectMocks
    @Spy
    private AssetMetadataConverter testSubject;
    @Mock
    private ComponentsUtils componentsUtils;
    @Mock
    private ToscaOperationFacade toscaOperationFacade;

    @BeforeEach
    void setUp() {
        MockitoAnnotations.openMocks(this);
    }

    @Test
    void testConvertToAssetMetadata_emptyComponentList() throws Exception {
        List<? extends Component> componentList = null;
        String serverBaseURL = "";
        boolean detailed = false;
        Either<List<? extends AssetMetadata>, ResponseFormat> result;

        result = testSubject.convertToAssetMetadata(componentList, serverBaseURL, detailed, null);
        assertTrue(result.isLeft());
    }

    @Test
    void testConvertToAssetMetadata_withComponentList_Service_without_additionalMetadataKeysToInclude() throws Exception {
        ArtifactDefinition artifactDefinition = new ArtifactDefinition();
        artifactDefinition.setEsId("mock");
        artifactDefinition.setArtifactGroupType(ArtifactGroupTypeEnum.DEPLOYMENT);
        Map<String, ArtifactDefinition> deploymentArtifacts = new HashMap<>();
        deploymentArtifacts.put("mock", artifactDefinition);
        Service component = new Service();
        component.setLifecycleState(LifecycleStateEnum.NOT_CERTIFIED_CHECKIN);
        component.setComponentType(ComponentTypeEnum.SERVICE);
        component.setDistributionStatus(DistributionStatusEnum.DISTRIBUTION_NOT_APPROVED);
        ComponentInstance componentInstance = new ComponentInstance();
        componentInstance.setComponentUid("mock");
        componentInstance.setOriginType(OriginTypeEnum.VFC);
        componentInstance.setDeploymentArtifacts(deploymentArtifacts);
        component.setComponentInstances(Collections.singletonList(componentInstance));
        component.setDeploymentArtifacts(deploymentArtifacts);
        component.setCategories(Collections.singletonList(new CategoryDefinition()));
        Map<String, String> categorySpecificMetadata = new HashMap<>();
        categorySpecificMetadata.put("mock_key", "mock_value");
        component.setCategorySpecificMetadata(categorySpecificMetadata);
        String serverBaseURL = "";
        boolean detailed = true;

        when(toscaOperationFacade.getToscaElement(anyString())).thenReturn(Either.left(new Resource()));

        Either<List<? extends AssetMetadata>, ResponseFormat> result;
        result = testSubject.convertToAssetMetadata(Collections.singletonList(component), serverBaseURL, detailed, null);
        assertTrue(result.isLeft());
    }

    @Test
    void testConvertToAssetMetadata_withComponentList_Service_with_additionalMetadataKeysToInclude() throws Exception {
        ArtifactDefinition artifactDefinition = new ArtifactDefinition();
        artifactDefinition.setEsId("mock");
        artifactDefinition.setArtifactGroupType(ArtifactGroupTypeEnum.DEPLOYMENT);
        Map<String, ArtifactDefinition> deploymentArtifacts = new HashMap<>();
        deploymentArtifacts.put("mock", artifactDefinition);
        Service component = new Service();
        component.setLifecycleState(LifecycleStateEnum.NOT_CERTIFIED_CHECKIN);
        component.setComponentType(ComponentTypeEnum.SERVICE);
        component.setDistributionStatus(DistributionStatusEnum.DISTRIBUTION_NOT_APPROVED);
        ComponentInstance componentInstance = new ComponentInstance();
        componentInstance.setComponentUid("mock");
        componentInstance.setOriginType(OriginTypeEnum.VFC);
        componentInstance.setDeploymentArtifacts(deploymentArtifacts);
        component.setComponentInstances(Collections.singletonList(componentInstance));
        component.setDeploymentArtifacts(deploymentArtifacts);
        component.setCategories(Collections.singletonList(new CategoryDefinition()));
        Map<String, String> categorySpecificMetadata = new HashMap<>();
        categorySpecificMetadata.put("mock_key", "mock_value");
        component.setCategorySpecificMetadata(categorySpecificMetadata);
        String serverBaseURL = "";
        boolean detailed = false;

        Either<List<? extends AssetMetadata>, ResponseFormat> result;
        List<String> additionalMetadataKeysToInclude = new ArrayList<>();
        additionalMetadataKeysToInclude.add("description");
        additionalMetadataKeysToInclude.add("mock_key");
        result = testSubject.convertToAssetMetadata(Collections.singletonList(component), serverBaseURL, detailed, additionalMetadataKeysToInclude);
        assertTrue(result.isLeft());
    }

    @Test
    void testConvertToAssetMetadata_withComponentList_Resource() throws Exception {
        ArtifactDefinition artifactDefinition = new ArtifactDefinition();
        artifactDefinition.setEsId("mock");
        artifactDefinition.setArtifactGroupType(ArtifactGroupTypeEnum.DEPLOYMENT);
        Map<String, ArtifactDefinition> deploymentArtifacts = new HashMap<>();
        deploymentArtifacts.put("mock", artifactDefinition);
        Resource component = new Resource();
        component.setLifecycleState(LifecycleStateEnum.NOT_CERTIFIED_CHECKIN);
        component.setComponentType(ComponentTypeEnum.RESOURCE);
        ComponentInstance componentInstance = new ComponentInstance();
        componentInstance.setComponentUid("mock");
        componentInstance.setOriginType(OriginTypeEnum.VFC);
        componentInstance.setDeploymentArtifacts(deploymentArtifacts);
        componentInstance.setNormalizedName("mock");
        component.setComponentInstances(Collections.singletonList(componentInstance));
        component.setDeploymentArtifacts(deploymentArtifacts);
        CategoryDefinition categoryDefinition = new CategoryDefinition();
        categoryDefinition.setSubcategories(Collections.singletonList(new SubCategoryDefinition()));
        component.setCategories(Collections.singletonList(categoryDefinition));
        Map<String, String> categorySpecificMetadata = new HashMap<>();
        categorySpecificMetadata.put("mock_key", "mock_value");
        component.setCategorySpecificMetadata(categorySpecificMetadata);
        String serverBaseURL = "";
        boolean detailed = true;

        when(toscaOperationFacade.getToscaElement(anyString())).thenReturn(Either.left(new Resource()));

        Either<List<? extends AssetMetadata>, ResponseFormat> result;
        List<String> additionalMetadataKeysToInclude = new ArrayList<>();
        additionalMetadataKeysToInclude.add("description");
        additionalMetadataKeysToInclude.add("mock_key");
//        additionalMetadataKeysToInclude.add("NoSuchElementException");
        result = testSubject.convertToAssetMetadata(Collections.singletonList(component), serverBaseURL, detailed, additionalMetadataKeysToInclude);
        assertTrue(result.isLeft());
    }

    @Test
    void testConvertToSingleAssetMetadata_Resource() throws Exception {

        Resource component = new Resource();
        String serverBaseURL = "";
        boolean detailed = false;
        Either<? extends AssetMetadata, ResponseFormat> result;
        component.setLifecycleState(LifecycleStateEnum.NOT_CERTIFIED_CHECKIN);
        component.setComponentType(ComponentTypeEnum.RESOURCE);

        result = testSubject.convertToSingleAssetMetadata(component, serverBaseURL, detailed, null);
        assertTrue(result.isLeft());
    }

    @Test
    void testConvertToSingleAssetMetadata_Product() throws Exception {

        Product component = new Product();
        String serverBaseURL = "";
        boolean detailed = false;
        Either<? extends AssetMetadata, ResponseFormat> result;
        component.setComponentType(ComponentTypeEnum.PRODUCT);

        when(componentsUtils.getResponseFormatAdditionalProperty(ActionStatus.COMPONENT_INVALID_CATEGORY)).thenReturn(new ResponseFormat());

        result = testSubject.convertToSingleAssetMetadata(component, serverBaseURL, detailed, null);
        assertTrue(result.isRight());
    }

    @Test
    void testConvertToSingleAssetMetadata_Service() throws Exception {

        Service component = new Service();
        String serverBaseURL = "";
        boolean detailed = false;
        Either<? extends AssetMetadata, ResponseFormat> result;
        component.setLifecycleState(LifecycleStateEnum.NOT_CERTIFIED_CHECKIN);
        component.setComponentType(ComponentTypeEnum.SERVICE);
        component.setDistributionStatus(DistributionStatusEnum.DISTRIBUTION_NOT_APPROVED);

        result = testSubject.convertToSingleAssetMetadata(component, serverBaseURL, detailed, null);
        assertTrue(result.isLeft());
    }

}