aboutsummaryrefslogtreecommitdiffstats
path: root/appc-event-listener
diff options
context:
space:
mode:
authorJakub Dudycz <jakub.dudycz@nokia.com>2018-03-19 10:05:43 +0100
committerTakamune Cho <tc012c@att.com>2018-03-21 19:15:21 +0000
commitf0d0ba473948c1af2c197d6a777872b653273200 (patch)
treecad0a53d665b7bc92860c358f874290c17e28265 /appc-event-listener
parent99caec109e4ca48cfc7f2e8d9c3f9c948d173801 (diff)
GenericProviderOperationsRequestFormatter junits
Improved code coverage. Change-Id: I8914eae1327c15339034aa0d6905b36d7a252171 Issue-ID: APPC-745 Signed-off-by: Jakub Dudycz <jakub.dudycz@nokia.com>
Diffstat (limited to 'appc-event-listener')
-rw-r--r--appc-event-listener/appc-event-listener-bundle/src/test/java/org/onap/appc/listener/LCM/operation/GenericProviderOperationsRequestFormatterTest.java99
1 files changed, 99 insertions, 0 deletions
diff --git a/appc-event-listener/appc-event-listener-bundle/src/test/java/org/onap/appc/listener/LCM/operation/GenericProviderOperationsRequestFormatterTest.java b/appc-event-listener/appc-event-listener-bundle/src/test/java/org/onap/appc/listener/LCM/operation/GenericProviderOperationsRequestFormatterTest.java
new file mode 100644
index 000000000..4eaa86a59
--- /dev/null
+++ b/appc-event-listener/appc-event-listener-bundle/src/test/java/org/onap/appc/listener/LCM/operation/GenericProviderOperationsRequestFormatterTest.java
@@ -0,0 +1,99 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * ONAP : APPC
+ * ================================================================================
+ * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
+ * ================================================================================
+ * Copyright (C) 2018 Nokia Solutions and Networks
+ * =============================================================================
+ * 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.
+ *
+ * ECOMP is a trademark and service mark of AT&T Intellectual Property.
+ * ============LICENSE_END=========================================================
+ */
+package org.onap.appc.listener.LCM.operation;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertNull;
+
+import com.fasterxml.jackson.databind.JsonNode;
+import java.net.MalformedURLException;
+import java.net.URL;
+import org.json.JSONObject;
+import org.junit.Before;
+import org.junit.Test;
+import org.onap.appc.exceptions.APPCException;
+import org.onap.appc.listener.LCM.model.InputBody;
+import org.onap.appc.listener.LCM.model.ResponseStatus;
+import org.onap.appc.listener.util.Mapper;
+
+public class GenericProviderOperationsRequestFormatterTest {
+
+ private static final String jsonOutputBodyStr =
+ "{\"output\":{\"common-header\":{\"timestamp\":\"2016-08-03T08:50:18.97Z\","
+ + "\"api-ver\":\"1\",\"flags\":{\"force\":\"TRUE\",\"ttl\":\"9900\"},\"sub-request-id\":\"1\","
+ + "\"request-id\":\"123\",\"originator-id\":\"1\"},\"locked\": \"test-locked\","
+ + "\"status\":{\"message\":\"test message\",\"code\":200}}}";
+
+ private static final String invalidJsonOutputBodyStr =
+ "{\"output\":{\"common-header\":{\"timestamp\":\"2016-08-03T08:50:18.97Z\","
+ + "\"api-ver\":\"1\",\"flags\":{\"force\":\"TRUE\",\"ttl\":\"9900\"},\"sub-request-id\":\"1\","
+ + "\"request-id\":\"123\",\"originator-id\":\"1\"}}}";
+
+ private GenericProviderOperationRequestFormatter requestFormatter;
+
+
+ @Before
+ public void setup() {
+ requestFormatter = new GenericProviderOperationRequestFormatter();
+ }
+
+ @Test
+ public void should_build_path() throws MalformedURLException {
+ String result = requestFormatter.buildPath(new URL("http://127.0.0.1/abc/def"), "test");
+ assertEquals("/abc/def:test", result);
+ }
+
+ @Test
+ public void should_build_request_json() {
+ InputBody inputBody = new InputBody();
+ inputBody.setPayload("\"key1\": \"value1\", \"key2\": \"value2\"");
+
+ assertEquals("{\"input\": {\"payload\":\"\\\"key1\\\": \\\"value1\\\", \\\"key2\\\": \\\"value2\\\"\"}}",
+ requestFormatter.buildRequest(inputBody));
+ }
+
+ @Test(expected = APPCException.class)
+ public void should_throw_when_invalid_json() throws APPCException {
+
+ JsonNode jsonNode = Mapper.toJsonNodeFromJsonString(invalidJsonOutputBodyStr);
+ requestFormatter.getResponseStatus(jsonNode);
+ }
+
+ @Test
+ public void should_extract_response_status() throws APPCException {
+
+ JsonNode jsonNode = Mapper.toJsonNodeFromJsonString(jsonOutputBodyStr);
+ ResponseStatus status = requestFormatter.getResponseStatus(jsonNode);
+
+ assertEquals("test message", status.getValue());
+ assertEquals(Integer.valueOf(200), status.getCode());
+ }
+
+ @Test
+ public void should_return_extract_locked_field() throws APPCException {
+
+ assertNull(requestFormatter.getLocked(new JSONObject(invalidJsonOutputBodyStr)));
+ assertEquals("test-locked", requestFormatter.getLocked(new JSONObject(jsonOutputBodyStr)));
+ }
+}