aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-model/src/test/java/org/openecomp/sdc/be/model/cache/ComponentCacheTest.java
blob: 49e847acf618c0165a943aa57099acea988030f8 (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
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
package org.openecomp.sdc.be.model.cache;

import fj.data.Either;
import mockit.Deencapsulation;
import org.apache.commons.lang3.tuple.ImmutablePair;
import org.apache.commons.lang3.tuple.ImmutableTriple;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
import org.mockito.InjectMocks;
import org.mockito.Mock;
import org.mockito.Mockito;
import org.mockito.MockitoAnnotations;
import org.openecomp.sdc.be.dao.api.ActionStatus;
import org.openecomp.sdc.be.dao.cassandra.CassandraOperationStatus;
import org.openecomp.sdc.be.dao.cassandra.ComponentCassandraDao;
import org.openecomp.sdc.be.datatypes.components.ResourceMetadataDataDefinition;
import org.openecomp.sdc.be.datatypes.enums.ComponentTypeEnum;
import org.openecomp.sdc.be.datatypes.enums.NodeTypeEnum;
import org.openecomp.sdc.be.datatypes.enums.ResourceTypeEnum;
import org.openecomp.sdc.be.model.Component;
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.jsontitan.operations.ToscaOperationFacade;
import org.openecomp.sdc.be.resources.data.ComponentCacheData;
import org.openecomp.sdc.be.unittests.utils.ModelConfDependentTest;

import java.util.*;
import java.util.function.Function;

public class ComponentCacheTest extends ModelConfDependentTest {

    @InjectMocks
    ComponentCache testSubject;

    @Mock
    ComponentCassandraDao componentCassandraDao;

    @Mock
    ToscaOperationFacade toscaOperationFacade;

    @Before
    public void setUpMocks() throws Exception {
        MockitoAnnotations.initMocks(this);
    }

    @Test
    public void testInit() throws Exception {
        // default test
        testSubject.init();
    }

    @Test
    public void testIsEnabled() throws Exception {

        boolean result;

        // default test

        result = testSubject.isEnabled();
    }

    @Test
    public void testSetEnabled() throws Exception {

        boolean enabled = false;

        // default test

        testSubject.setEnabled(enabled);
    }

    @Test
    public void testGetComponentNotFound() throws Exception {

        String componentUid = "mock";
        Long lastModificationTime = null;
        Function<Component, Component> filterFieldsFunc = null;
        Either<Component, ActionStatus> result;

        Mockito.when(componentCassandraDao.getComponent("mock"))
                .thenReturn(Either.right(ActionStatus.ARTIFACT_NOT_FOUND));
        // default test
        result = testSubject.getComponent(componentUid, lastModificationTime, filterFieldsFunc);
    }

    @Test
    public void testGetComponentInvalidDate() throws Exception {

        String componentUid = "mock";
        Long lastModificationTime = 0L;
        Function<Component, Component> filterFieldsFunc = null;
        Either<Component, ActionStatus> result;

        ComponentCacheData a = new ComponentCacheData();
        a.setModificationTime(new Date());
        Mockito.when(componentCassandraDao.getComponent("mock")).thenReturn(Either.left(a));
        // default test
        result = testSubject.getComponent(componentUid, lastModificationTime, filterFieldsFunc);
    }

    @Test
    public void testGetComponentDeserializeError() throws Exception {

        String componentUid = "mock";
        Long lastModificationTime = 0L;
        Function<Component, Component> filterFieldsFunc = null;
        Either<Component, ActionStatus> result;

        ComponentCacheData a = new ComponentCacheData();
        a.setModificationTime(new Date(0L));
        a.setType(NodeTypeEnum.Resource.getName());
        Mockito.when(componentCassandraDao.getComponent("mock")).thenReturn(Either.left(a));
        // default test
        result = testSubject.getComponent(componentUid, lastModificationTime, filterFieldsFunc);
    }

    @Test
    public void testGetAllComponentIdTimeAndType() throws Exception {

        Either<List<ComponentCacheData>, ActionStatus> result;

        // default test

        result = testSubject.getAllComponentIdTimeAndType();
        testSubject.setEnabled(false);
        result = testSubject.getAllComponentIdTimeAndType();
    }

    @Test
    public void testUpdateCatalogInMemoryCacheWithCertified() throws Exception {

        List<Component> foundComponents = new LinkedList<>();

        // default test
        testSubject.init();
        Deencapsulation.invoke(testSubject, "updateCatalogInMemoryCacheWithCertified", foundComponents,
                ComponentTypeEnum.RESOURCE);
    }

    @Test
    public void testGetDataFromInMemoryCache() throws Exception {

        Set<String> components = new HashSet<>();
        components.add("mock");
        ComponentTypeEnum componentTypeEnum = null;
        List<Component> result;

        // default test
        testSubject.init();
        result = Deencapsulation.invoke(testSubject, "getDataFromInMemoryCache", components,
                ComponentTypeEnum.RESOURCE);
    }

    @Test
    public void testGetComponents() throws Exception {

        Set<String> components = new HashSet<>();
        Function<List<Component>, List<Component>> filterFieldsFunc = new Function<List<Component>, List<Component>>() {

            @Override
            public List<Component> apply(List<Component> t) {
                return t;
            }
        };
        Either<ImmutableTriple<List<Component>, List<Component>, Set<String>>, ActionStatus> result;

        List<ComponentCacheData> list = new LinkedList<>();
        Mockito.when(componentCassandraDao.getComponents(Mockito.any(List.class))).thenReturn(Either.left(list));

        // default test
        testSubject.init();
        result = testSubject.getComponents(components, filterFieldsFunc);
    }

    @Test
    public void testGetComponentsNotAllowed() throws Exception {

        Set<String> components = new HashSet<>();
        Function<List<Component>, List<Component>> filterFieldsFunc = null;

        Either<ImmutableTriple<List<Component>, List<Component>, Set<String>>, ActionStatus> result;

        // default test
        testSubject.setEnabled(false);
        result = testSubject.getComponents(components, filterFieldsFunc);
    }

    @Test
    public void testGetComponentsCassndraError() throws Exception {

        Set<String> components = new HashSet<>();
        Function<List<Component>, List<Component>> filterFieldsFunc = null;
        Either<ImmutableTriple<List<Component>, List<Component>, Set<String>>, ActionStatus> result;

        Mockito.when(componentCassandraDao.getComponents(Mockito.any(List.class)))
                .thenReturn(Either.right(ActionStatus.GENERAL_ERROR));

        // default test
        testSubject.init();
        result = testSubject.getComponents(components, filterFieldsFunc);
    }

    @Test
    public void testGetComponentsForLeftPanel() throws Exception {

        ComponentTypeEnum componentTypeEnum = null;
        String internalComponentType = "mock";
        Set<String> filteredResources = new HashSet<>();
        Either<ImmutableTriple<List<Component>, List<Component>, Set<String>>, ActionStatus> result;

        List<ComponentCacheData> list = new LinkedList<>();
        Mockito.when(componentCassandraDao.getComponents(Mockito.any(List.class))).thenReturn(Either.left(list));

        // default test
        result = testSubject.getComponentsForLeftPanel(ComponentTypeEnum.RESOURCE, internalComponentType,
                filteredResources);
    }

    @Test
    public void testFilterForLeftPanel() throws Exception {

        List<Component> components = new LinkedList<>();
        List<Component> result;

        // test 1

        result = Deencapsulation.invoke(testSubject, "filterForLeftPanel", components);
        Assert.assertNotEquals(null, result);
    }

    @Test
    public void testFilterForCatalog() throws Exception {

        List<Component> components = new LinkedList<>();
        List<Component> result;

        // test 1
        result = Deencapsulation.invoke(testSubject, "filterForCatalog", components);
        Assert.assertNotEquals(null, result);
    }

    @Test
    public void testFilterFieldsForLeftPanel() throws Exception {
        Component result;

        // default test
        Resource resource = new Resource();
        resource.setComponentType(ComponentTypeEnum.RESOURCE);
        result = Deencapsulation.invoke(testSubject, "filterFieldsForLeftPanel", resource);
        Service service = new Service();
        service.setComponentType(ComponentTypeEnum.SERVICE);
        result = Deencapsulation.invoke(testSubject, "filterFieldsForLeftPanel", service);
    }

    @Test
    public void testFilterFieldsForCatalog() throws Exception {
        Component result;

        // default test

        Resource resource = new Resource();
        resource.setComponentType(ComponentTypeEnum.RESOURCE);
        result = Deencapsulation.invoke(testSubject, "filterFieldsForCatalog", resource);
        Service service = new Service();
        service.setComponentType(ComponentTypeEnum.SERVICE);
        result = Deencapsulation.invoke(testSubject, "filterFieldsForCatalog", service);
        Product product = new Product();
        product.setComponentType(ComponentTypeEnum.PRODUCT);
        result = Deencapsulation.invoke(testSubject, "filterFieldsForCatalog", product);
    }

    @Test
    public void testCopyFieldsForLeftPanel() throws Exception {

        Component component = new Resource();
        Component filteredComponent = new Resource();
        ((ResourceMetadataDataDefinition) component.getComponentMetadataDefinition().getMetadataDataDefinition())
                .setResourceType(ResourceTypeEnum.VL);
        // default test

        Deencapsulation.invoke(testSubject, "copyFieldsForLeftPanel", component, filteredComponent);
    }

    @Test
    public void testGetComponentsFullDisabled() throws Exception {

        Set<String> filteredResources = null;
        Either<ImmutableTriple<List<Component>, List<Component>, Set<String>>, ActionStatus> result;

        // default test
        testSubject.setEnabled(false);
        result = Deencapsulation.invoke(testSubject, "getComponentsFull", Set.class);
    }


    @Test
    public void testGetComponentsFullDesirializeError() throws Exception {

        Set<String> filteredResources = new HashSet<>();
        filteredResources.add("mock");
        Either<ImmutableTriple<List<Component>, List<Component>, Set<String>>, ActionStatus> result;

        List<ComponentCacheData> a = new LinkedList<>();
        ComponentCacheData e = new ComponentCacheData();
        e.setId("mock");
        e.setType(NodeTypeEnum.Resource.getName());
        a.add(e);
        Mockito.when(componentCassandraDao.getComponents(Mockito.any(List.class))).thenReturn(Either.left(a));

        // default test

        result = Deencapsulation.invoke(testSubject, "getComponentsFull", filteredResources);
    }


    @Test
    public void testGetComponent_1() throws Exception {

        String componentUid = "mock";
        Either<Component, ActionStatus> result;

        Mockito.when(componentCassandraDao.getComponent("mock"))
                .thenReturn(Either.right(ActionStatus.ARTIFACT_NOT_FOUND));

        // default test
        result = testSubject.getComponent(componentUid);
    }

    @Test
    public void testGetComponent_2() throws Exception {

        String componentUid = "mock";
        Long lastModificationTime = null;
        Either<Component, ActionStatus> result;

        Mockito.when(componentCassandraDao.getComponent("mock"))
                .thenReturn(Either.right(ActionStatus.ARTIFACT_NOT_FOUND));

        // default test
        Function<Component, Component> filterFieldsFunc = new Function<Component, Component>() {
            @Override
            public Component apply(Component component) {
                return new Resource();
            }
        };
        result = testSubject.getComponent(componentUid, lastModificationTime, filterFieldsFunc);
    }

    @Test
    public void testSaveComponent() throws Exception {

        String componentUid = "";
        Component component = new Resource();
        boolean result;

        // default test
        Mockito.when(componentCassandraDao.saveComponent(Mockito.any(ComponentCacheData.class)))
                .thenReturn(CassandraOperationStatus.OK);

        result = Deencapsulation.invoke(testSubject, "saveComponent", componentUid, 0L, NodeTypeEnum.Resource,
                component);
    }

    @Test
    public void testSetComponent_1Disabled() throws Exception {

        Component component = new Resource();
        component.setLastUpdateDate(0L);
        boolean result;

        // default test
        testSubject.setEnabled(false);
        result = testSubject.setComponent(component, NodeTypeEnum.Resource);
    }

    @Test
    public void testSetComponent_1() throws Exception {

        Component component = new Resource();
        component.setLastUpdateDate(0L);
        boolean result;

        // default test

        result = testSubject.setComponent(component, NodeTypeEnum.Resource);
    }


    @Test
    public void testGetComponentsFull_1CannotDeserialize() throws Exception {
        Map<String, Long> filteredResources = new HashMap<>();
        Either<ImmutablePair<List<Component>, Set<String>>, ActionStatus> result;

        // default test
        LinkedList<ComponentCacheData> left = new LinkedList<>();
        ComponentCacheData e = new ComponentCacheData();
        e.setType(NodeTypeEnum.Resource.getName());
        left.add(e);
        ImmutablePair<List<ComponentCacheData>, Set<String>> immutablePair = ImmutablePair.of(left, new HashSet<>());
        Mockito.when(componentCassandraDao.getComponents(Mockito.any(Map.class))).thenReturn(Either.left(immutablePair));

        result = Deencapsulation.invoke(testSubject, "getComponentsFull", filteredResources);
    }

    @Test
    public void testGetComponentsFull_1Disabled() throws Exception {
        Map<String, Long> filteredResources = new HashMap<>();
        Either<ImmutablePair<List<Component>, Set<String>>, ActionStatus> result;

        // default test
        testSubject.setEnabled(false);
        result = Deencapsulation.invoke(testSubject, "getComponentsFull", filteredResources);
    }

    @Test
    public void testGetComponentsFull_1NotFound() throws Exception {
        Map<String, Long> filteredResources = new HashMap<>();
        Either<ImmutablePair<List<Component>, Set<String>>, ActionStatus> result;

        // default test
        Mockito.when(componentCassandraDao.getComponents(Mockito.any(Map.class))).thenReturn(Either.right(ActionStatus.ARTIFACT_NOT_FOUND));

        result = Deencapsulation.invoke(testSubject, "getComponentsFull", filteredResources);
    }

    @Test
    public void testGetComponentsForCatalog_1Disabled() throws Exception {

        Map<String, Long> components = null;
        Either<ImmutablePair<List<Component>, Set<String>>, ActionStatus> result;

        // default test
        testSubject.setEnabled(false);
        result = testSubject.getComponentsForCatalog(components, ComponentTypeEnum.RESOURCE);
    }

    @Test
    public void testGetComponentsForCatalog_1() throws Exception {
        Map<String, Long> components = new HashMap<>();
        Either<ImmutablePair<List<Component>, Set<String>>, ActionStatus> result;

        // default test
        ImmutablePair<List<ComponentCacheData>, Set<String>> value = ImmutablePair.of(new LinkedList<>(), new HashSet<>());
        Mockito.when(componentCassandraDao.getComponents(Mockito.any(Map.class))).thenReturn(Either.left(value));
        testSubject.init();
        result = testSubject.getComponentsForCatalog(components, ComponentTypeEnum.RESOURCE);
    }

    @Test
    public void testGetComponentsForCatalog_1Error() throws Exception {
        Map<String, Long> components = new HashMap<>();
        Either<ImmutablePair<List<Component>, Set<String>>, ActionStatus> result;

        // default test
        Mockito.when(componentCassandraDao.getComponents(Mockito.any(Map.class))).thenReturn(Either.right(ActionStatus.COMPONENT_NOT_FOUND));

        result = testSubject.getComponentsForCatalog(components, ComponentTypeEnum.RESOURCE);
    }

    @Test
    public void testGetComponents_1Disabled() throws Exception {

        Map<String, Long> components = null;
        Function<List<Component>, List<Component>> filterFieldsFunc = null;
        Either<ImmutablePair<List<Component>, Set<String>>, ActionStatus> result;

        // default test
        testSubject.setEnabled(false);
        result = testSubject.getComponents(components, filterFieldsFunc);
    }

    @Test
    public void testGetComponentAndTimeNotFound() throws Exception {

        String componentUid = "";
        Function<Component, Component> filterFieldsFunc = null;
        Either<ImmutablePair<Component, Long>, ActionStatus> result;

        // default test
        Mockito.when(componentCassandraDao.getComponent(Mockito.anyString())).thenReturn(Either.right(ActionStatus.API_RESOURCE_NOT_FOUND));

        result = testSubject.getComponentAndTime(componentUid, filterFieldsFunc);
    }

    @Test
    public void testGetComponentFromCacheDisabled() throws Exception {
        String componentUid = "";
        Long lastModificationTime = null;
        Function<Component, Component> filterFieldsFunc = null;
        Either<ImmutablePair<Component, ComponentCacheData>, ActionStatus> result;

        // test 1
        lastModificationTime = null;
        testSubject.setEnabled(false);
        result = Deencapsulation.invoke(testSubject, "getComponentFromCache",
                new Object[]{componentUid, Long.class, Function.class});
    }

    @Test
    public void testDeleteComponentFromCacheFails() throws Exception {

        String id = "";
        ActionStatus result;

        // default test

        result = testSubject.deleteComponentFromCache(id);
    }

    @Test
    public void testDeleteComponentFromCacheDisabled() throws Exception {

        String id = "";
        ActionStatus result;

        // default test
        testSubject.setEnabled(false);
        result = testSubject.deleteComponentFromCache(id);
    }

    @Test
    public void testDeleteComponentFromCache() throws Exception {

        String id = "";
        ActionStatus result;

        // default test
        Mockito.when(componentCassandraDao.deleteComponent(Mockito.anyString())).thenReturn(CassandraOperationStatus.OK);
        result = testSubject.deleteComponentFromCache(id);
    }
}