move actors code in drools-applications to policy/models
[policy/models.git] / models-interactions / model-impl / aai / src / test / java / org / onap / policy / aai / PnfTest.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 import static org.junit.Assert.assertFalse;
26 import static org.junit.Assert.assertNotEquals;
27 import static org.junit.Assert.assertNotNull;
28 import static org.junit.Assert.assertTrue;
29
30 import org.junit.AfterClass;
31 import org.junit.BeforeClass;
32 import org.junit.Test;
33 import org.onap.policy.aai.util.Serialization;
34 import org.slf4j.Logger;
35 import org.slf4j.LoggerFactory;
36
37 public class PnfTest {
38     private static final Logger logger = LoggerFactory.getLogger(PnfTest.class);
39
40     @BeforeClass
41     public static void setUpBeforeClass() throws Exception {}
42
43     @AfterClass
44     public static void tearDownAfterClass() throws Exception {}
45
46     @Test
47     public void test() {
48         Pnf pnf = new Pnf();
49         pnf.setPnfName("pnf-name-test");
50         pnf.setPnfType(PnfType.ENODEB);
51         assertNotNull(pnf);
52
53         Pnf pnfClone = new Pnf(pnf);
54         assertNotNull(pnfClone);
55
56         assertEquals("pnf-name-test", pnfClone.getPnfName());
57         assertEquals(PnfType.ENODEB, pnfClone.getPnfType());
58
59         assertEquals("PNF [PNFName=pnf-name-test, PNFType=eNodeB]", pnfClone.toString());
60         assertNotEquals(0, pnfClone.hashCode());
61         assertNotEquals(0, new Pnf().hashCode());
62
63         Pnf pnfOther = new Pnf();
64         pnfOther.setPnfName("pnf-name-test");
65
66         assertTrue(pnf.equals(pnf));
67         assertFalse(pnf.equals(null));
68         assertFalse(pnf.equals("hello"));
69         assertTrue(pnf.equals(pnfClone));
70         assertFalse(pnf.equals(new Pnf()));
71         assertFalse(new Pnf().equals(pnf));
72         assertFalse(new Pnf().equals(pnfOther));
73         assertFalse(pnfOther.equals(pnf));
74
75         logger.info(Serialization.gsonPretty.toJson(pnf));
76     }
77
78 }