aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/java/org/onap/clamp/clds/it/SdcCatalogServicesItCase.java
blob: d873aa4855d7d4eb79af72dda5287e1c88e88822 (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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
/*-
 * ============LICENSE_START=======================================================
 * ONAP CLAMP
 * ================================================================================
 * Copyright (C) 2017-2018 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============================================
 * ===================================================================
 * ECOMP is a trademark and service mark of AT&T Intellectual Property.
 */

package org.onap.clamp.clds.it;

import static org.junit.Assert.assertTrue;

import java.util.LinkedList;
import java.util.List;

import org.apache.commons.io.IOUtils;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.Mockito;
import org.onap.clamp.clds.client.req.sdc.SdcCatalogServices;
import org.onap.clamp.clds.config.CldsReferenceProperties;
import org.onap.clamp.clds.model.CldsAlarmCondition;
import org.onap.clamp.clds.model.CldsServiceData;
import org.onap.clamp.clds.model.sdc.SdcResource;
import org.onap.clamp.clds.model.sdc.SdcResourceBasicInfo;
import org.onap.clamp.clds.model.sdc.SdcServiceInfo;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;

/**
 * Test SDC Catalog Service class by mocking the SDC answers.
 */
@RunWith(SpringRunner.class)
@SpringBootTest
public class SdcCatalogServicesItCase {

    @Autowired
    private CldsReferenceProperties refProp;
    @Autowired
    private SdcCatalogServices sdcCatalogWired = new SdcCatalogServices();

    @Test
    public void removeDuplicateServicesTest() {
        SdcServiceInfo service1a = new SdcServiceInfo();
        service1a.setName("service1");
        service1a.setVersion("1.0");
        service1a.setInvariantUUID("invariantUUID1.0");
        List<SdcServiceInfo> rawCldsSdcServiceList = new LinkedList<>();
        rawCldsSdcServiceList.add(service1a);
        rawCldsSdcServiceList.add(service1a);
        SdcServiceInfo service1b = new SdcServiceInfo();
        service1b.setName("service1");
        service1b.setVersion("1.1");
        service1b.setInvariantUUID("invariantUUID1.1");
        rawCldsSdcServiceList.add(service1b);
        SdcServiceInfo service1c = new SdcServiceInfo();
        service1c.setName("service1");
        service1c.setVersion("1.2");
        service1c.setInvariantUUID("invariantUUID1.2");
        rawCldsSdcServiceList.add(service1c);
        SdcServiceInfo service2 = new SdcServiceInfo();
        service2.setName("service2");
        service2.setVersion("1.0");
        service2.setInvariantUUID("invariantUUID2.0");
        rawCldsSdcServiceList.add(service2);
        SdcCatalogServices catalogServices = new SdcCatalogServices();
        List<SdcServiceInfo> resultList = catalogServices.removeDuplicateServices(rawCldsSdcServiceList);
        assertTrue(resultList.size() == 2);
        SdcServiceInfo res1;
        SdcServiceInfo res2;
        if ("service1".equals(resultList.get(0).getName())) {
            res1 = resultList.get(0);
            res2 = resultList.get(1);
        } else {
            res1 = resultList.get(1);
            res2 = resultList.get(0);
        }
        assertTrue("service1".equals(res1.getName()));
        assertTrue("1.2".equals(res1.getVersion()));
        assertTrue("service2".equals(res2.getName()));
        assertTrue("1.0".equals(res2.getVersion()));
    }

    @Test
    public void removeDuplicateSdcResourceInstancesTest() {
        List<SdcResource> rawCldsSdcResourceList = new LinkedList<>();
        SdcResource sdcResource1a = new SdcResource();
        sdcResource1a.setResourceInstanceName("resource1");
        sdcResource1a.setResourceVersion("1.0");
        rawCldsSdcResourceList.add(sdcResource1a);
        SdcResource sdcResource1b = new SdcResource();
        sdcResource1b.setResourceInstanceName("resource1");
        sdcResource1b.setResourceVersion("1.1");
        rawCldsSdcResourceList.add(sdcResource1b);
        SdcResource sdcResource1c = new SdcResource();
        sdcResource1c.setResourceInstanceName("resource1");
        sdcResource1c.setResourceVersion("1.2");
        rawCldsSdcResourceList.add(sdcResource1c);
        SdcResource sdcResource2 = new SdcResource();
        sdcResource2.setResourceInstanceName("resource2");
        sdcResource2.setResourceVersion("1.0");
        rawCldsSdcResourceList.add(sdcResource2);
        SdcCatalogServices catalogServices = new SdcCatalogServices();
        List<SdcResource> resultList = catalogServices.removeDuplicateSdcResourceInstances(rawCldsSdcResourceList);
        SdcResource res1;
        SdcResource res2;
        if ("resource1".equals(resultList.get(0).getResourceInstanceName())) {
            res1 = resultList.get(0);
            res2 = resultList.get(1);
        } else {
            res1 = resultList.get(1);
            res2 = resultList.get(0);
        }
        assertTrue("resource1".equals(res1.getResourceInstanceName()));
        assertTrue("1.2".equals(res1.getResourceVersion()));
        assertTrue("resource2".equals(res2.getResourceInstanceName()));
        assertTrue("1.0".equals(res2.getResourceVersion()));
    }

    @Test
    public void removeDuplicateSdcResourceBasicInfoTest() {
        List<SdcResourceBasicInfo> rawCldsSdcResourceList = new LinkedList<>();
        SdcResourceBasicInfo sdcResource1a = new SdcResourceBasicInfo();
        sdcResource1a.setName("resource1");
        sdcResource1a.setVersion("1.0");
        rawCldsSdcResourceList.add(sdcResource1a);
        SdcResourceBasicInfo sdcResource1b = new SdcResourceBasicInfo();
        sdcResource1b.setName("resource1");
        sdcResource1b.setVersion("1.1");
        rawCldsSdcResourceList.add(sdcResource1b);
        SdcResourceBasicInfo sdcResource1c = new SdcResourceBasicInfo();
        sdcResource1c.setName("resource1");
        sdcResource1c.setVersion("1.2");
        rawCldsSdcResourceList.add(sdcResource1c);
        SdcResourceBasicInfo sdcResource2 = new SdcResourceBasicInfo();
        sdcResource2.setName("resource2");
        sdcResource2.setVersion("1.0");
        rawCldsSdcResourceList.add(sdcResource2);
        SdcCatalogServices catalogServices = new SdcCatalogServices();
        List<SdcResourceBasicInfo> resultList = catalogServices
                .removeDuplicateSdcResourceBasicInfo(rawCldsSdcResourceList);
        SdcResourceBasicInfo res1;
        SdcResourceBasicInfo res2;
        if ("resource1".equals(resultList.get(0).getName())) {
            res1 = resultList.get(0);
            res2 = resultList.get(1);
        } else {
            res1 = resultList.get(1);
            res2 = resultList.get(0);
        }
        assertTrue("resource1".equals(res1.getName()));
        assertTrue("1.2".equals(res1.getVersion()));
        assertTrue("resource2".equals(res2.getName()));
        assertTrue("1.0".equals(res2.getVersion()));
    }

    @Test
    public void getServiceUuidFromServiceInvariantIdTest() throws Exception {
        SdcCatalogServices spy = Mockito.spy(sdcCatalogWired);
        Mockito.doReturn(IOUtils.toString(
                SdcCatalogServicesItCase.class.getResourceAsStream("/example/sdc/sdcServicesListExample.json"),
                "UTF-8")).when(spy).getSdcServicesInformation(null);
        // Try the vcts4 version 1.0, this one should be replaced by 1.1 so it
        // should not exist, returning empty string
        String resUuidVcts4Null = spy.getServiceUuidFromServiceInvariantId("a33ed748-3477-4434-b3f3-b5560f5e7d9b");
        assertTrue("".equals(resUuidVcts4Null));
        // Try the vcts4 version 1.1, this one should be there as it replaces
        // the vcts4 v1.0
        String resUuidVcts4Latest = spy.getServiceUuidFromServiceInvariantId("a33ed748-3477-4434-b3f3-b5560f5e7d9c");
        assertTrue("29018914-966c-442d-9d08-251b9dc45b8f".equals(resUuidVcts4Latest));
        // Try the vcts5 version 1.0, this one should be there
        String resUuidVcts5 = spy.getServiceUuidFromServiceInvariantId("a33ed748-3477-4434-b3f3-b5560f5e7d8c");
        assertTrue("29018914-966c-442d-9d08-251b9dc45b7f".equals(resUuidVcts5));
        // try one that does not exist at all
        String resUuidUnknown = spy.getServiceUuidFromServiceInvariantId("testuuid");
        assertTrue("".equals(resUuidUnknown));
    }

    @Test
    public void getCldsServiceDataWithAlarmConditionsTest() throws Exception {
        SdcCatalogServices spy = Mockito.spy(sdcCatalogWired);
        Mockito.doReturn(IOUtils.toString(
                SdcCatalogServicesItCase.class.getResourceAsStream("/example/sdc/sdcServicesListExample.json"),
                "UTF-8")).when(spy).getSdcServicesInformation(null);
        // This invariant uuid is the one from vcts4 v1.1
        String serviceResourceDetailUrl = refProp.getStringValue("sdc.serviceUrl")
                + "/29018914-966c-442d-9d08-251b9dc45b8f/metadata";
        Mockito.doReturn(IOUtils.toString(
                SdcCatalogServicesItCase.class.getResourceAsStream("/example/sdc/sdcServiceDetailsExample.json"),
                "UTF-8")).when(spy).getCldsServicesOrResourcesBasedOnURL(serviceResourceDetailUrl);
        String resourceDetailUrl = refProp.getStringValue("sdc.catalog.url")
                + "resources/585822c7-4027-4f84-ba50-e9248606f136/metadata";
        Mockito.doReturn(IOUtils.toString(
                SdcCatalogServicesItCase.class.getResourceAsStream("/example/sdc/sdcResourceDetailsExample.json"),
                "UTF-8")).when(spy).getCldsServicesOrResourcesBasedOnURL(resourceDetailUrl);
        String securityRulesDetailUrl = refProp.getStringValue("sdc.catalog.url")
                + "resources/d57e57d2-e3c6-470d-8d16-e6ea05f536c5/metadata";
        Mockito.doReturn(IOUtils.toString(
                SdcCatalogServicesItCase.class.getResourceAsStream("/example/sdc/sdcSecurityRules.json"), "UTF-8"))
                .when(spy).getCldsServicesOrResourcesBasedOnURL(securityRulesDetailUrl);
        String cinderVolumeDetailUrl = refProp.getStringValue("sdc.catalog.url")
                + "resources/b4288e07-597a-44a2-aa98-ad36e551a39d/metadata";
        Mockito.doReturn(IOUtils.toString(
                SdcCatalogServicesItCase.class.getResourceAsStream("/example/sdc/sdcCinderVolume.json"), "UTF-8"))
                .when(spy).getCldsServicesOrResourcesBasedOnURL(cinderVolumeDetailUrl);
        String vfcGenericDetailUrl = refProp.getStringValue("sdc.catalog.url")
                + "resources/2c8f1219-8000-4001-aa13-496a0396d40f/metadata";
        Mockito.doReturn(IOUtils.toString(
                SdcCatalogServicesItCase.class.getResourceAsStream("/example/sdc/sdcVFCGenericWithAlarms.json"),
                "UTF-8")).when(spy).getCldsServicesOrResourcesBasedOnURL(vfcGenericDetailUrl);
        String csvAlarmsDetailUrl = refProp.getStringValue("sdc.catalog.url")
                + "resources/2c8f1219-8000-4001-aa13-496a0396d40f/resourceInstances/virc_fe_be/artifacts/5138e316-0237-49aa-817a-b3d8eaf77392";
        Mockito.doReturn(IOUtils.toString(
                SdcCatalogServicesItCase.class.getResourceAsStream("/example/sdc/sdcAlarmsList.csv"), "UTF-8"))
                .when(spy).getCldsServicesOrResourcesBasedOnURL(csvAlarmsDetailUrl);
        Mockito.doReturn(IOUtils.toString(
                SdcCatalogServicesItCase.class.getResourceAsStream("/example/sdc/sdcAlarmsList.csv"), "UTF-8"))
                .when(spy).getCldsServicesOrResourcesBasedOnURL(csvAlarmsDetailUrl);
        String csvAlarmsDetailUrl2 = refProp.getStringValue("sdc.catalog.url")
                + "resources/d7646638-2572-4a94-b497-c028ac15f9ca/artifacts/5138e316-0237-49aa-817a-b3d8eaf77392";
        Mockito.doReturn(IOUtils.toString(
                SdcCatalogServicesItCase.class.getResourceAsStream("/example/sdc/sdcAlarmsList.csv"), "UTF-8"))
                .when(spy).getCldsServicesOrResourcesBasedOnURL(csvAlarmsDetailUrl2);
        String allVfResourcesDetailUrl = refProp.getStringValue("sdc.catalog.url") + "resources?resourceType=VF";
        Mockito.doReturn(IOUtils.toString(
                SdcCatalogServicesItCase.class.getResourceAsStream("/example/sdc/sdcVFResources.json"), "UTF-8"))
                .when(spy).getCldsServicesOrResourcesBasedOnURL(allVfResourcesDetailUrl);
        String vfcResourcesDetailUrl = refProp.getStringValue("sdc.catalog.url")
                + "resources/a0475018-1e7e-4ddd-8bee-33cbf958c2e6/metadata";
        Mockito.doReturn(IOUtils.toString(
                SdcCatalogServicesItCase.class.getResourceAsStream("/example/sdc/sdcCVFCResourceExample.json"),
                "UTF-8")).when(spy).getCldsServicesOrResourcesBasedOnURL(vfcResourcesDetailUrl);
        String allVfcResourcesDetailUrl = refProp.getStringValue("sdc.catalog.url") + "resources?resourceType=VFC";
        Mockito.doReturn(IOUtils.toString(
                SdcCatalogServicesItCase.class.getResourceAsStream("/example/sdc/sdcVFCResources.json"), "UTF-8"))
                .when(spy).getCldsServicesOrResourcesBasedOnURL(allVfcResourcesDetailUrl);
        String allCvfcResourcesDetailUrl = refProp.getStringValue("sdc.catalog.url") + "resources?resourceType=CVFC";
        Mockito.doReturn(IOUtils.toString(
                SdcCatalogServicesItCase.class.getResourceAsStream("/example/sdc/sdcCVFCResources.json"), "UTF-8"))
                .when(spy).getCldsServicesOrResourcesBasedOnURL(allCvfcResourcesDetailUrl);
        String allVfAlarms = refProp.getStringValue("sdc.catalog.url")
                + "resources/84855843-5247-4e97-a2bd-5395a510253b/artifacts/d57ac7ec-f3c3-4793-983a-c75ac3a43153";
        Mockito.doReturn(IOUtils.toString(
                SdcCatalogServicesItCase.class.getResourceAsStream("/example/sdc/sdcMeasurementsList.csv"), "UTF-8"))
                .when(spy).getCldsServicesOrResourcesBasedOnURL(allVfAlarms);
        String vfcResourceExample = refProp.getStringValue("sdc.catalog.url")
                + "resources/d7646638-2572-4a94-b497-c028ac15f9ca/metadata";
        Mockito.doReturn(IOUtils.toString(
                SdcCatalogServicesItCase.class.getResourceAsStream("/example/sdc/sdcVFCResourceExample.json"), "UTF-8"))
                .when(spy).getCldsServicesOrResourcesBasedOnURL(vfcResourceExample);
        CldsServiceData cldsServiceData = spy
                .getCldsServiceDataWithAlarmConditions("a33ed748-3477-4434-b3f3-b5560f5e7d9c");
        assertTrue("a33ed748-3477-4434-b3f3-b5560f5e7d9c".equals(cldsServiceData.getServiceInvariantUUID()));
        assertTrue("29018914-966c-442d-9d08-251b9dc45b8f".equals(cldsServiceData.getServiceUUID()));
        assertTrue(cldsServiceData.getCldsVfs().size() == 1);
        List<CldsAlarmCondition> alarmsList = spy.getAllAlarmConditionsFromCldsServiceData(cldsServiceData,
                "alarmCondition");
        assertTrue(alarmsList.size() == 12);
    }
}