07af71eaf6972653769d133c253da44a479a12c6
[policy/engine.git] / PolicyEngineAPI / src / test / java / org / onap / policy / test / GetConfigByPolicyNameTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * PolicyEngineAPI
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. 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  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.test;
22
23 import java.util.Collection;
24
25 import org.junit.Before;
26 import org.junit.Test;
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
34 import junit.framework.TestCase; 
35
36 public class GetConfigByPolicyNameTest extends TestCase {
37         private PolicyEngine policyEngine = null;
38         private String policyName = null;
39         private Collection<PolicyConfig> policyConfig = null;
40         private static final Logger logger = FlexLogger.getLogger(GetConfigByPolicyNameTest.class);
41         @Before
42         public void setUp() {
43                 try {
44                         policyEngine = new PolicyEngine("Test/config_pass.properties");
45                 } catch (PolicyEngineException e) {
46                         logger.error(e.getMessage());
47                         fail("PolicyEngine Instantiation Error" + e);
48                 }
49                 logger.info("Loaded.. PolicyEngine");
50         }
51         
52         @SuppressWarnings("deprecation")
53         @Test
54         public void testGetConfigPolicyNameNotValid(){
55                 policyName = null;
56                 try{
57                         policyConfig = policyEngine.getConfigByPolicyName(policyName);
58                 } catch (PolicyConfigException e){
59                         logger.warn(e.getMessage());
60                 }
61                 assertNull(policyConfig);
62         }
63 }