c34a4aa319701e967df6af5033724af257c13a7a
[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  * ================================================================================
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.api.main.startstop;
23
24 import static org.junit.Assert.assertEquals;
25 import static org.junit.Assert.assertTrue;
26
27 import org.junit.Test;
28 import org.onap.policy.api.main.parameters.ApiParameterGroup;
29 import org.onap.policy.api.main.parameters.ApiParameterHandler;
30 import org.onap.policy.api.main.parameters.CommonTestData;
31 import org.onap.policy.common.utils.network.NetworkUtil;
32
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.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.getParameterGroup().isValid());
51         assertEquals(CommonTestData.API_GROUP_NAME, activator.getParameterGroup().getName());
52         activator.terminate();
53     }
54 }