9179aa368fbfde58a173dfa9ef32d76c617e75a0
[aaf/authz.git] / cadi / client / src / test / java / org / onap / aaf / cadi / http / test / JU_HNoAuthSS.java
1 /**
2  * ============LICENSE_START====================================================
3  * org.onap.aaf
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  */
21
22 package org.onap.aaf.cadi.http.test;
23
24 import java.io.IOException;
25 import java.net.HttpURLConnection;
26
27 import javax.net.ssl.HttpsURLConnection;
28
29 import org.junit.*;
30 import org.mockito.*;
31 import org.onap.aaf.cadi.CadiException;
32 import org.onap.aaf.cadi.config.SecurityInfoC;
33 import org.onap.aaf.cadi.http.HNoAuthSS;
34
35 public class JU_HNoAuthSS {
36         
37         @Mock
38         SecurityInfoC<HttpURLConnection> siMock;
39         
40         @Mock
41         HttpURLConnection httpMock;
42
43         @Mock
44         HttpsURLConnection httpsMock;
45         
46         @Before
47         public void setup() {
48                 MockitoAnnotations.initMocks(this);
49         }
50         
51         @Test
52         public void test() throws IOException, CadiException {
53                 HNoAuthSS noAuth = new HNoAuthSS(null);
54                 noAuth.setSecurity(httpMock);
55                 noAuth = new HNoAuthSS(siMock);
56                 noAuth.setSecurity(httpMock);
57                 noAuth.setSecurity(httpsMock);
58         }
59
60 }