Added oparent to sdc main
[sdc.git] / asdctool / src / test / java / org / openecomp / sdc / asdctool / impl / validator / tasks / artifacts / ArtifactValidationUtilsTest.java
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 org.junit.Test;
24 import org.openecomp.sdc.be.dao.jsongraph.GraphVertex;
25 import org.openecomp.sdc.be.datatypes.elements.ArtifactDataDefinition;
26
27 import java.util.List;
28 import java.util.Map;
29
30 public class ArtifactValidationUtilsTest {
31
32         private ArtifactValidationUtils createTestSubject() {
33                 return new ArtifactValidationUtils();
34         }
35
36         @Test(expected=NullPointerException.class)
37         public void testValidateArtifactsAreInCassandra() throws Exception {
38                 ArtifactValidationUtils testSubject;
39                 GraphVertex vertex = null;
40                 String taskName = "";
41                 List<ArtifactDataDefinition> artifacts = null;
42                 ArtifactsVertexResult result;
43
44                 // default test
45                 testSubject = createTestSubject();
46                 result = testSubject.validateArtifactsAreInCassandra(vertex, taskName, artifacts);
47         }
48
49         @Test(expected=NullPointerException.class)
50         public void testIsArtifcatInCassandra() throws Exception {
51                 ArtifactValidationUtils testSubject;
52                 String uniueId = "";
53                 boolean result;
54
55                 // default test
56                 testSubject = createTestSubject();
57                 result = testSubject.isArtifcatInCassandra(uniueId);
58         }
59
60         @Test
61         public void testAddRelevantArtifacts() throws Exception {
62                 ArtifactValidationUtils testSubject;
63                 Map<String, ArtifactDataDefinition> artifactsMap = null;
64                 List<ArtifactDataDefinition> result;
65
66                 // default test
67                 testSubject = createTestSubject();
68                 result = testSubject.addRelevantArtifacts(artifactsMap);
69         }
70
71         @Test(expected=NullPointerException.class)
72         public void testValidateTopologyTemplateArtifacts() throws Exception {
73                 ArtifactValidationUtils testSubject;
74                 GraphVertex vertex = null;
75                 String taskName = "";
76                 ArtifactsVertexResult result;
77
78                 // default test
79                 testSubject = createTestSubject();
80                 result = testSubject.validateTopologyTemplateArtifacts(vertex, taskName);
81         }
82 }