Fix sonars from dependency upgrade
[policy/xacml-pdp.git] / main / src / test / java / org / onap / policy / pdpx / main / comm / XacmlPdpPapRegistrationTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * Copyright (C) 2019, 2021 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.assertj.core.api.Assertions.assertThatCode;
24 import static org.mockito.Mockito.when;
25
26 import org.junit.Before;
27 import org.junit.Test;
28 import org.junit.runner.RunWith;
29 import org.mockito.Mock;
30 import org.mockito.junit.MockitoJUnitRunner;
31 import org.onap.policy.common.endpoints.event.comm.client.TopicSinkClient;
32 import org.onap.policy.common.endpoints.event.comm.client.TopicSinkClientException;
33 import org.onap.policy.models.pdp.concepts.PdpStatus;
34
35 @RunWith(MockitoJUnitRunner.class)
36 public class XacmlPdpPapRegistrationTest {
37
38     @Mock
39     private TopicSinkClient client;
40
41     @Mock
42     private PdpStatus status;
43
44     private XacmlPdpPapRegistration reg;
45
46     /**
47      * Initializes objects, including the registration object.
48      */
49     @Before
50     public void setUp() {
51         when(client.send(status)).thenReturn(true);
52
53         reg = new XacmlPdpPapRegistration(client);
54     }
55
56     @Test
57     public void testPdpRegistration_SendOk() throws TopicSinkClientException {
58         assertThatCode(() ->
59             reg.pdpRegistration(status)
60         ).doesNotThrowAnyException();
61     }
62
63     @Test
64     public void testPdpRegistration_SendFail() throws TopicSinkClientException {
65         when(client.send(status)).thenReturn(false);
66         assertThatCode(() ->
67             reg.pdpRegistration(status)
68         ).doesNotThrowAnyException();
69     }
70
71     @Test
72     public void testPdpRegistration_SendEx() throws TopicSinkClientException {
73         when(client.send(status)).thenThrow(new IllegalStateException());
74         assertThatCode(() ->
75             reg.pdpRegistration(status)
76         ).doesNotThrowAnyException();
77     }
78 }