9c5f71f556c955052a7d0049761dc20ce4e116b1
[policy/engine.git] / ONAP-PAP-REST / src / test / java / org / onap / policy / pap / xacml / rest / components / ClosedLoopPolicyTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP-PAP-REST
4  * ================================================================================
5  * Copyright (C) 2018 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 org.junit.Rule;
23 import org.junit.Test;
24 import org.junit.rules.ExpectedException;
25 import static org.junit.Assert.assertEquals;
26 import static org.junit.Assert.assertNull;
27 import static org.junit.Assert.fail;
28 import java.io.IOException;
29 import org.onap.policy.rest.adapter.PolicyRestAdapter;
30 import com.att.research.xacml.api.pap.PAPException;
31 import java.nio.charset.StandardCharsets;
32
33 public class ClosedLoopPolicyTest {
34         @Rule
35     public ExpectedException thrown = ExpectedException.none();
36
37         @Test
38         public void testConstructor1() {
39                 thrown.expect(NullPointerException.class);
40                 ClosedLoopPolicy policy = new ClosedLoopPolicy();
41                 policy.getCorrectPolicyDataObject();
42         }
43         
44         @Test
45         public void testConstructor2() {
46                 PolicyRestAdapter policyAdapter = new PolicyRestAdapter();
47                 ClosedLoopPolicy policy = new ClosedLoopPolicy(policyAdapter);
48                 assertNull(policy.getCorrectPolicyDataObject());
49         }
50         
51         @Test
52         public void testReadFile() throws IOException {
53                 thrown.expect(IOException.class);
54                 String read = ClosedLoopPolicy.readFile("/foo",  StandardCharsets.UTF_8);
55                 fail("Expecting an exception.");
56         }
57         
58         @Test
59         public void testPrepareToSave() throws PAPException {
60                 PolicyRestAdapter policyAdapter = new PolicyRestAdapter();
61                 ClosedLoopPolicy policy = new ClosedLoopPolicy(policyAdapter);
62                 policyAdapter.setHighestVersion(1);
63                 policyAdapter.setPolicyType("Config");
64                 policyAdapter.setNewFileName("foo.xml");
65                 policy.prepareToSave();
66                 assertEquals(policy.isPreparedToSave(), true);
67         }
68 }