Unit test code for datalake seed code 83/85283/1
authorRama-Huawei <rama.subba.reddy.s@huawei.com>
Mon, 15 Apr 2019 05:41:05 +0000 (11:11 +0530)
committerRama-Huawei <rama.subba.reddy.s@huawei.com>
Mon, 15 Apr 2019 05:43:08 +0000 (11:13 +0530)
Increased the config module code coverage to 100%

Issue-ID: DCAEGEN2-1309

Change-Id: Ie42be837689685bf5f1023866f7552a62f3e58a9
Signed-off-by: Rama-Huawei <rama.subba.reddy.s@huawei.com>
components/datalake-handler/feeder/src/test/java/org/onap/datalake/feeder/config/ApplicationConfigurationTest.java

index 02db5a2..3f1f37c 100644 (file)
@@ -1,33 +1,29 @@
 /*
-* ============LICENSE_START=======================================================
-* ONAP : DATALAKE
-* ================================================================================
-* Copyright 2019 China Mobile
-*=================================================================================
-* 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.
-* ============LICENSE_END=========================================================
-*/
+ * ============LICENSE_START=======================================================
+ * ONAP : DATALAKE
+ * ================================================================================
+ * Copyright 2019 China Mobile
+ *=================================================================================
+ * 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.
+ * ============LICENSE_END=========================================================
+ */
 
 package org.onap.datalake.feeder.config;
 
 import org.junit.Test;
 import org.junit.runner.RunWith;
-import org.onap.datalake.feeder.Application;
 import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.boot.test.context.ConfigFileApplicationContextInitializer;
 import org.springframework.boot.test.context.SpringBootTest;
-import org.springframework.test.context.ActiveProfiles;
-import org.springframework.test.context.ContextConfiguration;
 import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
 
 import static org.junit.Assert.assertNotNull;
@@ -35,9 +31,8 @@ import static org.junit.Assert.assertTrue;
 
 /**
  * test ApplicationConfiguration
- * 
- * @author Guobiao Mo
  *
+ * @author Guobiao Mo
  */
 //@RunWith(SpringRunner.class)
 //@SpringBootTest
@@ -51,19 +46,20 @@ import static org.junit.Assert.assertTrue;
 //@ActiveProfiles("test")
 public class ApplicationConfigurationTest {
 
-       @Autowired
-       private ApplicationConfiguration config;
+    @Autowired
+    private ApplicationConfiguration config;
 
-       @Test
-       public void readConfig() {
+    @Test
+    public void readConfig() {
 
-               assertNotNull(config.getDmaapZookeeperHostPort());
-               assertNotNull(config.getDmaapKafkaHostPort());
-               assertNotNull(config.getDmaapKafkaGroup());
-               assertTrue(config.getDmaapKafkaTimeout() > 0L);
-               assertTrue(config.getDmaapCheckNewTopicIntervalInSec() > 0);
+        assertNotNull(config.getDmaapZookeeperHostPort());
+        assertNotNull(config.getDmaapKafkaHostPort());
+        assertNotNull(config.getDmaapKafkaGroup());
+        assertTrue(config.getDmaapKafkaTimeout() > 0L);
+        assertTrue(config.getDmaapCheckNewTopicIntervalInSec() > 0);
 
-               assertTrue(config.getKafkaConsumerCount() > 0);
-       }
+        assertTrue(config.getKafkaConsumerCount() > 0);
+        assertNotNull(config.isAsync());
+    }
 
 }