summaryrefslogtreecommitdiffstats
path: root/catalog-model/src/test/java/org/openecomp/sdc/be/model/cache/ComponentCacheTest.java
blob: f9a696bf8d9cea6236753f7d42a9ed137e37bbf8 (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
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
package org.openecomp.sdc.be.model.cache;

import java.nio.ByteBuffer;
import java.util.Date;
import java.util.HashMap;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.function.Function;

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.model.operations.api.StorageOperationStatus;
import org.openecomp.sdc.be.resources.data.ComponentCacheData;
import org.openecomp.sdc.be.unittests.utils.ModelConfDependentTest;
import org.openecomp.sdc.common.util.SerializationUtils;
import org.openecomp.sdc.common.util.ZipUtil;

import fj.data.Either;
import mockit.Deencapsulation;

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 testGetComponent() 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());
		Resource resource = new Resource();
		Either<byte[], Boolean> serialize = SerializationUtils.serializeExt(resource);
		byte[] value = serialize.left().value();
		a.setData(ByteBuffer.wrap(value));
		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
		result = Deencapsulation.invoke(testSubject, "filterFieldsForLeftPanel", new Resource());
		result = Deencapsulation.invoke(testSubject, "filterFieldsForLeftPanel", new Service());
	}

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

		// default test
		result = Deencapsulation.invoke(testSubject, "filterFieldsForCatalog", new Resource());
		result = Deencapsulation.invoke(testSubject, "filterFieldsForCatalog", new Service());
		result = Deencapsulation.invoke(testSubject, "filterFieldsForCatalog", new 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 testGetComponentsFull() 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());
		Resource resource = new Resource();
		Either<byte[], Boolean> serialize = SerializationUtils.serializeExt(resource);
		byte[] value = serialize.left().value();
		e.setData(ByteBuffer.wrap(value));
		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 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 testConvertComponentCacheToComponentServiceZipped() throws Exception {

		ComponentCacheData componentCacheData = new ComponentCacheData();
		Either<? extends Component, Boolean> result;

		componentCacheData.setId("mock");
		componentCacheData.setType(NodeTypeEnum.Service.getName());
		componentCacheData.setIsZipped(true);
		Service service = new Service();
		Either<byte[], Boolean> serialize = SerializationUtils.serializeExt(service);
		byte[] value = serialize.left().value();

		componentCacheData.setData(ByteBuffer.wrap(ZipUtil.zipBytes(value)));

		// default test

		result = Deencapsulation.invoke(testSubject, "convertComponentCacheToComponent", componentCacheData);
	}

	@Test
	public void testConvertComponentCacheToComponentProductZipped() throws Exception {

		ComponentCacheData componentCacheData = new ComponentCacheData();
		Either<? extends Component, Boolean> result;

		componentCacheData.setId("mock");
		componentCacheData.setType(NodeTypeEnum.Product.getName());
		componentCacheData.setIsZipped(true);
		Product product = new Product();
		Either<byte[], Boolean> serialize = SerializationUtils.serializeExt(product);
		byte[] value = serialize.left().value();

		componentCacheData.setData(ByteBuffer.wrap(ZipUtil.zipBytes(value)));

		// default test

		result = Deencapsulation.invoke(testSubject, "convertComponentCacheToComponent", componentCacheData);
	}

	@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

		result = testSubject.getComponent(componentUid, lastModificationTime);
	}

	@Test
	public void testSetComponentDisabled() throws Exception {

		String componentUid = "";
		Long lastModificationTime = null;
		NodeTypeEnum nodeTypeEnum = null;
		boolean result;

		// default test
		testSubject.setEnabled(false);
		result = testSubject.setComponent(componentUid, lastModificationTime, nodeTypeEnum);
	}

	@Test
	public void testSetComponentNotFound() throws Exception {

		String componentUid = "";
		Long lastModificationTime = null;
		boolean result;

		// default test
		Mockito.when(toscaOperationFacade.getToscaElement(componentUid))
				.thenReturn(Either.right(StorageOperationStatus.NOT_FOUND));

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

	@Test
	public void testSetComponent() throws Exception {

		String componentUid = "";
		Long lastModificationTime = 0L;
		boolean result;

		// default test
		Mockito.when(toscaOperationFacade.getToscaElement(componentUid)).thenReturn(Either.left(new Resource()));

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

	@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_1() 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();
		Either<byte[], Boolean> serializeExt = SerializationUtils.serializeExt(new Resource());
		e.setData(ByteBuffer.wrap(serializeExt.left().value()));
		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_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 testGetComponentAndTime() throws Exception {

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

		// default test
		ComponentCacheData a = new ComponentCacheData();
		a.setModificationTime(new Date());
		a.setType(NodeTypeEnum.Resource.getName());
		Either<byte[], Boolean> serializeExt = SerializationUtils.serializeExt(new Resource());
		a.setData(ByteBuffer.wrap(serializeExt.left().value()));
		Mockito.when(componentCassandraDao.getComponent(Mockito.anyString())).thenReturn(Either.left(a));
		
		result = testSubject.getComponentAndTime(componentUid, 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);
	}
}