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
9 * http://www.apache.org/licenses/LICENSE-2.0
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.
17 * SPDX-License-Identifier: Apache-2.0
18 * ============LICENSE_END=========================================================
20 package org.onap.policy.apex.core.infrastructure.messaging;
22 import static org.junit.Assert.*;
24 import java.io.IOException;
25 import java.net.InetAddress;
26 import java.net.UnknownHostException;
28 import org.junit.Test;
29 import org.onap.policy.apex.core.infrastructure.messaging.util.MessagingUtils;
31 public class MessagingUtilsTest {
34 public void testCheckPort() throws UnknownHostException, IOException {
35 assertEquals(1,MessagingUtils.checkPort(1));
36 assertEquals(1,MessagingUtils.findPort(1));
39 @Test(expected = IllegalArgumentException.class)
40 public void testIllegalArgumentException() {
41 assertEquals(1,MessagingUtils.findPort(65536));
45 public void testGetHost() throws UnknownHostException {
46 InetAddress host = InetAddress.getLocalHost();
47 assertEquals(host,MessagingUtils.getHost());
51 public void testValidAllocateAddress() throws UnknownHostException {
52 assertNotNull(MessagingUtils.getLocalHostLanAddress());
53 assertEquals(3306,MessagingUtils.allocateAddress(3306));
56 @Test(expected = IllegalArgumentException.class)
57 public void testInvalidAllocateAddress() {
58 assertEquals(1,MessagingUtils.allocateAddress(1));
62 public void testSerializeObject() {
63 String testString = "Test";
64 MessagingUtils.serializeObject(new Object());
65 assertNotNull(MessagingUtils.serializeObject(testString));