JUnit additions for XACML,REST,POLICY-SDK
[policy/engine.git] / POLICY-SDK-APP / src / test / java / org / onap / policy / controller / AutoPushControllerTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP Policy Engine
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.controller;
21
22 import static org.junit.Assert.assertEquals;
23 import static org.junit.Assert.fail;
24 import java.io.IOException;
25 import org.junit.Rule;
26 import org.junit.Test;
27 import org.junit.rules.ExpectedException;
28
29 public class AutoPushControllerTest {
30         private PolicyController controller = new PolicyController();;
31         private AutoPushController apController = new AutoPushController();
32         
33         @Rule
34         public ExpectedException thrown = ExpectedException.none();
35         
36         @Test
37         public void testAutoPushSetGet() throws IOException {
38                 // Get and set tests
39                 apController.setPolicyController(controller);
40                 assertEquals(apController.getPolicyController(), controller);
41         }
42         
43         @Test
44         public void testNegativeCase1() {
45                 try {
46                         apController.getPolicyGroupContainerData(null,  null);
47                 }
48                 catch (Exception ex) {
49                         fail("No exceptions expected, received: " + ex);
50                 }
51         }
52                 
53         @Test
54         public void testNegativeCase2() throws IOException {
55                 thrown.expect(NullPointerException.class);
56                 apController.pushPolicyToPDPGroup(null, null);
57         }
58
59         @Test
60         public void testNegativeCase3() throws IOException {
61                 thrown.expect(NullPointerException.class);
62                 apController.removePDPGroup(null, null);
63         }
64 }