Mass removal of all Tabs (Style Warnings)
[aaf/authz.git] / auth / auth-certman / src / test / java / org / onap / aaf / auth / cm / test / CertmanTest.java
index a8f9934..90875da 100644 (file)
@@ -58,109 +58,109 @@ import junit.framework.Assert;
 
 public class CertmanTest {
 
-       private static HMangr hman;
-       private static AuthzEnv env;
-       private static HBasicAuthSS ss;
-       private static RosettaDF<CertificateRequest> reqDF;
-       private static RosettaDF<CertInfo> certDF;
+    private static HMangr hman;
+    private static AuthzEnv env;
+    private static HBasicAuthSS ss;
+    private static RosettaDF<CertificateRequest> reqDF;
+    private static RosettaDF<CertInfo> certDF;
 
-       @BeforeClass
-       public static void setUpBeforeClass() throws Exception {
-               env = new AuthzEnv();
-//             InputStream ris = env.classLoader().getResource("certman.props").openStream();
-//             try {
-//                     env.load(ris);
-//             } finally {
-//                     ris.close();
-//             }
+    @BeforeClass
+    public static void setUpBeforeClass() throws Exception {
+        env = new AuthzEnv();
+//        InputStream ris = env.classLoader().getResource("certman.props").openStream();
+//        try {
+//            env.load(ris);
+//        } finally {
+//            ris.close();
+//        }
 //
-//             Locator<URI> loc = new DNSLocator(env, "https", "aaf.it.att.com", "8150");
-//             for(Item item = loc.first(); item!=null; item=loc.next(item)) {
-//                     System.out.println(loc.get(item));
-//             }
-//             
-//             
-//             SecurityInfoC<HttpURLConnection> si = SecurityInfoC.instance(env, HttpURLConnection.class);
-//             ss = new HBasicAuthSS(si,"m12345@aaf.att.com", 
-//                             env.decrypt("enc:gvptdJyo0iKdVZw2rzMb0woxa7YKMdqLuhfQ4OQfZ8k",false));
-//                             env.decrypt("enc:jFfAnO3mOKb9Gzm2OFysslmXpbnyuAxuoNJK",false), si);
-//                                     SecuritySetter<HttpURLConnection> ss = new X509SS(si, "aaf");
-               
-//             hman = new HMangr(env,loc);
+//        Locator<URI> loc = new DNSLocator(env, "https", "aaf.it.att.com", "8150");
+//        for(Item item = loc.first(); item!=null; item=loc.next(item)) {
+//            System.out.println(loc.get(item));
+//        }
+//        
+//        
+//        SecurityInfoC<HttpURLConnection> si = SecurityInfoC.instance(env, HttpURLConnection.class);
+//        ss = new HBasicAuthSS(si,"m12345@aaf.att.com", 
+//                env.decrypt("enc:gvptdJyo0iKdVZw2rzMb0woxa7YKMdqLuhfQ4OQfZ8k",false));
+//                env.decrypt("enc:jFfAnO3mOKb9Gzm2OFysslmXpbnyuAxuoNJK",false), si);
+//                    SecuritySetter<HttpURLConnection> ss = new X509SS(si, "aaf");
+        
+//        hman = new HMangr(env,loc);
 //
-//             reqDF = env.newDataFactory(CertificateRequest.class);
-//             reqDF.out(TYPE.JSON);
-//             certDF = env.newDataFactory(CertInfo.class);
-       }
+//        reqDF = env.newDataFactory(CertificateRequest.class);
+//        reqDF.out(TYPE.JSON);
+//        certDF = env.newDataFactory(CertInfo.class);
+    }
 
-//     @AfterClass
-//     public static void tearDownAfterClass() throws Exception {
-//             hman.close();
-//     }
+//    @AfterClass
+//    public static void tearDownAfterClass() throws Exception {
+//        hman.close();
+//    }
 
-       @Before
-       public void setUp() throws Exception {
+    @Before
+    public void setUp() throws Exception {
 
-       }
+    }
 
-       @After
-       public void tearDown() throws Exception {
-       }
+    @After
+    public void tearDown() throws Exception {
+    }
 
-//     @Test
-//     public void testX500Name() throws Exception {
-//             
-//             for( InetAddress ia : InetAddress.getAllByName("aaf.dev.att.com")) {
-//                     System.out.printf("%s - %s\n", ia.getHostName(), ia.getHostAddress());
-//                     InetAddress ia1 = InetAddress.getByName(ia.getHostAddress());
-//                     System.out.printf("%s - %s\n", ia1.getHostName(), ia1.getHostAddress());
-//             }
-//             
-//             hman.best(ss, new Retryable<Void>() {
-//                     @Override
-//                     public Void code(Rcli<?> client) throws APIException, CadiException {
-//                             CertificateRequest cr = new CertificateRequest();
-//                             cr.setMechid("a12345@org.osaaf.org");
-//                             cr.setSponsor("something");
-//                             cr.getFqdns().add("mithrilcsp.sbc.com");
-//                             cr.getFqdns().add("zld01907.vci.att.com");
-//                             cr.getFqdns().add("aaftest.test.att.com");
-//                             
-//                             String path = "/cert/local"; // Local Test
-////                           String path = "/cert/aaf"; // Official CA
-//                             long end=0,start = System.nanoTime();
-//                             try {
-//                                     System.out.println(reqDF.newData().option(Data.PRETTY).load(cr).asString());
-//                                     Future<String> f = client.updateRespondString(path, reqDF, cr);
-//                                     if(f.get(10000)) {
-//                                             end = System.nanoTime();
-//                                             System.out.println(f.body());
-//                                             CertInfo capi = certDF.newData().in(Data.TYPE.JSON).load(f.body()).asObject();
-//                                             for(String c :capi.getCerts()) {
-//                                                     for( java.security.cert.Certificate x509 : Factory.toX509Certificate(c)) {
-//                                                             System.out.println(x509.toString());
-//                                                     }
-//                                             }
-//                                     } else {
-//                                             end = System.nanoTime();
-//                                             String msg = "Client returned " + f.code() + ": " + f.body();
-//                                             System.out.println(msg);
-//                                             Assert.fail(msg);
-//                                     }
-//                             } catch (CertificateException e) {
-//                                     throw new CadiException(e);
-//                             } finally {
-//                                     System.out.println(Chrono.millisFromNanos(start,end) + " ms");
-//                             }
-//                             return null;
-//                     }
-//             });
-//             
-//             
-//     }
+//    @Test
+//    public void testX500Name() throws Exception {
+//        
+//        for( InetAddress ia : InetAddress.getAllByName("aaf.dev.att.com")) {
+//            System.out.printf("%s - %s\n", ia.getHostName(), ia.getHostAddress());
+//            InetAddress ia1 = InetAddress.getByName(ia.getHostAddress());
+//            System.out.printf("%s - %s\n", ia1.getHostName(), ia1.getHostAddress());
+//        }
+//        
+//        hman.best(ss, new Retryable<Void>() {
+//            @Override
+//            public Void code(Rcli<?> client) throws APIException, CadiException {
+//                CertificateRequest cr = new CertificateRequest();
+//                cr.setMechid("a12345@org.osaaf.org");
+//                cr.setSponsor("something");
+//                cr.getFqdns().add("mithrilcsp.sbc.com");
+//                cr.getFqdns().add("zld01907.vci.att.com");
+//                cr.getFqdns().add("aaftest.test.att.com");
+//                
+//                String path = "/cert/local"; // Local Test
+////                String path = "/cert/aaf"; // Official CA
+//                long end=0,start = System.nanoTime();
+//                try {
+//                    System.out.println(reqDF.newData().option(Data.PRETTY).load(cr).asString());
+//                    Future<String> f = client.updateRespondString(path, reqDF, cr);
+//                    if(f.get(10000)) {
+//                        end = System.nanoTime();
+//                        System.out.println(f.body());
+//                        CertInfo capi = certDF.newData().in(Data.TYPE.JSON).load(f.body()).asObject();
+//                        for(String c :capi.getCerts()) {
+//                            for( java.security.cert.Certificate x509 : Factory.toX509Certificate(c)) {
+//                                System.out.println(x509.toString());
+//                            }
+//                        }
+//                    } else {
+//                        end = System.nanoTime();
+//                        String msg = "Client returned " + f.code() + ": " + f.body();
+//                        System.out.println(msg);
+//                        Assert.fail(msg);
+//                    }
+//                } catch (CertificateException e) {
+//                    throw new CadiException(e);
+//                } finally {
+//                    System.out.println(Chrono.millisFromNanos(start,end) + " ms");
+//                }
+//                return null;
+//            }
+//        });
+//        
+//        
+//    }
 //
-//     public X500Principal ephemeral() {
-//             return null;
-//     }
-       
+//    public X500Principal ephemeral() {
+//        return null;
+//    }
+    
 }