Adjust sparky parent pom
[aai/sparky-be.git] / sparkybe-onap-service / src / test / java / org / onap / aai / sparky / viewandinspect / entity / GizmoRelationshipEntityTest.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017-2018 Amdocs
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *       http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.aai.sparky.viewandinspect.entity;
23
24 import static org.junit.Assert.assertNotNull;
25 import static org.junit.Assert.assertNull;
26
27 import java.util.HashMap;
28 import java.util.Map;
29
30 import org.junit.Before;
31 import org.junit.Test;
32
33
34 public class GizmoRelationshipEntityTest {
35
36
37   private GizmoRelationshipEntity gizmoRelationshipEntity;
38   private Map<String, String> props;
39
40
41
42   @Before
43   public void init() throws Exception {
44
45     gizmoRelationshipEntity = new GizmoRelationshipEntity();
46     props = new HashMap<String, String>();
47
48   }
49
50   @Test
51   public void updateValues() {
52
53
54     gizmoRelationshipEntity.setId("1664646");
55     assertNotNull(gizmoRelationshipEntity.getId());
56     gizmoRelationshipEntity.setType("pserver");
57     assertNotNull(gizmoRelationshipEntity.getType());
58     gizmoRelationshipEntity.setUrl("https://magicaltest.com:6666/v2/tenant-id/servers/vserver-id");
59     assertNotNull(gizmoRelationshipEntity.getUrl());
60     gizmoRelationshipEntity.setSource("pserver");
61     assertNotNull(gizmoRelationshipEntity.getSource());
62     gizmoRelationshipEntity.setTarget("generic-vnf");
63     assertNotNull(gizmoRelationshipEntity.getTarget());
64     gizmoRelationshipEntity.setProperties(props);
65     assertNotNull(gizmoRelationshipEntity.getProperties());
66     assertNotNull(gizmoRelationshipEntity.toString());
67
68     gizmoRelationshipEntity.setId(null);
69     assertNull(gizmoRelationshipEntity.getId());
70     gizmoRelationshipEntity.setType(null);
71     assertNull(gizmoRelationshipEntity.getType());
72     gizmoRelationshipEntity.setUrl(null);
73     assertNull(gizmoRelationshipEntity.getUrl());
74     gizmoRelationshipEntity.setSource(null);
75     assertNull(gizmoRelationshipEntity.getSource());
76     gizmoRelationshipEntity.setTarget(null);
77     assertNull(gizmoRelationshipEntity.getTarget());
78     gizmoRelationshipEntity.setProperties(null);
79     assertNull(gizmoRelationshipEntity.getProperties());
80     assertNotNull(gizmoRelationshipEntity.toString());
81
82   }
83 }