test coverage 49/70949/2
authortalio <tali.orenbach@amdocs.com>
Mon, 22 Oct 2018 13:51:53 +0000 (16:51 +0300)
committertalio <tali.orenbach@amdocs.com>
Mon, 22 Oct 2018 14:27:37 +0000 (17:27 +0300)
add unit tests for ResourceBaseValidator

Change-Id: Ib81a2f51d935156597eb055028d7e6da6e8d5834
Issue-ID: SDC-1864
Signed-off-by: talio <tali.orenbach@amdocs.com>
openecomp-be/lib/openecomp-sdc-validation-lib/openecomp-sdc-validation-sdk/pom.xml
openecomp-be/lib/openecomp-sdc-validation-lib/openecomp-sdc-validation-sdk/src/main/java/org/openecomp/sdc/validation/base/ResourceBaseValidator.java
openecomp-be/lib/openecomp-sdc-validation-lib/openecomp-sdc-validation-sdk/src/main/java/org/openecomp/sdc/validation/type/HeatResourceValidationContext.java
openecomp-be/lib/openecomp-sdc-validation-lib/openecomp-sdc-validation-sdk/src/main/java/org/openecomp/sdc/validation/type/NamingConventionValidationContext.java
openecomp-be/lib/openecomp-sdc-validation-lib/openecomp-sdc-validation-sdk/src/test/java/org/openecomp/sdc/validation/base/ResourceBaseValidatorTest.java

index c0d0d1f..08fc684 100644 (file)
             <artifactId>commons-io</artifactId>
             <version>${commons.io.version}</version>
         </dependency>
+        <dependency>
+            <groupId>org.projectlombok</groupId>
+            <artifactId>lombok</artifactId>
+        </dependency>
     </dependencies>
 
 
index 1972f6e..ba23c8b 100644 (file)
@@ -52,6 +52,10 @@ public class ResourceBaseValidator implements Validator {
   private static final ErrorMessageCode ERROR_CODE_RBV_1 = new ErrorMessageCode("RBV1");
   private static final ErrorMessageCode ERROR_CODE_RBV_2 = new ErrorMessageCode("RBV2");
 
+  Map<String, ImplementationConfiguration> getResourceTypeToImpl() {
+    return MapUtils.unmodifiableMap(this.resourceTypeToImpl);
+  }
+
 @Override
   public void init(Map<String, Object> properties) {
     if (MapUtils.isEmpty(properties)) {
index 6067876..97703b1 100644 (file)
@@ -1,3 +1,18 @@
+/*
+ * Copyright © 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.openecomp.sdc.validation.type;
 
 import org.openecomp.sdc.heat.datatypes.model.HeatOrchestrationTemplate;
@@ -5,10 +20,14 @@ import org.openecomp.sdc.validation.ValidationContext;
 
 import java.util.List;
 import java.util.Map;
+import lombok.Getter;
+import lombok.EqualsAndHashCode;
 
 /**
  * Created by TALIO on 2/23/2017.
  */
+@Getter
+@EqualsAndHashCode
 public class HeatResourceValidationContext implements ValidationContext {
 
   private HeatOrchestrationTemplate heatOrchestrationTemplate;
@@ -26,19 +45,6 @@ public class HeatResourceValidationContext implements ValidationContext {
 
     this.heatOrchestrationTemplate = heatOrchestrationTemplate;
     this.fileLevelResourceDependencies = fileLevelResourceDependencies;
-//    this.zipLevelResourceDependencies = zipLevelResourceDependencies;
     this.envFileName = envFileName;
   }
-
-  public HeatOrchestrationTemplate getHeatOrchestrationTemplate() {
-    return heatOrchestrationTemplate;
-  }
-
-  public Map<String, Map<String, Map<String, List<String>>>> getFileLevelResourceDependencies() {
-    return fileLevelResourceDependencies;
-  }
-
-  public String getEnvFileName() {
-    return envFileName;
-  }
 }
index 273cded..25b846e 100644 (file)
@@ -1,11 +1,31 @@
+/*
+ * Copyright © 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.openecomp.sdc.validation.type;
 
 import org.openecomp.sdc.heat.datatypes.model.HeatOrchestrationTemplate;
 import org.openecomp.sdc.validation.ValidationContext;
 
+import lombok.Getter;
+import lombok.EqualsAndHashCode;
+
 /**
  * Created by TALIO on 2/23/2017.
  */
+@Getter
+@EqualsAndHashCode
 public class NamingConventionValidationContext implements ValidationContext {
 
   private HeatOrchestrationTemplate heatOrchestrationTemplate;
@@ -17,12 +37,4 @@ public class NamingConventionValidationContext implements ValidationContext {
     this.heatOrchestrationTemplate = heatOrchestrationTemplate;
     this.envFileName = envFileName;
   }
-
-  public HeatOrchestrationTemplate getHeatOrchestrationTemplate() {
-    return heatOrchestrationTemplate;
-  }
-
-  public String getEnvFileName() {
-    return envFileName;
-  }
 }
index e2d685d..ec39ead 100644 (file)
@@ -1,19 +1,39 @@
+/*
+ * Copyright © 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.openecomp.sdc.validation.base;
 
+import org.apache.commons.collections4.MapUtils;
 import org.openecomp.core.validation.types.MessageContainer;
+import org.openecomp.sdc.datatypes.configuration.ImplementationConfiguration;
+import org.openecomp.sdc.validation.type.ConfigConstants;
 import org.openecomp.sdc.validation.util.ValidationTestUtil;
 import org.testng.Assert;
 import org.testng.annotations.Test;
 
+import java.util.Collections;
+import java.util.HashMap;
 import java.util.Map;
 
 @Test
 public class ResourceBaseValidatorTest {
-
-ResourceBaseValidator resourceBaseValidator=new ResourceBaseValidator();
+private String testValidator = "testValidator";
 
   @Test
   public void testInvalidResourceType(){
+    ResourceBaseValidator resourceBaseValidator = new ResourceBaseValidator();
     Map<String, MessageContainer> messages = ValidationTestUtil.testValidator(
         resourceBaseValidator, "/InvalidResourceType");
     Assert.assertEquals(messages.get("first.yaml").getErrorMessageList().get(0).getMessage(),
@@ -23,6 +43,7 @@ ResourceBaseValidator resourceBaseValidator=new ResourceBaseValidator();
 
   @Test
   public void testInvalidHeatStructure(){
+    ResourceBaseValidator resourceBaseValidator = new ResourceBaseValidator();
     Map<String, MessageContainer> messages = ValidationTestUtil.testValidator(resourceBaseValidator,
         "/InvalidHeatStructure");
     Assert.assertEquals(messages.get("first.yaml").getErrorMessageList().get(0).getMessage(),
@@ -34,4 +55,60 @@ ResourceBaseValidator resourceBaseValidator=new ResourceBaseValidator();
         "    ^\n" +
         "]");
   }
+
+  @Test
+  public void testInitWithEmptyPropertiesMap() {
+    ResourceBaseValidator resourceBaseValidator = new ResourceBaseValidator();
+    Map<String, Object> properties = new HashMap<>();
+    resourceBaseValidator.init(properties);
+
+    Assert.assertTrue(MapUtils.isEmpty(resourceBaseValidator.getResourceTypeToImpl()));
+  }
+
+  @Test
+  public void testInitPropertiesMap() {
+    ResourceBaseValidator resourceBaseValidator = new ResourceBaseValidator();
+    initProperties(resourceBaseValidator, getValidImplementationConfiguration());
+
+    Map<String, ImplementationConfiguration> resourceTypeToImpl =
+        resourceBaseValidator.getResourceTypeToImpl();
+    Assert.assertTrue(MapUtils.isNotEmpty(resourceTypeToImpl));
+    Assert.assertTrue(resourceTypeToImpl.containsKey(testValidator));
+  }
+
+  @Test
+  public void testInitPropertiesWithString() {
+    ResourceBaseValidator resourceBaseValidator = new ResourceBaseValidator();
+    Map<String, Object> properties = new HashMap<>();
+    properties.put(testValidator, "invalidValue");
+
+    resourceBaseValidator.init(properties);
+
+    Assert.assertTrue(MapUtils.isEmpty(resourceBaseValidator.getResourceTypeToImpl()));
+  }
+
+  @Test
+  public void testInitPropertiesWithoutImplClass() {
+    ResourceBaseValidator resourceBaseValidator = new ResourceBaseValidator();
+    initProperties(resourceBaseValidator, new HashMap<>());
+
+    Assert.assertTrue(MapUtils.isEmpty(resourceBaseValidator.getResourceTypeToImpl()));
+  }
+
+  public Map<String, Object> getValidImplementationConfiguration() {
+    Map<String, Object> implConfiguration = new HashMap<>();
+    implConfiguration.put(
+        ConfigConstants.Impl_Class, "org.openecomp.sdc.validation.impl.validators.ForbiddenResourceGuideLineValidator");
+    implConfiguration.put(ConfigConstants.Enable, true);
+
+    return implConfiguration;
+  }
+
+  private void initProperties(ResourceBaseValidator resourceBaseValidator,
+                              Map<String, Object> implementationConfiguration) {
+    Map<String, Object> properties =
+        Collections.singletonMap(testValidator, implementationConfiguration);
+
+    resourceBaseValidator.init(properties);
+  }
 }