91b34e20c1935aed67a591265a555aef6d56d7d8
[policy/apex-pdp.git] /
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.*;
23
24 import java.io.IOException;
25 import java.net.InetAddress;
26 import java.net.UnknownHostException;
27
28 import org.junit.Test;
29 import org.onap.policy.apex.core.infrastructure.messaging.util.MessagingUtils;
30
31 public class MessagingUtilsTest {
32
33     @Test
34     public void testCheckPort() throws UnknownHostException, IOException {
35         assertEquals(1,MessagingUtils.checkPort(1));
36         assertEquals(1,MessagingUtils.findPort(1));
37     }
38
39     @Test(expected = IllegalArgumentException.class)
40     public void testIllegalArgumentException() {
41         assertEquals(1,MessagingUtils.findPort(65536));
42     }
43
44     @Test
45     public void testGetHost() throws UnknownHostException {
46         InetAddress host = InetAddress.getLocalHost();
47         assertEquals(host,MessagingUtils.getHost());
48     }
49
50     @Test
51     public void testValidAllocateAddress() throws UnknownHostException {
52         assertNotNull(MessagingUtils.getLocalHostLanAddress());
53         assertEquals(3306,MessagingUtils.allocateAddress(3306));
54     }
55
56     @Test(expected = IllegalArgumentException.class)
57     public void testInvalidAllocateAddress() {
58         assertEquals(1,MessagingUtils.allocateAddress(1));
59     }
60
61     @Test
62     public void testSerializeObject() {
63         String testString = "Test";
64         MessagingUtils.serializeObject(new Object());
65         assertNotNull(MessagingUtils.serializeObject(testString));
66     }
67 }