re base code
[sdc.git] / ui-ci / src / main / java / org / openecomp / sdc / ci / tests / verificator / PropertiesAssignmentVerificator.java
index fa68f41..3eb33cb 100644 (file)
@@ -1,11 +1,12 @@
 package org.openecomp.sdc.ci.tests.verificator;
 
-import static org.testng.Assert.assertTrue;
-
+import com.aventstack.extentreports.Status;
+import org.openecomp.sdc.ci.tests.datatypes.DataTestIdEnum;
 import org.openecomp.sdc.ci.tests.execute.setup.SetupCDTest;
 import org.openecomp.sdc.ci.tests.utilities.GeneralUIUtils;
 
-import com.aventstack.extentreports.Status;
+import static org.testng.Assert.assertNull;
+import static org.testng.Assert.assertTrue;
 
 public class PropertiesAssignmentVerificator {
        
@@ -15,4 +16,25 @@ public class PropertiesAssignmentVerificator {
                String errMsg = String.format("Properties amount not as expected, expected: %s ,Actual: %s", propertiesCount, actualPropertiesCount);
                assertTrue(actualPropertiesCount == propertiesCount, errMsg);
        }
+
+       public static void validatePropertyValue(String expectedPropertyName, String expectedPropertyValue){
+               String actualPropertyValue = GeneralUIUtils.getWebElementByTestID(expectedPropertyName).getAttribute("value");
+               assertTrue(expectedPropertyValue.equals(actualPropertyValue), String.format("Validating the value of property/input %s. Expected: %s, Actual: %s ",  expectedPropertyName, expectedPropertyValue, actualPropertyValue));
+       }
+
+       public static void validatePropertyValueIsNull(String expectedPropertyName){
+               String actualPropertyValue = GeneralUIUtils.getWebElementByTestID(expectedPropertyName).getAttribute("value");
+               assertNull(actualPropertyValue, String.format("Validating the value of property/input %s. Expected: empty, Actual: %s ",  expectedPropertyName, actualPropertyValue));
+       }
+
+       public static void validateListPropertyValue(DataTestIdEnum.PropertiesAssignmentScreen prefix, String expectedPropertyName, String expectedPropertyValue, int index){
+               String listElement = prefix.getValue() + expectedPropertyName + "." + String.valueOf(index);
+               String actualPropertyValue = GeneralUIUtils.getWebElementByTestID(listElement).getAttribute("value");
+               assertTrue(expectedPropertyValue.equals(actualPropertyValue), String.format("Validating the %s list element value of property %s. Expected: %s, Actual: %s ",  index, expectedPropertyName, expectedPropertyValue, actualPropertyValue));
+       }
+
+       public static void validateBooleanPropertyValue(String expectedPropertyName, String expectedPropertyValue){
+               String actualPropertyValue = GeneralUIUtils.getSelectedElementFromDropDown(expectedPropertyName).getText();
+               assertTrue(expectedPropertyValue.equals(actualPropertyValue), String.format("Validating the value of property %s. Expected: %s, Actual: %s ",  expectedPropertyName, expectedPropertyValue, actualPropertyValue));
+       }
 }