Mass add newline package (Style Warnings)
[aaf/authz.git] / auth / auth-cass / src / test / java / org / onap / aaf / auth / direct / test / JU_DirectCertIdentity.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.direct.test;
24
25 import static org.junit.Assert.*;
26
27 import java.security.Principal;
28 import java.security.cert.CertificateException;
29 import java.security.cert.X509Certificate;
30
31 import javax.servlet.http.HttpServletRequest;
32
33 import org.junit.Before;
34 import org.junit.Test;
35 import org.junit.runner.RunWith;
36 import org.mockito.Mock;
37 import org.onap.aaf.auth.dao.cached.CachedCertDAO;
38 import org.onap.aaf.auth.direct.DirectCertIdentity;
39 import org.powermock.modules.junit4.PowerMockRunner;
40
41 @RunWith(PowerMockRunner.class)
42 public class JU_DirectCertIdentity {
43     
44     public DirectCertIdentity directCertIdentity;
45     
46     @Before
47     public void setUp(){
48         directCertIdentity = new DirectCertIdentity();
49     }
50
51
52     @Mock
53     HttpServletRequest req;
54     X509Certificate cert;
55     byte[] _certBytes;
56     
57     @Test
58     public void testidentity(){
59         
60         try {
61         Principal p = directCertIdentity.identity(req, cert, _certBytes);
62         assertEquals(( (p) == null),true);
63             
64         } catch (CertificateException e) {
65             // TODO Auto-generated catch block
66             e.printStackTrace();
67         }
68         //assertTrue(true);
69         
70     }
71
72 }