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