Initial OpenECOMP policy/engine commit
[policy/engine.git] / PolicyEngineAPI / src / test / java / org / openecomp / 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.openecomp.policy.test;
22
23 import java.util.Collection;
24
25 import junit.framework.TestCase;
26
27 import org.apache.commons.logging.Log;
28 import org.apache.commons.logging.LogFactory;
29 import org.junit.Before;
30 import org.junit.Test;
31 import org.openecomp.policy.api.PolicyConfig;
32 import org.openecomp.policy.api.PolicyConfigException;
33 import org.openecomp.policy.api.PolicyEngine;
34 import org.openecomp.policy.api.PolicyEngineException;
35
36 import org.openecomp.policy.common.logging.flexlogger.*; 
37
38 public class GetConfigByPolicyNameTest extends TestCase {
39         private PolicyEngine policyEngine = null;
40         private String policyName = null;
41         private Collection<PolicyConfig> policyConfig = null;
42         private static final Logger logger = FlexLogger.getLogger(GetConfigByPolicyNameTest.class);
43         @Before
44         public void setUp() {
45                 try {
46                         policyEngine = new PolicyEngine("Test/config_pass.properties");
47                 } catch (PolicyEngineException e) {
48                         logger.error(e.getMessage());
49                         fail("PolicyEngine Instantiation Error" + e);
50                 }
51                 logger.info("Loaded.. PolicyEngine");
52         }
53         
54         @Test
55         public void testGetConfigPolicyNameNotValid(){
56                 policyName = null;
57                 try{
58                         policyConfig = policyEngine.getConfigByPolicyName(policyName);
59                 } catch (PolicyConfigException e){
60                         logger.warn(e.getMessage());
61                 }
62                 assertNull(policyConfig);
63         }
64 }