Add junit coverage to xacml-pdp
[policy/xacml-pdp.git] / main / src / test / java / org / onap / policy / pdpx / main / comm / XacmlPdpPapRegistrationTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.pdpx.main.comm;
22
23 import static org.mockito.Mockito.when;
24
25 import org.junit.Before;
26 import org.junit.Test;
27 import org.mockito.Mock;
28 import org.mockito.MockitoAnnotations;
29 import org.onap.policy.common.endpoints.event.comm.client.TopicSinkClient;
30 import org.onap.policy.common.endpoints.event.comm.client.TopicSinkClientException;
31 import org.onap.policy.models.pdp.concepts.PdpStatus;
32
33 public class XacmlPdpPapRegistrationTest {
34
35     @Mock
36     private TopicSinkClient client;
37
38     @Mock
39     private PdpStatus status;
40
41     private XacmlPdpPapRegistration reg;
42
43     /**
44      * Initializes objects, including the registration object.
45      */
46     @Before
47     public void setUp() {
48         MockitoAnnotations.initMocks(this);
49
50         when(client.send(status)).thenReturn(true);
51
52         reg = new XacmlPdpPapRegistration(client);
53     }
54
55     @Test
56     public void testPdpRegistration_SendOk() throws TopicSinkClientException {
57         reg.pdpRegistration(status);
58     }
59
60     @Test
61     public void testPdpRegistration_SendFail() throws TopicSinkClientException {
62         when(client.send(status)).thenReturn(false);
63         reg.pdpRegistration(status);
64     }
65
66     @Test
67     public void testPdpRegistration_SendEx() throws TopicSinkClientException {
68         when(client.send(status)).thenThrow(new IllegalStateException());
69         reg.pdpRegistration(status);
70     }
71 }