Mass removal of all Tabs (Style Warnings)
[aaf/authz.git] / cadi / core / src / test / java / org / onap / aaf / cadi / taf / test / JU_HttpEpiTaf.java
index 93a2047..6952a04 100644 (file)
@@ -54,92 +54,92 @@ import org.onap.aaf.cadi.taf.TafResp.RESP;
 
 public class JU_HttpEpiTaf {
 
-       private PropAccess access;
-
-       @Mock private Locator<URI> locMock;
-       @Mock private TrustChecker trustCheckerMock;
-       @Mock private HttpServletRequest reqMock;
-       @Mock private HttpServletResponse respMock;
-       @Mock private HttpTaf tafMock;
-       @Mock private TafResp trespMock;
-       @Mock private Redirectable redirMock;
-
-       @Before
-       public void setup() throws URISyntaxException {
-               MockitoAnnotations.initMocks(this);
-
-               access = new PropAccess(new PrintStream(new ByteArrayOutputStream()), new String[0]);
-       }
-
-       @Test
-       public void test() throws Exception {
-               HttpEpiTaf taf;
-               try {
-                       taf = new HttpEpiTaf(access, locMock, trustCheckerMock);
-                       fail("Should've thrown an exception");
-               } catch (CadiException e) {
-                       assertThat(e.getMessage(), is("Need at least one HttpTaf implementation in constructor"));
-               }
-
-               taf = new HttpEpiTaf(access, locMock, trustCheckerMock, new NullTaf());
-               taf.validate(LifeForm.CBLF, reqMock, respMock);
-
-               // Coverage of tricorderScan
-               taf.validate(LifeForm.LFN, reqMock, respMock);
-               when(reqMock.getHeader("User-Agent")).thenReturn("Non-mozilla-header");
-               taf.validate(LifeForm.LFN, reqMock, respMock);
-               when(reqMock.getHeader("User-Agent")).thenReturn("Mozilla-header");
-               taf.validate(LifeForm.LFN, reqMock, respMock);
-
-               access.setLogLevel(Level.DEBUG);
-               taf.validate(LifeForm.CBLF, reqMock, respMock);
-
-               when(tafMock.validate(LifeForm.CBLF, reqMock, respMock)).thenReturn(trespMock);
-               when(trespMock.isAuthenticated()).thenReturn(RESP.TRY_ANOTHER_TAF);
-               taf = new HttpEpiTaf(access, locMock, trustCheckerMock, tafMock);
-               taf.validate(LifeForm.CBLF, reqMock, respMock);
-
-               when(trespMock.isAuthenticated()).thenReturn(RESP.IS_AUTHENTICATED);
-               taf.validate(LifeForm.CBLF, reqMock, respMock);
-
-               when(trespMock.isAuthenticated()).thenReturn(RESP.TRY_AUTHENTICATING);
-               taf.validate(LifeForm.CBLF, reqMock, respMock);
-
-               taf = new HttpEpiTaf(access, locMock, trustCheckerMock, tafMock, tafMock);
-               taf.validate(LifeForm.CBLF, reqMock, respMock);
-
-               when(tafMock.validate(LifeForm.CBLF, reqMock, respMock)).thenReturn(redirMock);
-               when(redirMock.isAuthenticated()).thenReturn(RESP.TRY_AUTHENTICATING);
-               taf.validate(LifeForm.CBLF, reqMock, respMock);
-
-               taf = new HttpEpiTaf(access, locMock, trustCheckerMock, tafMock, tafMock);
-               taf.validate(LifeForm.CBLF, reqMock, respMock);
-
-               taf = new HttpEpiTaf(access, locMock, trustCheckerMock, tafMock);
-               taf.validate(LifeForm.CBLF, reqMock, respMock);
-
-               taf = new HttpEpiTaf(access, locMock, null, tafMock);
-               when(redirMock.isAuthenticated()).thenReturn(RESP.IS_AUTHENTICATED);
-               try {
-                       taf.validate(LifeForm.CBLF, reqMock, respMock);
-                       fail("Should've thrown an exception");
-               } catch (Exception e) {
-               }
-
-               assertThat(taf.revalidate(null), is(false));
-               assertThat(taf.revalidate(null), is(false));
-
-               when(tafMock.revalidate(null, null)).thenReturn(Resp.NOT_MINE);
-               assertThat(taf.revalidate(null, null), is(Resp.NOT_MINE));
-               when(tafMock.revalidate(null, null)).thenReturn(Resp.REVALIDATED);
-               assertThat(taf.revalidate(null, null), is(Resp.REVALIDATED));
-
-               when(tafMock.revalidate(null, null)).thenReturn(Resp.NOT_MINE).thenReturn(Resp.NOT_MINE).thenReturn(Resp.REVALIDATED);
-               taf = new HttpEpiTaf(access, locMock, trustCheckerMock, tafMock, tafMock, tafMock);
-               assertThat(taf.revalidate(null, null), is(Resp.REVALIDATED));
-
-               taf.toString();
-
-       }
+    private PropAccess access;
+
+    @Mock private Locator<URI> locMock;
+    @Mock private TrustChecker trustCheckerMock;
+    @Mock private HttpServletRequest reqMock;
+    @Mock private HttpServletResponse respMock;
+    @Mock private HttpTaf tafMock;
+    @Mock private TafResp trespMock;
+    @Mock private Redirectable redirMock;
+
+    @Before
+    public void setup() throws URISyntaxException {
+        MockitoAnnotations.initMocks(this);
+
+        access = new PropAccess(new PrintStream(new ByteArrayOutputStream()), new String[0]);
+    }
+
+    @Test
+    public void test() throws Exception {
+        HttpEpiTaf taf;
+        try {
+            taf = new HttpEpiTaf(access, locMock, trustCheckerMock);
+            fail("Should've thrown an exception");
+        } catch (CadiException e) {
+            assertThat(e.getMessage(), is("Need at least one HttpTaf implementation in constructor"));
+        }
+
+        taf = new HttpEpiTaf(access, locMock, trustCheckerMock, new NullTaf());
+        taf.validate(LifeForm.CBLF, reqMock, respMock);
+
+        // Coverage of tricorderScan
+        taf.validate(LifeForm.LFN, reqMock, respMock);
+        when(reqMock.getHeader("User-Agent")).thenReturn("Non-mozilla-header");
+        taf.validate(LifeForm.LFN, reqMock, respMock);
+        when(reqMock.getHeader("User-Agent")).thenReturn("Mozilla-header");
+        taf.validate(LifeForm.LFN, reqMock, respMock);
+
+        access.setLogLevel(Level.DEBUG);
+        taf.validate(LifeForm.CBLF, reqMock, respMock);
+
+        when(tafMock.validate(LifeForm.CBLF, reqMock, respMock)).thenReturn(trespMock);
+        when(trespMock.isAuthenticated()).thenReturn(RESP.TRY_ANOTHER_TAF);
+        taf = new HttpEpiTaf(access, locMock, trustCheckerMock, tafMock);
+        taf.validate(LifeForm.CBLF, reqMock, respMock);
+
+        when(trespMock.isAuthenticated()).thenReturn(RESP.IS_AUTHENTICATED);
+        taf.validate(LifeForm.CBLF, reqMock, respMock);
+
+        when(trespMock.isAuthenticated()).thenReturn(RESP.TRY_AUTHENTICATING);
+        taf.validate(LifeForm.CBLF, reqMock, respMock);
+
+        taf = new HttpEpiTaf(access, locMock, trustCheckerMock, tafMock, tafMock);
+        taf.validate(LifeForm.CBLF, reqMock, respMock);
+
+        when(tafMock.validate(LifeForm.CBLF, reqMock, respMock)).thenReturn(redirMock);
+        when(redirMock.isAuthenticated()).thenReturn(RESP.TRY_AUTHENTICATING);
+        taf.validate(LifeForm.CBLF, reqMock, respMock);
+
+        taf = new HttpEpiTaf(access, locMock, trustCheckerMock, tafMock, tafMock);
+        taf.validate(LifeForm.CBLF, reqMock, respMock);
+
+        taf = new HttpEpiTaf(access, locMock, trustCheckerMock, tafMock);
+        taf.validate(LifeForm.CBLF, reqMock, respMock);
+
+        taf = new HttpEpiTaf(access, locMock, null, tafMock);
+        when(redirMock.isAuthenticated()).thenReturn(RESP.IS_AUTHENTICATED);
+        try {
+            taf.validate(LifeForm.CBLF, reqMock, respMock);
+            fail("Should've thrown an exception");
+        } catch (Exception e) {
+        }
+
+        assertThat(taf.revalidate(null), is(false));
+        assertThat(taf.revalidate(null), is(false));
+
+        when(tafMock.revalidate(null, null)).thenReturn(Resp.NOT_MINE);
+        assertThat(taf.revalidate(null, null), is(Resp.NOT_MINE));
+        when(tafMock.revalidate(null, null)).thenReturn(Resp.REVALIDATED);
+        assertThat(taf.revalidate(null, null), is(Resp.REVALIDATED));
+
+        when(tafMock.revalidate(null, null)).thenReturn(Resp.NOT_MINE).thenReturn(Resp.NOT_MINE).thenReturn(Resp.REVALIDATED);
+        taf = new HttpEpiTaf(access, locMock, trustCheckerMock, tafMock, tafMock, tafMock);
+        assertThat(taf.revalidate(null, null), is(Resp.REVALIDATED));
+
+        taf.toString();
+
+    }
 
 }