Modify ONAP PAP REST classes basic checkstyle
[policy/engine.git] / ONAP-PAP-REST / src / test / java / org / onap / policy / pap / xacml / rest / components / ActionPolicyTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP-PAP-REST
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 package org.onap.policy.pap.xacml.rest.components;
21
22 import static org.junit.Assert.*;
23 import static org.mockito.Mockito.when;
24
25 import java.util.HashMap;
26 import java.util.LinkedList;
27 import java.util.List;
28 import java.util.Map;
29 import java.util.UUID;
30
31 import org.junit.After;
32 import org.junit.Before;
33 import org.junit.Test;
34 import org.mockito.Mockito;
35 import org.onap.policy.common.logging.flexlogger.FlexLogger;
36 import org.onap.policy.common.logging.flexlogger.Logger;
37 import org.onap.policy.rest.adapter.PolicyRestAdapter;
38
39 import com.att.research.xacml.util.XACMLProperties;
40
41
42 public class ActionPolicyTest {
43
44     private static Logger logger = FlexLogger.getLogger(ActionPolicyTest.class);
45     PolicyRestAdapter policyAdapter = new PolicyRestAdapter();
46     List<String> dynamicRuleAlgorithmLabels = new LinkedList<>();
47     List<String> dynamicRuleAlgorithmCombo = new LinkedList<>();
48     List<String> dynamicRuleAlgorithmField1 = new LinkedList<>();
49     List<String> dynamicRuleAlgorithmField2 = new LinkedList<>();
50     Map<String, String> attributeMap = new HashMap<>();
51     ActionPolicy component = null;
52
53
54     /**
55      * @throws java.lang.Exception
56      */
57     @Before
58     public void setUp() throws Exception {
59         logger.info("setUp: Entering");
60         System.setProperty(XACMLProperties.XACML_PROPERTIES_NAME,"src/test/resources/xacml.pap.properties");
61
62         dynamicRuleAlgorithmLabels.add("test");
63         dynamicRuleAlgorithmField1.add("testField1");
64         dynamicRuleAlgorithmCombo.add("testCombo");
65         dynamicRuleAlgorithmField2.add("testField2");
66
67         policyAdapter.setPolicyName("Test.Action_junitTest");
68         policyAdapter.setPolicyDescription("test");
69         policyAdapter.setRuleCombiningAlgId("urn:oasis:names:tc:xacml:3.0:rule-combining-algorithm:permit-overrides");
70         policyAdapter.setPolicyType("Action");
71         policyAdapter.setEditPolicy(false);
72         policyAdapter.setDomainDir("Test");
73         policyAdapter.setNewFileName("Test.Action_junitTest.1.xml");
74         policyAdapter.setHighestVersion(1);
75         policyAdapter.setPolicyID("urn:xacml:policy:id:"+UUID.randomUUID());
76
77         policyAdapter.setActionDictHeader("");
78         policyAdapter.setActionDictType("REST");
79         policyAdapter.setActionDictUrl("onap.org");
80         policyAdapter.setActionDictMethod("GET");
81         policyAdapter.setActionAttribute("test");
82         policyAdapter.setActionBody("test");
83
84         policyAdapter.setDynamicRuleAlgorithmLabels(dynamicRuleAlgorithmLabels);
85         policyAdapter.setDynamicRuleAlgorithmCombo(dynamicRuleAlgorithmCombo);
86         policyAdapter.setDynamicRuleAlgorithmField1(dynamicRuleAlgorithmField1);
87         policyAdapter.setDynamicRuleAlgorithmField2(dynamicRuleAlgorithmField2);
88
89         attributeMap.put("java", "test");
90         policyAdapter.setDynamicFieldConfigAttributes(attributeMap);
91
92         component = new ActionPolicy(policyAdapter, null);
93
94         logger.info("setUp: exit");
95     }
96
97     /**
98      * @throws java.lang.Exception
99      */
100     @After
101     public void tearDown() throws Exception {
102     }
103
104 /*      *//**
105      * Test method for {@link org.openecomp.policy.pap.xacml.rest.components.ActionPolicy#savePolicies()}.
106      */
107     @Test
108     public void testSavePolicies() {
109         ActionPolicy mockAction = Mockito.mock(component.getClass());
110
111         Map<String, String> successMap = new HashMap<>();
112         
113         successMap.put("success", "success");
114
115         try {
116             when(mockAction.savePolicies()).thenReturn(successMap);
117             successMap = mockAction.savePolicies();
118         } catch (Exception e) {
119             logger.error("Exception Occured"+e);
120         }
121         assertEquals(successMap.get("success"),"success");
122     }
123
124     /**
125      * Test method for {@link org.openecomp.policy.pap.xacml.rest.components.ActionPolicy#prepareToSave()}.
126      */
127     @Test
128     public void testPrepareToSave() {
129         logger.debug("test PrepareToSave Policy: enter");
130         boolean response = true;
131
132         try {
133             response = component.prepareToSave();
134         } catch (Exception e) {
135             logger.error("Exception Occured"+e);
136         }
137         assertTrue(response);
138
139     }
140
141 }