Sonar Fixes, Formatting
[aaf/authz.git] / auth / auth-certman / src / test / java / org / onap / aaf / auth / cm / api / JU_API_Cert.java
1 /*******************************************************************************
2  * ============LICENSE_START====================================================
3  * * org.onap.aaf
4  * * ===========================================================================
5  * * Copyright © 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  * *
21  ******************************************************************************/
22
23 package org.onap.aaf.auth.cm.api;
24
25 import static org.junit.Assert.*;
26 import static org.mockito.Mockito.mock;
27
28 import javax.servlet.http.HttpServletRequest;
29 import javax.servlet.http.HttpServletResponse;
30
31 import org.junit.BeforeClass;
32 import org.junit.Rule;
33 import org.junit.Test;
34 import org.junit.rules.ExpectedException;
35 import org.junit.runner.RunWith;
36 import org.mockito.Mock;
37 import org.mockito.runners.MockitoJUnitRunner;
38 import org.onap.aaf.auth.cm.AAF_CM;
39 import org.onap.aaf.auth.cm.api.API_Cert;
40 import org.onap.aaf.auth.env.AuthzTrans;
41 ;
42
43 @RunWith(MockitoJUnitRunner.class)
44 public class JU_API_Cert {
45
46     @Mock
47     private static API_Cert api;
48
49     @Mock
50     private static AAF_CM certManApi;
51
52     private static AAF_CM noMockAPI;
53     private static API_Cert api_1;
54
55     private static HttpServletRequest req;
56     private static HttpServletResponse res;
57
58     @BeforeClass
59     public static void setUp() {
60         AuthzTrans trans = mock(AuthzTrans.class);
61         req = mock(HttpServletRequest.class);
62         res = mock(HttpServletResponse.class);
63         trans.setProperty("testTag", "UserValue");
64         trans.set(req,res);
65     }
66
67     @Rule
68     public ExpectedException thrown= ExpectedException.none();
69
70     @Test
71     public void init_bothValued() {
72         try {
73             api.init(certManApi);
74         } catch (Exception e) {
75             //thrown.expect(NullPointerException.class);
76             e.printStackTrace();
77         }
78     }
79
80     @Test
81     public void init_Null_() {
82         try {
83             api.init(null);
84         } catch (Exception e) {
85             //thrown.expect(Exception.class);
86             e.printStackTrace();
87         }
88     }
89
90     @Test
91     public void init_NMC_Null() {
92         try {
93             api_1.init(null);
94         } catch (Exception e) {
95             //thrown.expect(NullPointerException.class);
96             e.printStackTrace();
97         }
98     }
99
100     @Test
101     public void init_NMC() {
102         try {
103             api_1.init(noMockAPI);
104         } catch (Exception e) {
105             //thrown.expect(NullPointerException.class);
106             e.printStackTrace();
107         }
108     }
109 }