b899e014d5738d9bd70ae9dbcca28089b7a22e8e
[policy/api.git] / main / src / test / java / org / onap / policy / api / main / startstop / TestApiActivator.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2018 Samsung Electronics Co., Ltd. All rights reserved.
4  *  Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
5  *  Modifications Copyright (C) 2021 Bell Canada. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  * SPDX-License-Identifier: Apache-2.0
20  * ============LICENSE_END=========================================================
21  */
22
23 package org.onap.policy.api.main.startstop;
24
25 import static org.junit.Assert.assertEquals;
26 import static org.junit.Assert.assertTrue;
27
28 import org.junit.Test;
29 import org.onap.policy.api.main.parameters.ApiParameterGroup;
30 import org.onap.policy.api.main.parameters.ApiParameterHandler;
31 import org.onap.policy.api.main.parameters.CommonTestData;
32 import org.onap.policy.common.utils.network.NetworkUtil;
33
34 /**
35  * Class to perform unit test of ApiActivator.
36  *
37  */
38 public class TestApiActivator {
39     private static final CommonTestData COMMON_TEST_DATA = new CommonTestData();
40
41     @Test
42     public void testApiActivator() throws Exception {
43         COMMON_TEST_DATA.makeParameters("src/test/resources/parameters/ApiConfigParameters_Https.json",
44                 "src/test/resources/parameters/ApiConfigParametersXXX.json", NetworkUtil.allocPort());
45         final String[] apiConfigParameters = {"-c", "src/test/resources/parameters/ApiConfigParametersXXX.json"};
46         final ApiCommandLineArguments arguments = new ApiCommandLineArguments(apiConfigParameters);
47         final ApiParameterGroup parGroup = new ApiParameterHandler().getParameters(arguments);
48         final ApiActivator activator = new ApiActivator(parGroup);
49         activator.initialize();
50         assertTrue(activator.getApiParameterGroup().isValid());
51         assertEquals(CommonTestData.API_GROUP_NAME, activator.getApiParameterGroup().getName());
52         activator.terminate();
53     }
54 }