aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-dao/src/test/java/org/openecomp/sdc/be/dao/jsongraph/JanusGraphDaoTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'catalog-dao/src/test/java/org/openecomp/sdc/be/dao/jsongraph/JanusGraphDaoTest.java')
-rw-r--r--catalog-dao/src/test/java/org/openecomp/sdc/be/dao/jsongraph/JanusGraphDaoTest.java332
1 files changed, 0 insertions, 332 deletions
diff --git a/catalog-dao/src/test/java/org/openecomp/sdc/be/dao/jsongraph/JanusGraphDaoTest.java b/catalog-dao/src/test/java/org/openecomp/sdc/be/dao/jsongraph/JanusGraphDaoTest.java
deleted file mode 100644
index 2a3a4e8309..0000000000
--- a/catalog-dao/src/test/java/org/openecomp/sdc/be/dao/jsongraph/JanusGraphDaoTest.java
+++ /dev/null
@@ -1,332 +0,0 @@
-/*-
- * ============LICENSE_START=======================================================
- * SDC
- * ================================================================================
- * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
- * ================================================================================
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- * ============LICENSE_END=========================================================
- */
-
-package org.openecomp.sdc.be.dao.jsongraph;
-
-import org.janusgraph.core.JanusGraph;
-import fj.data.Either;
-import org.apache.tinkerpop.gremlin.structure.Edge;
-import org.apache.tinkerpop.gremlin.structure.Element;
-import org.apache.tinkerpop.gremlin.structure.Property;
-import org.apache.tinkerpop.gremlin.structure.Vertex;
-import org.junit.After;
-import org.junit.Before;
-import org.junit.Test;
-import org.mockito.Mockito;
-import org.openecomp.sdc.be.dao.DAOJanusGraphStrategy;
-import org.openecomp.sdc.be.dao.janusgraph.JanusGraphClient;
-import org.openecomp.sdc.be.dao.janusgraph.JanusGraphOperationStatus;
-import org.openecomp.sdc.be.dao.jsongraph.types.EdgeLabelEnum;
-import org.openecomp.sdc.be.dao.jsongraph.types.EdgePropertyEnum;
-import org.openecomp.sdc.be.dao.jsongraph.types.JsonParseFlagEnum;
-import org.openecomp.sdc.be.dao.jsongraph.types.VertexTypeEnum;
-import org.openecomp.sdc.be.datatypes.enums.GraphPropertyEnum;
-import org.openecomp.sdc.be.utils.DAOConfDependentTest;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-
-import java.util.Iterator;
-import java.util.List;
-import java.util.Map;
-
-public class JanusGraphDaoTest extends DAOConfDependentTest{
-
-
- private static Logger logger = LoggerFactory.getLogger(JanusGraphDaoTest.class);
- private JanusGraphDao dao = new JanusGraphDao(new JanusGraphClient(new DAOJanusGraphStrategy()));
-
- @Before
- public void init(){
- dao.janusGraphClient.createGraph();
- }
-
- @After
- public void end(){
- dao.janusGraphClient.cleanupGraph();
- }
-
- @Test
- public void testCreateVertex() throws Exception {
- Either<GraphVertex, JanusGraphOperationStatus> result;
-
- // default test
- GraphVertex graphVertex = new GraphVertex(VertexTypeEnum.REQUIREMENTS);
- result = dao.createVertex(graphVertex);
-
- graphVertex = new GraphVertex();
- result = dao.createVertex(graphVertex);
- }
-
- @Test
- public void testGetVertexByLabel() throws Exception {
- Either<GraphVertex, JanusGraphOperationStatus> result;
-
- // default test
- result = dao.getVertexByLabel(VertexTypeEnum.ADDITIONAL_INFORMATION);
- }
-
- @Test
- public void testCommit() throws Exception {
- JanusGraphOperationStatus result;
-
- // default test
-
- result = dao.commit();
- }
-
-
- @Test
- public void testRollback() throws Exception {
-
- JanusGraphOperationStatus result;
-
- // default test
-
- result = dao.rollback();
- }
-
- @Test
- public void testGetGraph() throws Exception {
-
- Either<JanusGraph, JanusGraphOperationStatus> result;
-
- // default test
-
- result = dao.getGraph();
- }
-
- @Test
- public void testGetVertexByPropertyAndLabel() throws Exception {
-
- GraphPropertyEnum name = null;
- Object value = null;
- VertexTypeEnum label = null;
- Either<GraphVertex, JanusGraphOperationStatus> result;
-
- // default test
-
- result = dao.getVertexByPropertyAndLabel(name, value, label);
-
- result = dao.getVertexByPropertyAndLabel(GraphPropertyEnum.COMPONENT_TYPE, new Object(), VertexTypeEnum.ADDITIONAL_INFORMATION);
- }
-
- @Test
- public void testGetVertexByPropertyAndLabel_1() throws Exception {
-
- GraphPropertyEnum name = null;
- Object value = null;
- VertexTypeEnum label = null;
- JsonParseFlagEnum parseFlag = null;
- Either<GraphVertex, JanusGraphOperationStatus> result;
-
- // default test
-
- result = dao.getVertexByPropertyAndLabel(name, value, label, parseFlag);
- }
-
-
- @Test
- public void testGetVertexById() throws Exception {
-
- String id = "";
- Either<GraphVertex, JanusGraphOperationStatus> result;
-
- // default test
-
- result = dao.getVertexById(id);
- }
-
- @Test
- public void testGetVertexById_1() throws Exception {
-
- String id = "";
- JsonParseFlagEnum parseFlag = null;
- Either<GraphVertex, JanusGraphOperationStatus> result;
-
- // test 1
-
- id = null;
- result = dao.getVertexById(id, parseFlag);
-
- // test 2
-
- id = "";
- result = dao.getVertexById(id, parseFlag);
- }
-
- @Test
- public void testGetVertexProperties() throws Exception {
-
- Element element = null;
- Map<GraphPropertyEnum, Object> result;
-
- // test 1
-
- element = null;
- result = dao.getVertexProperties(element);
- }
-
-
- @Test
- public void testGetEdgeProperties() throws Exception {
-
- Element element = null;
- Map<EdgePropertyEnum, Object> result;
-
- // test 1
-
- element = null;
- result = dao.getEdgeProperties(element);
- }
-
- @Test
- public void testGetByCriteria() throws Exception {
-
- VertexTypeEnum type = null;
- Map<GraphPropertyEnum, Object> props = null;
- Either<List<GraphVertex>, JanusGraphOperationStatus> result;
-
- // default test
-
- result = dao.getByCriteria(type, props);
- }
-
- @Test
- public void testGetByCriteria_1() throws Exception {
-
- VertexTypeEnum type = null;
- Map<GraphPropertyEnum, Object> props = null;
- JsonParseFlagEnum parseFlag = null;
- Either<List<GraphVertex>, JanusGraphOperationStatus> result;
-
- // default test
-
- result = dao.getByCriteria(type, props, parseFlag);
- }
-
-
- @Test
- public void testGetByCriteria_2() throws Exception {
-
- VertexTypeEnum type = null;
- Map<GraphPropertyEnum, Object> props = null;
- Map<GraphPropertyEnum, Object> hasNotProps = null;
- JsonParseFlagEnum parseFlag = null;
- Either<List<GraphVertex>, JanusGraphOperationStatus> result;
-
- // default test
-
- result = dao.getByCriteria(type, props, hasNotProps, parseFlag);
- }
-
- @Test
- public void testGetCatalogVerticies() throws Exception {
-
- Either<Iterator<Vertex>, JanusGraphOperationStatus> result;
-
- // default test
-
- result = dao.getCatalogOrArchiveVerticies(true);
- }
-
- @Test
- public void testGetParentVertecies_1() throws Exception {
-
- Vertex parentVertex = null;
- EdgeLabelEnum edgeLabel = null;
- JsonParseFlagEnum parseFlag = null;
- Either<List<Vertex>, JanusGraphOperationStatus> result;
-
- // default test
-
- result = dao.getParentVertices(parentVertex, edgeLabel, parseFlag);
- }
-
- @Test
- public void testGetChildrenVertecies_1() throws Exception {
-
- Vertex parentVertex = null;
- EdgeLabelEnum edgeLabel = null;
- JsonParseFlagEnum parseFlag = null;
- Either<List<Vertex>, JanusGraphOperationStatus> result;
-
- // default test
-
- result = dao.getChildrenVertices(parentVertex, edgeLabel, parseFlag);
- }
-
- @Test
- public void testUpdateVertexMetadataPropertiesWithJson() throws Exception {
-
- Vertex vertex = null;
- Map<GraphPropertyEnum, Object> properties = null;
- JanusGraphOperationStatus result;
-
- // default test
-
- result = dao.updateVertexMetadataPropertiesWithJson(vertex, properties);
- }
-
- @Test
- public void testGetProperty() throws Exception {
- Edge edge = Mockito.mock(Edge.class);;
- Object result;
-
- Property<Object> value = Mockito.mock(Property.class);
- Mockito.when(edge.property(Mockito.any())).thenReturn(value);
-
- // default test
- result = dao.getProperty(edge, EdgePropertyEnum.STATE);
- }
-
- @Test
- public void testGetProperty_1() throws Exception {
- Edge edge = Mockito.mock(Edge.class);;
- Object result;
-
- // default test
- result = dao.getProperty(edge, EdgePropertyEnum.STATE);
- }
-
- @Test
- public void testGetPropertyexception() throws Exception {
- Edge edge = Mockito.mock(Edge.class);;
- Object result;
-
- Property<Object> value = Mockito.mock(Property.class);
- Mockito.when(edge.property(Mockito.any())).thenThrow(RuntimeException.class);
-
- // default test
- result = dao.getProperty(edge, EdgePropertyEnum.STATE);
- }
-
- @Test
- public void testGetBelongingEdgeByCriteria_1() throws Exception {
-
- String parentId = "";
- EdgeLabelEnum label = null;
- Map<GraphPropertyEnum, Object> properties = null;
- Either<Edge, JanusGraphOperationStatus> result;
-
- // default test
-
- result = dao.getBelongingEdgeByCriteria(parentId, label, properties);
- }
-}