9eaaeeef270818dc8163d0b8e48bd662c46e132c
[policy/apex-pdp.git] / core / core-infrastructure / src / test / java / org / onap / policy / apex / core / infrastructure / messaging / MessagingUtilsTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (c) 2020 Nordix Foundation.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20 package org.onap.policy.apex.core.infrastructure.messaging;
21
22 import static org.junit.Assert.assertEquals;
23 import static org.junit.Assert.assertNotNull;
24 import static org.junit.Assert.assertTrue;
25
26 import java.io.IOException;
27 import java.net.InetAddress;
28 import java.net.UnknownHostException;
29
30 import org.junit.Test;
31 import org.onap.policy.apex.core.infrastructure.messaging.util.MessagingUtils;
32
33 public class MessagingUtilsTest {
34
35     @Test
36     public void testCheckPort() throws UnknownHostException, IOException {
37         assertEquals(1, MessagingUtils.checkPort(1));
38         assertEquals(1, MessagingUtils.findPort(1));
39     }
40
41     @Test(expected = IllegalArgumentException.class)
42     public void testIllegalArgumentException() {
43         assertEquals(1, MessagingUtils.findPort(65536));
44     }
45
46     @Test
47     public void testGetHost() throws UnknownHostException {
48         InetAddress host = InetAddress.getLocalHost();
49         assertEquals(host, MessagingUtils.getHost());
50     }
51
52     @Test
53     public void testValidAllocateAddress() throws UnknownHostException {
54         assertNotNull(MessagingUtils.getLocalHostLanAddress());
55         int allocatedPort = MessagingUtils.allocateAddress(3306);
56         assertTrue(allocatedPort >= 3306 && allocatedPort < 65536);
57     }
58
59     @Test(expected = IllegalArgumentException.class)
60     public void testInvalidAllocateAddress() {
61         assertEquals(1, MessagingUtils.allocateAddress(1));
62     }
63
64     @Test
65     public void testSerializeObject() {
66         String testString = "Test";
67         MessagingUtils.serializeObject(new Object());
68         assertNotNull(MessagingUtils.serializeObject(testString));
69     }
70 }