4bb44e10f372ad50d99e9cbf16d367611080cc5b
[aaf/authz.git] / cadi / client / src / test / java / org / onap / aaf / cadi / http / test / JU_HAuthorizationHeader.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
32 import org.onap.aaf.cadi.CadiException;
33 import org.onap.aaf.cadi.config.SecurityInfoC;
34
35 import org.onap.aaf.cadi.http.HAuthorizationHeader;
36
37 public class JU_HAuthorizationHeader {
38
39     @Mock
40     SecurityInfoC<HttpURLConnection> siMock;
41
42     @Mock
43     HttpsURLConnection hucsMock;
44     
45     @Mock
46     HttpURLConnection hucMock;
47     
48     @Before
49     public void setup() {
50         MockitoAnnotations.initMocks(this);
51     }
52
53     @Test
54     public void test() throws IOException, CadiException {
55         HAuthorizationHeader header = new HAuthorizationHeader(siMock, null, null);
56         header.setSecurity(hucsMock);
57         header.setSecurity(hucMock);
58
59         header = new HAuthorizationHeader(null, null, null);
60         header.setSecurity(hucsMock);
61     }
62     
63     @Test(expected = CadiException.class)
64     public void throwsWhenDeniedTest() throws CadiException, IOException {
65         HAuthorizationHeader header = new HAuthorizationHeader(siMock, "string1", "string2") {
66             @Override public boolean isDenied() { return true; }
67         };
68         header.setSecurity(null);
69     }
70
71     @Test(expected = CadiException.class)
72     public void throwsTest() throws CadiException, IOException {
73         HAuthorizationHeader header = new HAuthorizationHeader(siMock, "string1", "string2") {
74             @Override public String headValue() throws IOException { throw new IOException(); }
75         };
76         header.setSecurity(null);
77     }
78
79 }