Added oparent to sdc main
[sdc.git] / asdctool / src / test / java / org / openecomp / sdc / asdctool / impl / validator / executers / ArtifactValidatorExecuterTest.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.executers;
22
23 import org.junit.Test;
24 import org.openecomp.sdc.be.dao.jsongraph.types.VertexTypeEnum;
25 import org.openecomp.sdc.be.datatypes.enums.GraphPropertyEnum;
26 import org.openecomp.sdc.be.model.Component;
27 import org.openecomp.sdc.be.model.Resource;
28
29 import java.util.HashMap;
30 import java.util.LinkedList;
31 import java.util.List;
32 import java.util.Map;
33
34 public class ArtifactValidatorExecuterTest {
35
36         private ArtifactValidatorExecuter createTestSubject() {
37                 return new ArtifactValidatorExecuter();
38         }
39
40         @Test
41         public void testGetName() throws Exception {
42                 ArtifactValidatorExecuter testSubject;
43                 String result;
44
45                 // default test
46                 testSubject = createTestSubject();
47                 result = testSubject.getName();
48         }
49
50         @Test(expected=NullPointerException.class)
51         public void testGetVerticesToValidate() throws Exception {
52                 ArtifactValidatorExecuter testSubject;
53                 VertexTypeEnum type = null;
54                 Map<GraphPropertyEnum, Object> hasProps = null;
55
56                 // default test
57                 testSubject = createTestSubject();
58                 testSubject.getVerticesToValidate(type, hasProps);
59         }
60
61         @Test
62         public void testSetName() throws Exception {
63                 ArtifactValidatorExecuter testSubject;
64                 String name = "";
65
66                 // default test
67                 testSubject = createTestSubject();
68                 testSubject.setName(name);
69         }
70
71         @Test(expected=NullPointerException.class)
72         public void testValidate() throws Exception {
73                 ArtifactValidatorExecuter testSubject;
74                 Map<String, List<Component>> vertices = new HashMap<>();
75                 LinkedList<Component> linkedList = new LinkedList<Component>();
76                 linkedList.add(new Resource());
77                 vertices.put("stam", linkedList);
78                 boolean result;
79
80                 // default test
81                 testSubject = createTestSubject();
82                 result = testSubject.validate(vertices);
83         }
84 }