summaryrefslogtreecommitdiffstats
path: root/catalog-dao/src/test/java/org/openecomp/sdc/be/dao/graph/GraphElementFactoryTest.java
blob: 588eb046a5b9601783400265030142a68a40bf79 (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
package org.openecomp.sdc.be.dao.graph;

import java.util.HashMap;
import java.util.Map;

import org.apache.tinkerpop.gremlin.structure.T;
import org.junit.Test;
import org.mockito.Mockito;
import org.openecomp.sdc.be.dao.graph.datatype.GraphElementTypeEnum;
import org.openecomp.sdc.be.dao.graph.datatype.GraphNode;
import org.openecomp.sdc.be.dao.graph.datatype.GraphRelation;
import org.openecomp.sdc.be.datatypes.enums.NodeTypeEnum;

import mockit.Deencapsulation;

public class GraphElementFactoryTest {

	@Test
	public void testCreateElement() throws Exception {
		String label = "mock";
		Map<String, Object> properties = new HashMap<>();
		Class<GraphNode> clazz = (Class<GraphNode>) (Mockito.mock(GraphNode.class)).getClass();

		// default test
		GraphElementFactory.createElement(label, GraphElementTypeEnum.Node, properties, clazz);
	}

	@Test
	public void testCreateElement_1() throws Exception {
		String label = "mock";
		GraphElementTypeEnum type = null;
		Map<String, Object> properties = new HashMap<>();
		GraphNode result;

		// default test
		result = GraphElementFactory.createElement(label, GraphElementTypeEnum.Node, properties);
	}

	@Test
	public void testCreateRelation() throws Exception {
		String type = "";
		Map<String, Object> properties = new HashMap<>();
		GraphNode from = Mockito.mock(GraphNode.class);
		GraphNode to = Mockito.mock(GraphNode.class);
		;
		GraphRelation result;

		// default test
		result = GraphElementFactory.createRelation(type, properties, from, to);
	}

	@Test
	public void testCreateNode() throws Exception {
		Map<String, Object> properties = new HashMap<>();
		GraphNode result;

		result = Deencapsulation.invoke(GraphElementFactory.class, "createNode", NodeTypeEnum.User.getName(),
				properties);
		result = Deencapsulation.invoke(GraphElementFactory.class, "createNode",
				NodeTypeEnum.ResourceCategory.getName(), properties);
		result = Deencapsulation.invoke(GraphElementFactory.class, "createNode", NodeTypeEnum.ServiceCategory.getName(),
				properties);
		result = Deencapsulation.invoke(GraphElementFactory.class, "createNode", NodeTypeEnum.Tag.getName(),
				properties);
		result = Deencapsulation.invoke(GraphElementFactory.class, "createNode", NodeTypeEnum.Service.getName(),
				properties);
		// result = Deencapsulation.invoke(GraphElementFactory.class, "createNode",
		// NodeTypeEnum.Resource.getName(), properties);
		result = Deencapsulation.invoke(GraphElementFactory.class, "createNode", NodeTypeEnum.Property.getName(),
				properties);
		result = Deencapsulation.invoke(GraphElementFactory.class, "createNode", NodeTypeEnum.HeatParameter.getName(),
				properties);
		result = Deencapsulation.invoke(GraphElementFactory.class, "createNode",
				NodeTypeEnum.HeatParameterValue.getName(), properties);
	}
}