From 5fb7cd971b57bb25ce7fb01b27576d02777558e5 Mon Sep 17 00:00:00 2001 From: Sandeep J Date: Tue, 11 Sep 2018 18:50:52 +0530 Subject: added test case to ConfigComponentAdaptorTest to increase code coverage Issue-ID: APPC-1086 Change-Id: I49259f114ed7e180c0dd4d71de11da331634dc12 Signed-off-by: Sandeep J --- .../appc/ccadaptor/ConfigComponentAdaptor.java | 35 ++++++++++++++++++++++ .../appc/ccadaptor/ConfigComponentAdaptorTest.java | 24 +++++++++++++++ 2 files changed, 59 insertions(+) (limited to 'appc-config/appc-config-adaptor/provider/src') diff --git a/appc-config/appc-config-adaptor/provider/src/main/java/org/onap/appc/ccadaptor/ConfigComponentAdaptor.java b/appc-config/appc-config-adaptor/provider/src/main/java/org/onap/appc/ccadaptor/ConfigComponentAdaptor.java index bffa396d2..a224b7f65 100644 --- a/appc-config/appc-config-adaptor/provider/src/main/java/org/onap/appc/ccadaptor/ConfigComponentAdaptor.java +++ b/appc-config/appc-config-adaptor/provider/src/main/java/org/onap/appc/ccadaptor/ConfigComponentAdaptor.java @@ -4,6 +4,8 @@ * ================================================================================ * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved. * ============================================================================= + * Modifications Copyright (C) 2018 IBM. + * ============================================================================= * 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 @@ -54,6 +56,39 @@ private String configPassword = null; private String auditUrl = null; private String auditUser = null; private String auditPassword = null; + +public String getConfigUrl() { + return configUrl; +} + +public String getConfigUser() { + return configUser; +} + +public String getConfigPassword() { + return configPassword; +} + +public String getAuditUrl() { + return auditUrl; +} + +public String getAuditUser() { + return auditUser; +} + +public String getAuditPassword() { + return auditPassword; +} + +public String getConfigCallbackUrl() { + return configCallbackUrl; +} + +public String getAuditCallbackUrl() { + return auditCallbackUrl; +} + private String configCallbackUrl = null; private String auditCallbackUrl = null; private int DEFAULT_TIMEOUT_GETRUNNING_CLI = 120 * 1000 ; diff --git a/appc-config/appc-config-adaptor/provider/src/test/java/org/onap/appc/ccadaptor/ConfigComponentAdaptorTest.java b/appc-config/appc-config-adaptor/provider/src/test/java/org/onap/appc/ccadaptor/ConfigComponentAdaptorTest.java index e7c00a56b..1cf9b8ecf 100644 --- a/appc-config/appc-config-adaptor/provider/src/test/java/org/onap/appc/ccadaptor/ConfigComponentAdaptorTest.java +++ b/appc-config/appc-config-adaptor/provider/src/test/java/org/onap/appc/ccadaptor/ConfigComponentAdaptorTest.java @@ -306,5 +306,29 @@ public class ConfigComponentAdaptorTest { String result = Whitebox.invokeMethod(cca, "prepare", ctx, "test", "test"); Assert.assertEquals("template", result); } + + @Test + public void testConstructorForNonNullProperties() throws Exception { + Properties props = new Properties(); + props.setProperty("configComponent.url", "testConfigUrl"); + props.setProperty("configComponent.user", "testConfigUser"); + props.setProperty("configComponent.passwd", "testConfigPwd"); + props.setProperty("auditComponent.url", "testAuditUrl"); + props.setProperty("auditComponent.user", "testAuditUser"); + props.setProperty("auditComponent.passwd", "testAuditPwd"); + props.setProperty("service-configuration-notification-url", "testServiceNotificationUrl"); + props.setProperty("audit-configuration-notification-url", "testAuditNotificationUrl"); + + ConfigComponentAdaptor cca = new ConfigComponentAdaptor(props); + Assert.assertEquals("testConfigUrl", cca.getConfigUrl()); + Assert.assertEquals("testConfigUser", cca.getConfigUser()); + Assert.assertEquals("testConfigPwd", cca.getConfigPassword()); + Assert.assertEquals("testAuditUrl", cca.getAuditUrl()); + Assert.assertEquals("testAuditUser", cca.getAuditUser()); + Assert.assertEquals("testAuditPwd", cca.getAuditPassword()); + Assert.assertEquals("testServiceNotificationUrl", cca.getConfigCallbackUrl()); + Assert.assertEquals("testAuditNotificationUrl", cca.getAuditCallbackUrl()); + + } } -- cgit 1.2.3-korg