Reformat PolicyEngineAPI test cases
[policy/engine.git] / PolicyEngineAPI / src / test / java / org / onap / policy / test / GetConfigStringTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * PolicyEngineAPI
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Modifications Copyright (C) 2019 Samsung
8  * ================================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * ============LICENSE_END=========================================================
21  */
22
23 package org.onap.policy.test;
24
25 import java.util.Collection;
26 import org.junit.Before;
27 import org.onap.policy.api.PolicyConfig;
28 import org.onap.policy.api.PolicyConfigException;
29 import org.onap.policy.api.PolicyEngine;
30 import org.onap.policy.api.PolicyEngineException;
31 import org.onap.policy.common.logging.flexlogger.FlexLogger;
32 import org.onap.policy.common.logging.flexlogger.Logger;
33 import junit.framework.TestCase;
34
35 public class GetConfigStringTest extends TestCase {
36
37     private PolicyEngine policyEngine = null;
38     private String onapComponentName = null;
39     private Collection<PolicyConfig> policyConfig = null;
40     private static final Logger logger = FlexLogger.getLogger(GetConfigStringTest.class);
41
42     @Before
43     public void setUp() {
44         try {
45             policyEngine = new PolicyEngine("Test/config_pass.properties");
46         } catch (PolicyEngineException e) {
47             logger.error(e.getMessage());
48             fail("PolicyEngine Instantiation Error" + e);
49         }
50         logger.info("Loaded.. PolicyEngine");
51     }
52
53     // @Test
54     @SuppressWarnings("deprecation")
55     public void testGetConfigStringFail() {
56         onapComponentName = null;
57         try {
58             policyConfig = policyEngine.getConfig(onapComponentName);
59         } catch (PolicyConfigException e) {
60             logger.warn(e.getMessage());
61         }
62         assertNull(policyConfig);
63     }
64 }