aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-be/src/test/java/org/openecomp/sdc/be/components/property/ComponentInstanceInputPropertyDeceleratorTest.java
blob: c2bbb034cedf1c4fc09f132ff19200007c7ba715 (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
package org.openecomp.sdc.be.components.property;

import fj.data.Either;
import mockit.Deencapsulation;
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.components.impl.ComponentInstanceBusinessLogic;
import org.openecomp.sdc.be.datatypes.elements.PropertyDataDefinition;
import org.openecomp.sdc.be.model.*;
import org.openecomp.sdc.be.model.jsontitan.operations.ToscaOperationFacade;
import org.openecomp.sdc.be.model.operations.api.StorageOperationStatus;

import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.Optional;

public class ComponentInstanceInputPropertyDeceleratorTest {

	@InjectMocks
	ComponentInstanceInputPropertyDeclarator testSubject;

	@Mock
	private ComponentInstanceBusinessLogic componentInstanceBusinessLogicMock;

	@Mock
	private ToscaOperationFacade toscaOperationFacadeMock;

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

	@Test
	public void testCreateDeclaredProperty() throws Exception {
		PropertyDataDefinition prop = new PropertyDataDefinition();
		ComponentInstanceInput result;

		// default test
		result = Deencapsulation.invoke(testSubject, "createDeclaredProperty", prop);
	}

	@Test
	public void testUpdatePropertiesValues() throws Exception {
		;
		Component component = new Resource();
		String cmptInstanceId = "";
		List<ComponentInstanceInput> properties = new LinkedList<>();
		Either<?, StorageOperationStatus> result;

		Component containerComponent;
		Map<String, List<ComponentInstanceInput>> instProperties;
		Mockito.when(toscaOperationFacadeMock.addComponentInstanceInputsToComponent(Mockito.any(Component.class),
				Mockito.any(Map.class))).thenReturn(Either.left(new Resource()));

		// default test
		result = Deencapsulation.invoke(testSubject, "updatePropertiesValues", component, cmptInstanceId, properties);
	}

	@Test
	public void testResolvePropertiesOwner() throws Exception {
		Component component = new Resource();
		String propertiesOwnerId = "mock";
		Optional<ComponentInstance> result;

		// default test
		result = Deencapsulation.invoke(testSubject, "resolvePropertiesOwner", component, propertiesOwnerId);
	}

	@Test
	public void testAddPropertiesListToInput() throws Exception {
		ComponentInstanceInput declaredProp = null;
		PropertyDataDefinition originalProp = null;
		InputDefinition input = null;

		// default test
		Deencapsulation.invoke(testSubject, "addPropertiesListToInput", new ComponentInstanceInput(),
				new InputDefinition());
	}

	@Test
	public void testUnDeclarePropertiesAsInputs() throws Exception {
		Component component = null;
		InputDefinition input = new InputDefinition();
		StorageOperationStatus result;

		Mockito.when(componentInstanceBusinessLogicMock
				.getComponentInstanceInputsByInputId(Mockito.any(Component.class), Mockito.anyString()))
				.thenReturn(new LinkedList());
		// default test
		result = testSubject.unDeclarePropertiesAsInputs(component, input);
	}
}