aboutsummaryrefslogtreecommitdiffstats
path: root/models-interactions/model-impl/aai/src/test/java/org/onap/policy/aai/PnfInstanceTest.java
blob: 8cf8391100ac8d9ef578249cfbf57b915766fb80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
/*-
 * ============LICENSE_START=======================================================
 * aai
 * ================================================================================
 * Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved.
 * Modifications Copyright (C) 2019 Nordix Foundation.
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END=========================================================
*/

package org.onap.policy.aai;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNotEquals;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertTrue;

import org.junit.Test;
import org.onap.policy.aai.util.Serialization;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class PnfInstanceTest {
    private static final String PNF_NAME_TEST = "pnf-name-test";
    private static final Logger logger = LoggerFactory.getLogger(PnfInstanceTest.class);

    @Test
    public void test() {
        PnfInstance pnfInstance = new PnfInstance();
        pnfInstance.setPnfInstanceName("pnf-instance-name-test");
        pnfInstance.setPnfName(PNF_NAME_TEST);
        pnfInstance.setPnfType(PnfType.ENODEB);
        pnfInstance.setPnfSerial("pnf-serial-test");
        assertNotNull(pnfInstance);
        assertEquals("pnf-instance-name-test", pnfInstance.getPnfInstanceName());

        PnfInstance pnfInstanceNull = new PnfInstance(null);
        assertNotNull(pnfInstanceNull);

        PnfInstance pnfInstanceClone = new PnfInstance(pnfInstance);
        assertNotNull(pnfInstanceClone);

        assertEquals(PNF_NAME_TEST, pnfInstanceClone.getPnfName());
        assertEquals(PnfType.ENODEB, pnfInstanceClone.getPnfType());
        assertEquals("pnf-serial-test", pnfInstanceClone.getPnfSerial());

        assertEquals("PNFInstance [PNFName=pnf-name-test, PNFInstanceName=pnf-instance-name-test, PNFType=eNodeB, "
                + "PNFSerial=pnf-serial-test]", pnfInstanceClone.toString());
        assertNotEquals(0, pnfInstanceClone.hashCode());
        assertNotEquals(0, new Pnf().hashCode());

        PnfInstance pnfInstanceOther0 = new PnfInstance();
        pnfInstanceOther0.setPnfName(PNF_NAME_TEST);

        PnfInstance pnfInstanceOther1 = new PnfInstance(pnfInstance);
        pnfInstanceOther1.setPnfName("pnf-name-test-diff");

        PnfInstance pnfInstanceOther2 = new PnfInstance(pnfInstance);
        pnfInstanceOther2.setPnfInstanceName("pnf-instance-name-test-diff");

        PnfInstance pnfInstanceOther3 = new PnfInstance(pnfInstance);
        pnfInstanceOther3.setPnfName(null);

        PnfInstance pnfInstanceOther4 = new PnfInstance(pnfInstance);
        pnfInstanceOther4.setPnfSerial(null);

        PnfInstance pnfInstanceOther5 = new PnfInstance(pnfInstance);
        pnfInstanceOther5.setPnfSerial("pnf-serial-test-diff");

        assertTrue(pnfInstance.equals(pnfInstance));
        assertFalse(pnfInstance.equals(null));
        assertFalse(pnfInstance.equals("hello"));
        assertTrue(pnfInstance.equals(pnfInstanceClone));
        assertFalse(pnfInstance.equals(new Pnf()));
        assertFalse(new Pnf().equals(pnfInstance));
        assertFalse(new Pnf().equals(pnfInstanceOther0));
        assertFalse(pnfInstanceOther0.equals(pnfInstance));
        assertFalse(pnfInstanceOther1.equals(pnfInstance));
        assertFalse(pnfInstanceOther2.equals(pnfInstance));
        assertFalse(pnfInstanceOther3.equals(pnfInstance));
        assertFalse(pnfInstanceOther4.equals(pnfInstance));
        assertFalse(pnfInstanceOther5.equals(pnfInstance));

        logger.info(Serialization.gsonPretty.toJson(pnfInstance));
    }

}