aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-model/src/test/java/org/openecomp/sdc/be/unittests/utils/FactoryUtilsTest.java
blob: 53ed77638c3321ad83ce2de78ce3901c350f2510 (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
package org.openecomp.sdc.be.unittests.utils;

import java.util.List;

import org.junit.Test;
import org.openecomp.sdc.be.dao.graph.datatype.GraphEdge;
import org.openecomp.sdc.be.model.CapabilityDefinition;
import org.openecomp.sdc.be.model.ComponentInstance;
import org.openecomp.sdc.be.model.ComponentInstanceProperty;
import org.openecomp.sdc.be.model.PropertyDefinition;
import org.openecomp.sdc.be.model.RequirementDefinition;
import org.openecomp.sdc.be.model.Resource;
import org.openecomp.sdc.be.resources.data.CapabilityData;
import org.openecomp.sdc.be.resources.data.CapabilityInstData;
import org.openecomp.sdc.be.resources.data.PropertyData;
import org.openecomp.sdc.be.resources.data.PropertyValueData;
import org.openecomp.sdc.be.resources.data.RequirementData;
import org.openecomp.sdc.be.resources.data.ResourceMetadataData;

public class FactoryUtilsTest {

//	private FactoryUtils createTestSubject() {
//		return FactoryUtils.Constants;
//	}

	
	@Test
	public void testCreateVFWithRI() throws Exception {
		String riVersion = "";
		Resource result;

		// default test
		result = FactoryUtils.createVFWithRI(riVersion);
	}

	
	@Test
	public void testCreateVF() throws Exception {
		Resource result;

		// default test
		result = FactoryUtils.createVF();
	}

	
	@Test
	public void testCreateResourceByType() throws Exception {
		String resourceType = "";
		ResourceMetadataData result;

		// default test
		result = FactoryUtils.createResourceByType(resourceType);
	}

	
	@Test
	public void testAddComponentInstanceToVF() throws Exception {
		Resource vf = new Resource();
		ComponentInstance resourceInstance = null;

		// default test
		FactoryUtils.addComponentInstanceToVF(vf, resourceInstance);
	}

	
	@Test
	public void testCreateResourceInstance() throws Exception {
		ComponentInstance result;

		// default test
		result = FactoryUtils.createResourceInstance();
	}

	
	@Test
	public void testCreateResourceInstanceWithVersion() throws Exception {
		String riVersion = "";
		ComponentInstance result;

		// default test
		result = FactoryUtils.createResourceInstanceWithVersion(riVersion);
	}

	
	@Test
	public void testCreateCapabilityData() throws Exception {
		CapabilityData result;

		// default test
		result = FactoryUtils.createCapabilityData();
	}

	
	@Test
	public void testCreateRequirementData() throws Exception {
		RequirementData result;

		// default test
		result = FactoryUtils.createRequirementData();
	}

	
	@Test
	public void testConvertCapabilityDataToCapabilityDefinitionAddProperties() throws Exception {
		CapabilityData capData = new CapabilityData();
		CapabilityDefinition result;

		// default test
		result = FactoryUtils.convertCapabilityDataToCapabilityDefinitionAddProperties(capData);
	}

	
	@Test
	public void testCreateComponentInstancePropertyList() throws Exception {
		List<ComponentInstanceProperty> result;

		// default test
		result = FactoryUtils.createComponentInstancePropertyList();
	}

	
	@Test
	public void testConvertRequirementDataIDToRequirementDefinition() throws Exception {
		String reqDataId = "";
		RequirementDefinition result;

		// default test
		result = FactoryUtils.convertRequirementDataIDToRequirementDefinition(reqDataId);
	}

	
	@Test
	public void testCreateGraphEdge() throws Exception {
		GraphEdge result;

		// default test
		result = FactoryUtils.createGraphEdge();
	}

	
	@Test
	public void testCreateCapabilityInstData() throws Exception {
		CapabilityInstData result;

		// default test
		result = FactoryUtils.createCapabilityInstData();
	}

	
	@Test
	public void testCreatePropertyData() throws Exception {
		PropertyValueData result;

		// default test
		result = FactoryUtils.createPropertyData();
	}

	
	@Test
	public void testConvertCapabilityDefinitionToCapabilityData() throws Exception {
		PropertyDefinition propDef = new PropertyDefinition();
		PropertyData result;

		// default test
		result = FactoryUtils.convertCapabilityDefinitionToCapabilityData(propDef);
	}

	
	@Test
	public void testConvertCapabilityDataToCapabilityDefinitionRoot() throws Exception {
		CapabilityData capData = new CapabilityData();
		CapabilityDefinition result;

		// default test
		result = FactoryUtils.convertCapabilityDataToCapabilityDefinitionRoot(capData);
	}
}