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
10 * http://www.apache.org/licenses/LICENSE-2.0
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.
18 * SPDX-License-Identifier: Apache-2.0
19 * ============LICENSE_END=========================================================
22 package org.onap.policy.apex.core.infrastructure.messaging;
24 import static org.junit.Assert.assertEquals;
25 import static org.junit.Assert.assertNotNull;
26 import static org.junit.Assert.assertTrue;
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;
34 public class MessagingUtilsTest {
37 public void testCheckPort() throws UnknownHostException, IOException {
38 assertEquals(1, MessagingUtils.checkPort(1));
39 assertEquals(1, MessagingUtils.findPort(1));
42 @Test(expected = IllegalArgumentException.class)
43 public void testIllegalArgumentException() {
44 MessagingUtils.findPort(65536);
48 public void testGetHost() throws UnknownHostException {
49 InetAddress host = InetAddress.getLocalHost();
50 assertEquals(host, MessagingUtils.getHost());
54 public void testValidAllocateAddress() throws UnknownHostException {
55 assertNotNull(MessagingUtils.getLocalHostLanAddress());
56 int allocatedPort = MessagingUtils.allocateAddress(3306);
57 assertTrue(allocatedPort >= 3306 && allocatedPort < 65536);
60 @Test(expected = IllegalArgumentException.class)
61 public void testInvalidAllocateAddress() {
62 MessagingUtils.allocateAddress(1);
66 public void testSerializeObject() {
67 String testString = "Test";
68 MessagingUtils.serializeObject(new Object());
69 assertNotNull(MessagingUtils.serializeObject(testString));