TCA: Support for VES/A&AI enrichment
[dcaegen2/analytics/tca.git] / dcae-analytics-common / src / test / java / org / openecomp / dcae / apod / analytics / common / validation / GenericValidationResponseTest.java
index fc2a27b..190dce7 100644 (file)
-/*
- * ===============================LICENSE_START======================================
- *  dcae-analytics
- * ================================================================================
- *    Copyright © 2017 AT&T Intellectual Property. All rights reserved.
- * ================================================================================
- *  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.openecomp.dcae.apod.analytics.common.validation;
-
-import org.junit.Test;
-import org.openecomp.dcae.apod.analytics.common.BaseAnalyticsCommonUnitTest;
-
-import static org.hamcrest.CoreMatchers.is;
-import static org.junit.Assert.assertThat;
-
-/**
- * @author Rajiv Singla . Creation Date: 12/12/2016.
- */
-public class GenericValidationResponseTest extends BaseAnalyticsCommonUnitTest {
-
-
-    @Test
-    public void testHasErrorsWhenResponseHasErrors() throws Exception {
-
-        final String fieldName = "testField";
-        final String errorMessage = "Some error message";
-        final GenericValidationResponse<CDAPTestAppSettings> validationResponse =
-                createTestValidationResponse(fieldName, errorMessage);
-
-        validationResponse.addErrorMessage("testField", "Some error message");
-        assertThat("Validation Response must has errors", validationResponse.hasErrors(), is(true));
-    }
-
-    @Test
-    public void testHasErrorsWhenResponseDoesNotHaveErrors() throws Exception {
-        GenericValidationResponse<CDAPTestAppSettings> validationResponse = new
-                GenericValidationResponse<>();
-        assertThat("Validation Response must has errors", validationResponse.hasErrors(), is(false));
-    }
-
-    @Test
-    public void testGetFieldNamesWithError() throws Exception {
-
-        final String fieldName = "testField";
-        final String errorMessage = "Some error message";
-        final GenericValidationResponse<CDAPTestAppSettings> validationResponse =
-                createTestValidationResponse(fieldName, errorMessage);
-
-        assertThat("Validation Response must has errors", validationResponse.hasErrors(), is(true));
-        assertThat("Validation Field Name must match",
-                validationResponse.getFieldNamesWithError().iterator().next(), is(fieldName));
-    }
-
-    @Test
-    public void testGetErrorMessages() throws Exception {
-
-        final String fieldName = "testField";
-        final String errorMessage = "Some error message";
-        final GenericValidationResponse<CDAPTestAppSettings> validationResponse =
-                createTestValidationResponse(fieldName, errorMessage);
-
-        assertThat("Validation Response must has errors", validationResponse.hasErrors(), is(true));
-        assertThat("Validation Error Message must match",
-                validationResponse.getErrorMessages().iterator().next(), is(errorMessage));
-    }
-
-    @Test
-    public void getValidationResultsAsMap() throws Exception {
-        final String fieldName = "testField";
-        final String errorMessage = "Some error message";
-        final GenericValidationResponse<CDAPTestAppSettings> validationResponse =
-                createTestValidationResponse(fieldName, errorMessage);
-        assertThat("Validation Response must has errors", validationResponse.hasErrors(), is(true));
-        assertThat("Validation Field Name must match",
-                validationResponse.getValidationResultsAsMap().keySet().iterator().next(), is(fieldName));
-        assertThat("Validation Error Message must match",
-                validationResponse.getValidationResultsAsMap().values().iterator().next(), is(errorMessage));
-    }
-
-    @Test
-    public void getAllErrorMessage() throws Exception {
-        final String fieldName = "testField";
-        final String errorMessage = "Some error message";
-        final GenericValidationResponse<CDAPTestAppSettings> validationResponse =
-                createTestValidationResponse(fieldName, errorMessage);
-        final String allErrorMessage = validationResponse.getAllErrorMessage();
-        assertThat("All Error messages should match", allErrorMessage, is(errorMessage));
-    }
-
-    @Test
-    public void addErrorMessage() throws Exception {
-        final String fieldName = "testField";
-        final String errorMessage = "Some error message";
-        GenericValidationResponse<CDAPTestAppSettings> validationResponse = new
-                GenericValidationResponse<>();
-        validationResponse.addErrorMessage(fieldName, errorMessage);
-
-        assertThat("Validation Response must has errors", validationResponse.hasErrors(), is(true));
-        assertThat("Validation Field Name must match",
-                validationResponse.getValidationResultsAsMap().keySet().iterator().next(), is(fieldName));
-        assertThat("Validation Error Message must match",
-                validationResponse.getValidationResultsAsMap().values().iterator().next(), is(errorMessage));
-    }
-
-    private static GenericValidationResponse<CDAPTestAppSettings> createTestValidationResponse(
-            final String fieldName, final String errorMessage) {
-        GenericValidationResponse<CDAPTestAppSettings> validationResponse = new
-                GenericValidationResponse<>();
-        if (fieldName != null || errorMessage != null) {
-            validationResponse.addErrorMessage(fieldName, errorMessage);
-        }
-
-        return validationResponse;
-    }
-
-}
+/*\r
+ * ===============================LICENSE_START======================================\r
+ *  dcae-analytics\r
+ * ================================================================================\r
+ *    Copyright © 2017 AT&T Intellectual Property. All rights reserved.\r
+ * ================================================================================\r
+ *  Licensed under the Apache License, Version 2.0 (the "License");\r
+ *  you may not use this file except in compliance with the License.\r
+ *   You may obtain a copy of the License at\r
+ *\r
+ *          http://www.apache.org/licenses/LICENSE-2.0\r
+ *\r
+ *  Unless required by applicable law or agreed to in writing, software\r
+ *  distributed under the License is distributed on an "AS IS" BASIS,\r
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ *  See the License for the specific language governing permissions and\r
+ *  limitations under the License.\r
+ *  ============================LICENSE_END===========================================\r
+ */\r
+\r
+package org.openecomp.dcae.apod.analytics.common.validation;\r
+\r
+import org.junit.Test;\r
+import org.openecomp.dcae.apod.analytics.common.BaseAnalyticsCommonUnitTest;\r
+\r
+import static org.hamcrest.CoreMatchers.is;\r
+import static org.junit.Assert.assertThat;\r
+\r
+/**\r
+ * @author Rajiv Singla . Creation Date: 12/12/2016.\r
+ */\r
+public class GenericValidationResponseTest extends BaseAnalyticsCommonUnitTest {\r
+\r
+\r
+    @Test\r
+    public void testHasErrorsWhenResponseHasErrors() throws Exception {\r
+\r
+        final String fieldName = "testField";\r
+        final String errorMessage = "Some error message";\r
+        final GenericValidationResponse<CDAPTestAppSettings> validationResponse =\r
+                createTestValidationResponse(fieldName, errorMessage);\r
+\r
+        validationResponse.addErrorMessage("testField", "Some error message");\r
+        assertThat("Validation Response must has errors", validationResponse.hasErrors(), is(true));\r
+    }\r
+\r
+    @Test\r
+    public void testHasErrorsWhenResponseDoesNotHaveErrors() throws Exception {\r
+        GenericValidationResponse<CDAPTestAppSettings> validationResponse = new\r
+                GenericValidationResponse<>();\r
+        assertThat("Validation Response must has errors", validationResponse.hasErrors(), is(false));\r
+    }\r
+\r
+    @Test\r
+    public void testGetFieldNamesWithError() throws Exception {\r
+\r
+        final String fieldName = "testField";\r
+        final String errorMessage = "Some error message";\r
+        final GenericValidationResponse<CDAPTestAppSettings> validationResponse =\r
+                createTestValidationResponse(fieldName, errorMessage);\r
+\r
+        assertThat("Validation Response must has errors", validationResponse.hasErrors(), is(true));\r
+        assertThat("Validation Field Name must match",\r
+                validationResponse.getFieldNamesWithError().iterator().next(), is(fieldName));\r
+    }\r
+\r
+    @Test\r
+    public void testGetErrorMessages() throws Exception {\r
+\r
+        final String fieldName = "testField";\r
+        final String errorMessage = "Some error message";\r
+        final GenericValidationResponse<CDAPTestAppSettings> validationResponse =\r
+                createTestValidationResponse(fieldName, errorMessage);\r
+\r
+        assertThat("Validation Response must has errors", validationResponse.hasErrors(), is(true));\r
+        assertThat("Validation Error Message must match",\r
+                validationResponse.getErrorMessages().iterator().next(), is(errorMessage));\r
+    }\r
+\r
+    @Test\r
+    public void getValidationResultsAsMap() throws Exception {\r
+        final String fieldName = "testField";\r
+        final String errorMessage = "Some error message";\r
+        final GenericValidationResponse<CDAPTestAppSettings> validationResponse =\r
+                createTestValidationResponse(fieldName, errorMessage);\r
+        assertThat("Validation Response must has errors", validationResponse.hasErrors(), is(true));\r
+        assertThat("Validation Field Name must match",\r
+                validationResponse.getValidationResultsAsMap().keySet().iterator().next(), is(fieldName));\r
+        assertThat("Validation Error Message must match",\r
+                validationResponse.getValidationResultsAsMap().values().iterator().next(), is(errorMessage));\r
+    }\r
+\r
+    @Test\r
+    public void getAllErrorMessage() throws Exception {\r
+        final String fieldName = "testField";\r
+        final String errorMessage = "Some error message";\r
+        final GenericValidationResponse<CDAPTestAppSettings> validationResponse =\r
+                createTestValidationResponse(fieldName, errorMessage);\r
+        final String allErrorMessage = validationResponse.getAllErrorMessage();\r
+        assertThat("All Error messages should match", allErrorMessage, is(errorMessage));\r
+    }\r
+\r
+    @Test\r
+    public void addErrorMessage() throws Exception {\r
+        final String fieldName = "testField";\r
+        final String errorMessage = "Some error message";\r
+        GenericValidationResponse<CDAPTestAppSettings> validationResponse = new\r
+                GenericValidationResponse<>();\r
+        validationResponse.addErrorMessage(fieldName, errorMessage);\r
+\r
+        assertThat("Validation Response must has errors", validationResponse.hasErrors(), is(true));\r
+        assertThat("Validation Field Name must match",\r
+                validationResponse.getValidationResultsAsMap().keySet().iterator().next(), is(fieldName));\r
+        assertThat("Validation Error Message must match",\r
+                validationResponse.getValidationResultsAsMap().values().iterator().next(), is(errorMessage));\r
+    }\r
+\r
+    private static GenericValidationResponse<CDAPTestAppSettings> createTestValidationResponse(\r
+            final String fieldName, final String errorMessage) {\r
+        GenericValidationResponse<CDAPTestAppSettings> validationResponse = new\r
+                GenericValidationResponse<>();\r
+        if (fieldName != null || errorMessage != null) {\r
+            validationResponse.addErrorMessage(fieldName, errorMessage);\r
+        }\r
+\r
+        return validationResponse;\r
+    }\r
+\r
+}\r