20697d8320c47c167117588fc8b337adf679cd1e
[policy/models.git] / models-interactions / model-impl / aai / src / test / java / org / onap / policy / aai / RelatedToPropertyTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * aai
4  * ================================================================================
5  * Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved.
6  * Modifications Copyright (C) 2019 Nordix Foundation.
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.policy.aai;
23
24 import static org.junit.Assert.assertEquals;
25
26 import java.io.File;
27 import java.nio.file.Files;
28 import org.junit.Test;
29 import org.onap.policy.aai.util.Serialization;
30 import org.slf4j.Logger;
31 import org.slf4j.LoggerFactory;
32
33 public class RelatedToPropertyTest {
34     private static final Logger logger = LoggerFactory.getLogger(RelatedToPropertyTest.class);
35
36     @Test
37     public void test() throws Exception {
38         // deserialize json and verify fields are populated properly
39         String json = new String(Files.readAllBytes(
40                         new File("src/test/resources/org/onap/policy/aai/RelatedToProperty.json").toPath()));
41
42         RelatedToProperty relatedToProperty = Serialization.gsonPretty.fromJson(json, RelatedToProperty.class);
43
44         assertEquals("generic-vnf.vnf-name", relatedToProperty.getPropertyKey());
45         assertEquals("vLoadBalancerMS-Vnf-0809-1", relatedToProperty.getPropertyValue());
46
47         logger.info(Serialization.gsonPretty.toJson(relatedToProperty));
48
49         // verify that setXxx methods work
50         relatedToProperty.setPropertyKey("a key");
51         relatedToProperty.setPropertyValue("a value");
52
53         assertEquals("a key", relatedToProperty.getPropertyKey());
54         assertEquals("a value", relatedToProperty.getPropertyValue());
55     }
56
57 }