summaryrefslogtreecommitdiffstats
path: root/appc-directed-graph/appc-dgraph/provider/src/test/java/org/onap/appc/dg/TestDownloadIsbcConfig.java
diff options
context:
space:
mode:
Diffstat (limited to 'appc-directed-graph/appc-dgraph/provider/src/test/java/org/onap/appc/dg/TestDownloadIsbcConfig.java')
-rw-r--r--appc-directed-graph/appc-dgraph/provider/src/test/java/org/onap/appc/dg/TestDownloadIsbcConfig.java168
1 files changed, 86 insertions, 82 deletions
diff --git a/appc-directed-graph/appc-dgraph/provider/src/test/java/org/onap/appc/dg/TestDownloadIsbcConfig.java b/appc-directed-graph/appc-dgraph/provider/src/test/java/org/onap/appc/dg/TestDownloadIsbcConfig.java
index 92e39e862..231dd6b0a 100644
--- a/appc-directed-graph/appc-dgraph/provider/src/test/java/org/onap/appc/dg/TestDownloadIsbcConfig.java
+++ b/appc-directed-graph/appc-dgraph/provider/src/test/java/org/onap/appc/dg/TestDownloadIsbcConfig.java
@@ -1,9 +1,11 @@
/*-
* ============LICENSE_START=======================================================
- * ONAP : APP-C
+ * ONAP : APPC
* ================================================================================
- * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
+ * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
* ================================================================================
+ * Copyright (C) 2017 Amdocs
+ * =============================================================================
* 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
@@ -15,6 +17,8 @@
* 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=========================================================
*/
@@ -37,115 +41,115 @@ import com.att.eelf.configuration.EELFLogger;
import com.att.eelf.configuration.EELFManager;
public class TestDownloadIsbcConfig /* extends AbstractDGTestCase */{
- private static final EELFLogger logger = EELFManager.getInstance().getLogger(TestDownloadIsbcConfig.class);
- public static String DownloadIsbcConfigXML = "src/main/resources/xml/APPC_DownloadIsbcConfig.xml";
+ private static final EELFLogger logger = EELFManager.getInstance().getLogger(TestDownloadIsbcConfig.class);
+ public static String DownloadIsbcConfigXML = "src/main/resources/xml/APPC_DownloadIsbcConfig.xml";
/*
- @Test
- public void testDownloadIsbcConfigSuccess() {
- try {
+ @Test
+ public void testDownloadIsbcConfigSuccess() {
+ try {
+
+ String propertyfileName = "APPC/DownloadIsbcConfig/DownloadIsbcConfig_Success.properties";
+
+ // Register Call graphs
+ String injectGraphXmls[] = new String[] { DownloadIsbcConfigXML };
+
+ Map<String, Object> serviceReferences = new HashMap<String, Object>();
+
+
+
+
+ GraphKey graphKey = new GraphKey("APPC", null, "DownloadIsbcConfig", null);
+ DGTestCase tc = new DGTestCase(graphKey);
+
+
+ tc.setInjectGraphXmls(injectGraphXmls);
+ tc.setServiceReferences(serviceReferences);
+ tc.setPropertyfileName(propertyfileName);
+
+
+
+ SvcLogicContext ctx = new SvcLogicContext();
+ processTestCase(tc, ctx);
+
+
+
+
+ } catch (Exception e) {
+ e.printStackTrace();
+ }
+ }
+
+
+ @Test
+ public void testConfigFileFailure() {
+ try {
+
+ String propertyfileName = "APPC/DownloadIsbcConfig/ConfigFile_Failure.properties";
+
+ // Register Call graphs
+ String injectGraphXmls[] = new String[] { DownloadIsbcConfigXML };
+
+ Map<String, Object> serviceReferences = new HashMap<String, Object>();
+
+
+
+ GraphKey graphKey = new GraphKey("APPC", null, "DownloadIsbcConfig", null);
+ DGTestCase tc = new DGTestCase(graphKey);
- String propertyfileName = "APPC/DownloadIsbcConfig/DownloadIsbcConfig_Success.properties";
-
- // Register Call graphs
- String injectGraphXmls[] = new String[] { DownloadIsbcConfigXML };
- Map<String, Object> serviceReferences = new HashMap<String, Object>();
-
-
-
-
- GraphKey graphKey = new GraphKey("APPC", null, "DownloadIsbcConfig", null);
- DGTestCase tc = new DGTestCase(graphKey);
+ tc.setInjectGraphXmls(injectGraphXmls);
+ tc.setServiceReferences(serviceReferences);
+ tc.setPropertyfileName(propertyfileName);
-
- tc.setInjectGraphXmls(injectGraphXmls);
- tc.setServiceReferences(serviceReferences);
- tc.setPropertyfileName(propertyfileName);
-
- SvcLogicContext ctx = new SvcLogicContext();
- processTestCase(tc, ctx);
+ SvcLogicContext ctx = new SvcLogicContext();
+ processTestCase(tc, ctx);
-
- } catch (Exception e) {
- e.printStackTrace();
- }
- }
+ } catch (Exception e) {
+ e.printStackTrace();
+ }
+ }
- @Test
- public void testConfigFileFailure() {
- try {
- String propertyfileName = "APPC/DownloadIsbcConfig/ConfigFile_Failure.properties";
-
- // Register Call graphs
- String injectGraphXmls[] = new String[] { DownloadIsbcConfigXML };
+ @Test
+ public void testPutFailure() {
+ try {
- Map<String, Object> serviceReferences = new HashMap<String, Object>();
-
-
-
- GraphKey graphKey = new GraphKey("APPC", null, "DownloadIsbcConfig", null);
- DGTestCase tc = new DGTestCase(graphKey);
+ String propertyfileName = "APPC/DownloadIsbcConfig/Put_Failure.properties";
-
- tc.setInjectGraphXmls(injectGraphXmls);
- tc.setServiceReferences(serviceReferences);
- tc.setPropertyfileName(propertyfileName);
-
+ // Register Call graphs
+ String injectGraphXmls[] = new String[] { DownloadIsbcConfigXML };
+ Map<String, Object> serviceReferences = new HashMap<String, Object>();
- SvcLogicContext ctx = new SvcLogicContext();
- processTestCase(tc, ctx);
-
- } catch (Exception e) {
- e.printStackTrace();
- }
- }
+ GraphKey graphKey = new GraphKey("APPC", null, "DownloadIsbcConfig", null);
+ DGTestCase tc = new DGTestCase(graphKey);
-
- @Test
- public void testPutFailure() {
- try {
- String propertyfileName = "APPC/DownloadIsbcConfig/Put_Failure.properties";
-
- // Register Call graphs
- String injectGraphXmls[] = new String[] { DownloadIsbcConfigXML };
+ tc.setInjectGraphXmls(injectGraphXmls);
+ tc.setServiceReferences(serviceReferences);
+ tc.setPropertyfileName(propertyfileName);
- Map<String, Object> serviceReferences = new HashMap<String, Object>();
-
-
-
-
- GraphKey graphKey = new GraphKey("APPC", null, "DownloadIsbcConfig", null);
- DGTestCase tc = new DGTestCase(graphKey);
-
- tc.setInjectGraphXmls(injectGraphXmls);
- tc.setServiceReferences(serviceReferences);
- tc.setPropertyfileName(propertyfileName);
-
+ SvcLogicContext ctx = new SvcLogicContext();
+ processTestCase(tc, ctx);
- SvcLogicContext ctx = new SvcLogicContext();
- processTestCase(tc, ctx);
-
- } catch (Exception e) {
- e.printStackTrace();
- }
- }
+ } catch (Exception e) {
+ e.printStackTrace();
+ }
+ }
*/