add junit coverage 28/127228/1
authorLukasz Muszkieta <lukasz.muszkieta@nokia.com>
Mon, 21 Feb 2022 17:34:47 +0000 (18:34 +0100)
committerLukasz Muszkieta <lukasz.muszkieta@nokia.com>
Mon, 21 Feb 2022 17:34:47 +0000 (18:34 +0100)
Issue-ID: SO-3796
Signed-off-by: Lukasz Muszkieta <lukasz.muszkieta@nokia.com>
Change-Id: I018ecc1b3eb8a8252f8b88dca928d830abb4af14

so-optimization-clients/src/test/java/org/onap/so/client/sniro/SniroValidatorTest.java

index 8288d70..9ad22ce 100644 (file)
@@ -59,4 +59,92 @@ public class SniroValidatorTest {
             assertThat(e.getMessage()).contains("Sniro Managers synchronous response does not contain: request status");
         }
     }
+
+    @Test
+    public void validateSolution_success() throws BadResponseException {
+        SniroValidator.validateSolution("{statusMessage:key}");
+    }
+
+    @Test
+    public void validateSolution_emptyResponse() {
+        try {
+            SniroValidator.validateSolution("");
+        } catch (BadResponseException e) {
+            assertThat(e.getMessage()).contains("Sniro Managers asynchronous response is empty");
+        }
+    }
+
+    @Test
+    public void validateSolution_errorResponseWithoutMessage() {
+        try {
+            SniroValidator.validateSolution("{\"serviceException\":{\"text\":\"\"}}");
+        } catch (BadResponseException e) {
+            assertThat(e.getMessage()).contains(
+                    "Sniro Managers asynchronous response contains a service exception: error message not provided");
+        }
+    }
+
+    @Test
+    public void validateSolution_errorResponseWithErrorMessage() {
+        String message = "An error occurred";
+        try {
+            SniroValidator.validateSolution("{\"serviceException\":{\"text\":\"" + message + "\"}}");
+        } catch (BadResponseException e) {
+            assertThat(e.getMessage())
+                    .contains("Sniro Managers asynchronous response contains a service exception: " + message);
+        }
+    }
+
+    @Test
+    public void validateReleaseResponse_success() throws BadResponseException {
+        Map<String, Object> testMap = new LinkedHashMap<>();
+        testMap.put("status", "success");
+        new SniroValidator().validateReleaseResponse(testMap);
+    }
+
+    @Test
+    public void validateReleaseResponse_emptyResponse() {
+        try {
+            new SniroValidator().validateReleaseResponse(new LinkedHashMap<>());
+        } catch (BadResponseException e) {
+            assertThat(e.getMessage()).contains("Sniro Conductors response is empty");
+        }
+    }
+
+    @Test
+    public void validateReleaseResponse_errorResponseWithErrorMessage() {
+        String message = "An error occurred";
+        Map<String, Object> testMap = new LinkedHashMap<>();
+        testMap.put("status", "failed");
+        testMap.put("message", message);
+        try {
+            new SniroValidator().validateReleaseResponse(testMap);
+        } catch (BadResponseException e) {
+            assertThat(e.getMessage()).contains("Sniro Conductors synchronous response indicates failed: " + message);
+        }
+    }
+
+    @Test
+    public void validateReleaseResponse_errorResponseWithNoMessage() {
+        Map<String, Object> testMap = new LinkedHashMap<>();
+        testMap.put("status", "failed");
+        testMap.put("message", "");
+        try {
+            new SniroValidator().validateReleaseResponse(testMap);
+        } catch (BadResponseException e) {
+            assertThat(e.getMessage())
+                    .contains("Sniro Conductors synchronous response indicates failed: error message not provided");
+        }
+    }
+
+    @Test
+    public void validateReleaseResponse_responseWithoutStatus() {
+        Map<String, Object> testMap = new LinkedHashMap<>();
+        testMap.put("statusMessage", "");
+        try {
+            new SniroValidator().validateReleaseResponse(testMap);
+        } catch (BadResponseException e) {
+            assertThat(e.getMessage()).contains("Sniro Conductors synchronous response does not contain: status");
+        }
+    }
 }