Mass removal of all Tabs (Style Warnings)
[aaf/authz.git] / cadi / client / src / test / java / org / onap / aaf / cadi / http / test / JU_HRcli.java
index 06055ad..ab6a39c 100644 (file)
@@ -44,78 +44,78 @@ import org.onap.aaf.cadi.http.HMangr;
 import org.onap.aaf.cadi.http.HRcli;
 
 public class JU_HRcli {
-       
-       @Mock
-       SecuritySetter<HttpURLConnection> ssMock;
-       
-       @Mock
-       Locator<URI> locMock;
-       
-       @Mock
-       Locator.Item itemMock;
-       
-       private HMangr hman;
-       private PropAccess access;
-       private static URI uri;
-       
-       private static final String uriString = "example.com";
-       
-       @Before
-       public void setup() throws LocatorException, URISyntaxException {
-               MockitoAnnotations.initMocks(this);
+    
+    @Mock
+    SecuritySetter<HttpURLConnection> ssMock;
+    
+    @Mock
+    Locator<URI> locMock;
+    
+    @Mock
+    Locator.Item itemMock;
+    
+    private HMangr hman;
+    private PropAccess access;
+    private static URI uri;
+    
+    private static final String uriString = "example.com";
+    
+    @Before
+    public void setup() throws LocatorException, URISyntaxException {
+        MockitoAnnotations.initMocks(this);
 
-               access = new PropAccess(new PrintStream(new ByteArrayOutputStream()), new String[0]);
-               hman = new HMangr(access, locMock);
-               uri = new URI(uriString);
+        access = new PropAccess(new PrintStream(new ByteArrayOutputStream()), new String[0]);
+        hman = new HMangr(access, locMock);
+        uri = new URI(uriString);
 
-               when(locMock.get(itemMock)).thenReturn(uri);
-       }
+        when(locMock.get(itemMock)).thenReturn(uri);
+    }
 
-       @Test(expected = CadiException.class)
-       public void publicInterfaceTest() throws URISyntaxException, LocatorException, CadiException {
-               HRcli hrcli = new HRcli(hman, itemMock, ssMock);
-               assertThat(hrcli.setManager(hman), is(hrcli));
-               assertThat(hrcli.toString(), is(uriString));
+    @Test(expected = CadiException.class)
+    public void publicInterfaceTest() throws URISyntaxException, LocatorException, CadiException {
+        HRcli hrcli = new HRcli(hman, itemMock, ssMock);
+        assertThat(hrcli.setManager(hman), is(hrcli));
+        assertThat(hrcli.toString(), is(uriString));
 
-               hrcli.setSecuritySetter(ssMock);
-               assertThat(hrcli.getSecuritySetter(), is(ssMock));
-               
-               // No throw
-               hrcli.invalidate();
-               // Throw
-               doThrow(CadiException.class).when(locMock).invalidate(itemMock);
-               hrcli.invalidate();
-       }
-       
-       @Test(expected = CadiException.class)
-       public void protectedInterfaceTest() throws CadiException, LocatorException {
-               HRcliStub hrcli = new HRcliStub(hman, uri, itemMock, ssMock);
-               HRcli clone = hrcli.clone(uri, ssMock);
-               assertThat(clone.toString(), is(hrcli.toString()));
-               
-               EClient<HttpURLConnection> eclient = hrcli.client();
-               assertThat(eclient, is(not(nullValue())));
+        hrcli.setSecuritySetter(ssMock);
+        assertThat(hrcli.getSecuritySetter(), is(ssMock));
+        
+        // No throw
+        hrcli.invalidate();
+        // Throw
+        doThrow(CadiException.class).when(locMock).invalidate(itemMock);
+        hrcli.invalidate();
+    }
+    
+    @Test(expected = CadiException.class)
+    public void protectedInterfaceTest() throws CadiException, LocatorException {
+        HRcliStub hrcli = new HRcliStub(hman, uri, itemMock, ssMock);
+        HRcli clone = hrcli.clone(uri, ssMock);
+        assertThat(clone.toString(), is(hrcli.toString()));
+        
+        EClient<HttpURLConnection> eclient = hrcli.client();
+        assertThat(eclient, is(not(nullValue())));
 
-               hrcli = new HRcliStub(hman, null, itemMock, ssMock);
-               when(locMock.best()).thenReturn(itemMock);
-               eclient = hrcli.client();
-               assertThat(eclient, is(not(nullValue())));
+        hrcli = new HRcliStub(hman, null, itemMock, ssMock);
+        when(locMock.best()).thenReturn(itemMock);
+        eclient = hrcli.client();
+        assertThat(eclient, is(not(nullValue())));
 
-               hrcli = new HRcliStub(hman, null, itemMock, ssMock);
-               when(locMock.best()).thenReturn(null);
-               eclient = hrcli.client();
-       }
-       
-       private class HRcliStub extends HRcli {
-               public HRcliStub(HMangr hman, URI uri, Item locItem, SecuritySetter<HttpURLConnection> secSet) {
-                       super(hman, uri, locItem, secSet);
-               }
-               public HRcli clone(URI uri, SecuritySetter<HttpURLConnection> ss) {
-                       return super.clone(uri, ss);
-               }
-               public EClient<HttpURLConnection> client() throws CadiException {
-                       return super.client();
-               }
-       }
+        hrcli = new HRcliStub(hman, null, itemMock, ssMock);
+        when(locMock.best()).thenReturn(null);
+        eclient = hrcli.client();
+    }
+    
+    private class HRcliStub extends HRcli {
+        public HRcliStub(HMangr hman, URI uri, Item locItem, SecuritySetter<HttpURLConnection> secSet) {
+            super(hman, uri, locItem, secSet);
+        }
+        public HRcli clone(URI uri, SecuritySetter<HttpURLConnection> ss) {
+            return super.clone(uri, ss);
+        }
+        public EClient<HttpURLConnection> client() throws CadiException {
+            return super.client();
+        }
+    }
 
 }