5053f4b9e3eb127e9db1a8d4bc5f4f18de18daae
[sdc.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.sdc.asdctool.impl.validator.tasks.artifacts;
22
23 import static org.mockito.Mockito.mock;
24
25 import org.junit.Test;
26 import org.openecomp.sdc.be.dao.cassandra.ArtifactCassandraDao;
27 import org.openecomp.sdc.be.dao.jsongraph.GraphVertex;
28 import org.openecomp.sdc.be.datatypes.elements.ArtifactDataDefinition;
29
30 import java.util.List;
31 import java.util.Map;
32 import org.openecomp.sdc.be.model.jsonjanusgraph.operations.TopologyTemplateOperation;
33
34 public class ArtifactValidationUtilsTest {
35
36         private ArtifactValidationUtils createTestSubject() {
37                 ArtifactCassandraDao artifactCassandraDao = mock(ArtifactCassandraDao.class);
38                 TopologyTemplateOperation topologyTemplateOperation = mock(TopologyTemplateOperation.class);
39                 return new ArtifactValidationUtils(artifactCassandraDao, topologyTemplateOperation);
40         }
41
42         @Test(expected=NullPointerException.class)
43         public void testValidateArtifactsAreInCassandra() throws Exception {
44                 ArtifactValidationUtils testSubject;
45                 GraphVertex vertex = null;
46                 String taskName = "";
47                 List<ArtifactDataDefinition> artifacts = null;
48                 ArtifactsVertexResult result;
49
50                 // default test
51                 testSubject = createTestSubject();
52                 result = testSubject.validateArtifactsAreInCassandra(vertex, taskName, artifacts);
53         }
54
55         @Test(expected=NullPointerException.class)
56         public void testIsArtifcatInCassandra() throws Exception {
57                 ArtifactValidationUtils testSubject;
58                 String uniueId = "";
59                 boolean result;
60
61                 // default test
62                 testSubject = createTestSubject();
63                 result = testSubject.isArtifcatInCassandra(uniueId);
64         }
65
66         @Test
67         public void testAddRelevantArtifacts() throws Exception {
68                 ArtifactValidationUtils testSubject;
69                 Map<String, ArtifactDataDefinition> artifactsMap = null;
70                 List<ArtifactDataDefinition> result;
71
72                 // default test
73                 testSubject = createTestSubject();
74                 result = testSubject.addRelevantArtifacts(artifactsMap);
75         }
76
77         @Test(expected=NullPointerException.class)
78         public void testValidateTopologyTemplateArtifacts() throws Exception {
79                 ArtifactValidationUtils testSubject;
80                 GraphVertex vertex = null;
81                 String taskName = "";
82                 ArtifactsVertexResult result;
83
84                 // default test
85                 testSubject = createTestSubject();
86                 result = testSubject.validateTopologyTemplateArtifacts(vertex, taskName);
87         }
88 }