Code formatting of configuration framework
[sdc.git] / common / onap-common-configuration-management / onap-configuration-management-core / src / test / java / org / onap / config / test / CliFallbackAndLookupTest.java
@@ -1,5 +1,28 @@
+/*
+ * Copyright © 2016-2018 European Support Limited
+ *
+ * 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.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
 package org.onap.config.test;
 
+import java.io.IOException;
+import java.lang.management.ManagementFactory;
+import java.util.HashMap;
+import java.util.Map;
+import javax.management.JMX;
+import javax.management.MBeanServerConnection;
+import javax.management.ObjectName;
 import org.junit.After;
 import org.junit.Assert;
 import org.junit.Before;
@@ -9,15 +32,6 @@ import org.onap.config.api.ConfigurationManager;
 import org.onap.config.util.ConfigTestConstant;
 import org.onap.config.util.TestUtil;
 
-import javax.management.JMX;
-import javax.management.MBeanServerConnection;
-import javax.management.ObjectName;
-import java.io.IOException;
-import java.lang.management.ManagementFactory;
-import java.util.HashMap;
-import java.util.Map;
-
-
 
 /**
  * Created by sheetalm on 10/18/2016.
@@ -25,10 +39,10 @@ import java.util.Map;
  * 21 - Verify the CLI fetches only the current value unless the fallback option is specified
  * 23 - Fetch value using CLI for a key with underlying resource
  */
-public class CLIFallbackAndLookupTest {
+public class CliFallbackAndLookupTest {
 
-    public final static String NAMESPACE = "CLIFallback";
-    public final static String TENANT = "OPENECOMP";
+    private static final String NAMESPACE = "CLIFallback";
+    private static final String TENANT = "OPENECOMP";
 
     @Before
     public void setUp() throws IOException {
@@ -37,7 +51,7 @@ public class CLIFallbackAndLookupTest {
     }
 
     @Test
-    public void testCLIFallbackAndLookup() throws Exception{
+    public void testCliFallbackAndLookup() throws Exception {
 
         //Verify without fallback
         Map<String, Object> input = new HashMap<>();
@@ -50,19 +64,19 @@ public class CLIFallbackAndLookupTest {
         ObjectName mbeanName = new ObjectName(Constants.MBEAN_NAME);
         ConfigurationManager conf = JMX.newMBeanProxy(mbsc, mbeanName, ConfigurationManager.class, true);
         String maxSizeWithNoFallback = conf.getConfigurationValue(input);
-        Assert.assertEquals("",maxSizeWithNoFallback);
+        Assert.assertEquals("", maxSizeWithNoFallback);
 
         //Verify underlying resource without lookup switch
         input.put("key", ConfigTestConstant.ARTIFACT_JSON_SCHEMA);
         String jsonSchema = conf.getConfigurationValue(input);
-        System.out.println("jsonSchema=="+jsonSchema);
-        Assert.assertEquals("@"+System.getProperty("user.home")+"/TestResources/GeneratorsList.json" , jsonSchema);
+        System.out.println("jsonSchema==" + jsonSchema);
+        Assert.assertEquals("@" + System.getProperty("user.home") + "/TestResources/GeneratorsList.json", jsonSchema);
 
         //Verify underlying resource with lookup switch
         input.put("externalLookup", true);
         jsonSchema = conf.getConfigurationValue(input);
-        System.out.println("jsonSchema=="+jsonSchema);
-        Assert.assertEquals("{name:\"SCM\"}" , jsonSchema);
+        System.out.println("jsonSchema==" + jsonSchema);
+        Assert.assertEquals("{name:\"SCM\"}", jsonSchema);
 
         //Verify with fallback
         Map<String, Object> fallbackInput = new HashMap<>();
@@ -73,11 +87,11 @@ public class CLIFallbackAndLookupTest {
         fallbackInput.put("key", ConfigTestConstant.ARTIFACT_MAXSIZE);
 
         String maxSizeWithFallback = conf.getConfigurationValue(fallbackInput);
-        Assert.assertEquals("1024",maxSizeWithFallback);
+        Assert.assertEquals("1024", maxSizeWithFallback);
     }
 
     @After
     public void tearDown() throws Exception {
-      TestUtil.cleanUp();
+        TestUtil.cleanUp();
     }
 }