Sonar Fixes, Formatting
[aaf/authz.git] / auth / auth-oauth / src / test / java / org / onap / aaf / auth / oauth / mapper / JU_MapperIntrospect1_0Test.java
index d303755..d67ad9b 100644 (file)
@@ -7,9 +7,9 @@
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
- * 
+ *
  *      http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing, software
  * distributed under the License is distributed on an "AS IS" BASIS,
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -18,6 +18,7 @@
  * ============LICENSE_END====================================================
  *
  */
+
 package org.onap.aaf.auth.oauth.mapper;
 
 import static org.junit.Assert.assertEquals;
@@ -37,58 +38,58 @@ import org.onap.aaf.auth.layer.Result;
 import aafoauth.v2_0.Introspect;
 
 public class JU_MapperIntrospect1_0Test {
-       @Mock
-       private HttpServletRequest req;
+    @Mock
+    private HttpServletRequest req;
 
-       Data data;
+    Data data;
 
-       @Before
-       public void setup() {
-               initMocks(this);
-               data = new Data();
-       }
+    @Before
+    public void setup() {
+        initMocks(this);
+        data = new Data();
+    }
 
-       @Test
-       public void testIntrospect() {
-               data.type = 1;
+    @Test
+    public void testIntrospect() {
+        data.type = 1;
 
-               Result<Data> dataResult = Result.create(data, 0, "detail", "var");
+        Result<Data> dataResult = Result.create(data, 0, "detail", "var");
 
-               MapperIntrospect<Introspect> mapper = new MapperIntrospect1_0();
+        MapperIntrospect<Introspect> mapper = new MapperIntrospect1_0();
 
-               Result<Introspect> intro = mapper.introspect(dataResult);
+        Result<Introspect> intro = mapper.introspect(dataResult);
 
-               assertEquals(intro.value.getClientType(), "confidential");
-       }
+        assertEquals(intro.value.getClientType(), "confidential");
+    }
 
-       @Test
-       public void testIntrospectWithUnknowType() {
-               data.type = 5;
-               data.scopes = new HashSet<String>();
+    @Test
+    public void testIntrospectWithUnknowType() {
+        data.type = 5;
+        data.scopes = new HashSet<String>();
 
-               data.scopes.add(Scope.APPLICATION.toString());
-               data.scopes.add(Scope.HANDLER.toString());
+        data.scopes.add(Scope.APPLICATION.toString());
+        data.scopes.add(Scope.HANDLER.toString());
 
-               Result<Data> dataResult = Result.create(data, 0, "detail", "var");
+        Result<Data> dataResult = Result.create(data, 0, "detail", "var");
 
-               MapperIntrospect<Introspect> mapper = new MapperIntrospect1_0();
+        MapperIntrospect<Introspect> mapper = new MapperIntrospect1_0();
 
-               Result<Introspect> intro = mapper.introspect(dataResult);
+        Result<Introspect> intro = mapper.introspect(dataResult);
 
-               assertEquals(intro.value.getClientType(), "unknown");
-       }
+        assertEquals(intro.value.getClientType(), "unknown");
+    }
 
-       @Test
-       public void testIntrospectWithNotOk() {
-               data.type = 5;
+    @Test
+    public void testIntrospectWithNotOk() {
+        data.type = 5;
 
-               Result<Data> dataResult = Result.create(data, 1, "detail", "var");
+        Result<Data> dataResult = Result.create(data, 1, "detail", "var");
 
-               MapperIntrospect<Introspect> mapper = new MapperIntrospect1_0();
+        MapperIntrospect<Introspect> mapper = new MapperIntrospect1_0();
 
-               Result<Introspect> intro = mapper.introspect(dataResult);
+        Result<Introspect> intro = mapper.introspect(dataResult);
 
-               assertEquals(intro.value, null);
-       }
+        assertEquals(intro.value, null);
+    }
 
-}
\ No newline at end of file
+}