sonar fix
[aaf/authz.git] / cadi / aaf / src / test / java / org / onap / aaf / stillNeed / CadiTest.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 package org.onap.aaf.stillNeed;
22
23 import java.net.HttpURLConnection;
24 import java.net.URI;
25
26 import org.onap.aaf.cadi.Access;
27 import org.onap.aaf.cadi.PropAccess;
28 import org.onap.aaf.cadi.SecuritySetter;
29 import org.onap.aaf.cadi.client.Future;
30 import org.onap.aaf.cadi.config.Config;
31 import org.onap.aaf.cadi.config.SecurityInfoC;
32 import org.onap.aaf.cadi.http.HBasicAuthSS;
33 import org.onap.aaf.cadi.http.HClient;
34 import org.onap.aaf.cadi.http.HX509SS;
35
36 public class CadiTest {
37         public static void main(String args[]) {
38                 Access access = new PropAccess();
39                 try {
40                         SecurityInfoC<HttpURLConnection> si = SecurityInfoC.instance(access, HttpURLConnection.class);
41                         SecuritySetter<HttpURLConnection> ss;
42                         if(access.getProperty(Config.CADI_ALIAS,null)!=null) {
43                                 ss = new HX509SS(si);
44                         } else {
45                                 ss = new HBasicAuthSS(si);
46                         }
47                         HClient hclient = new HClient(ss,new URI("https://zlp08851.vci.att.com:8095"),3000);
48                         hclient.setMethod("OPTIONS");
49                         hclient.setPathInfo("/cadi/log/set/WARN");
50                         hclient.send();
51                         Future<String> future = hclient.futureReadString();
52                         if(future.get(5000)) {
53                                 System.out.printf("Success %s",future.value);
54                         } else {
55                                 System.out.printf("Error: %d-%s", future.code(),future.body());
56                         }
57                                 
58                 } catch (Exception e) {
59                         e.printStackTrace();
60                 }
61
62         }
63 }