aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-be
diff options
context:
space:
mode:
authorfranciscovila <javier.paradela.vila@est.tech>2023-10-12 11:09:43 +0100
committerMichael Morris <michael.morris@est.tech>2023-10-13 08:58:56 +0000
commitd89a5d3cf1ed1f81cdda754464eff07781824053 (patch)
tree14fdb5b10f8eec16de54cf8bf5ae86a701845484 /catalog-be
parent0d9d05e705a6fbc9c4370fdd3a8ad543d04f8210 (diff)
Increase unit test coverage for backend
Provided some Junit test coverage for backed Issue-ID: SDC-4654 Signed-off-by: franciscovila <javier.paradela.vila@est.tech> Change-Id: I91b3f4326256312ab998d32fce9eb13b3e39b8d1
Diffstat (limited to 'catalog-be')
-rw-r--r--catalog-be/src/test/java/org/openecomp/sdc/config/CatalogBESpringConfigTest.java128
-rw-r--r--catalog-be/src/test/java/org/openecomp/sdc/config/MicrometerSpringConfigTest.java44
2 files changed, 172 insertions, 0 deletions
diff --git a/catalog-be/src/test/java/org/openecomp/sdc/config/CatalogBESpringConfigTest.java b/catalog-be/src/test/java/org/openecomp/sdc/config/CatalogBESpringConfigTest.java
new file mode 100644
index 0000000000..354f37bf0f
--- /dev/null
+++ b/catalog-be/src/test/java/org/openecomp/sdc/config/CatalogBESpringConfigTest.java
@@ -0,0 +1,128 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * SDC
+ * ================================================================================
+ * Copyright (C) 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=========================================================
+ * Modifications copyright (c) 2019 Nokia
+ * ================================================================================
+ */
+
+package org.openecomp.sdc.config;
+
+import static org.mockito.Mockito.mock;
+
+import org.apache.http.impl.client.CloseableHttpClient;
+import org.junit.Test;
+import org.onap.sdc.security.PortalClient;
+import org.openecomp.sdc.be.auditing.impl.ConfigurationProvider;
+import org.openecomp.sdc.be.components.impl.ComponentLocker;
+import org.openecomp.sdc.be.components.impl.lock.ComponentLockAspect;
+import org.openecomp.sdc.be.components.lifecycle.LifecycleBusinessLogic;
+import org.openecomp.sdc.be.dao.janusgraph.JanusGraphClient;
+import org.openecomp.sdc.be.dao.janusgraph.JanusGraphDao;
+import org.openecomp.sdc.be.ecomp.converters.AssetMetadataConverter;
+import org.openecomp.sdc.be.filters.PortalConfiguration;
+import org.openecomp.sdc.be.filters.ThreadLocalUtils;
+import org.openecomp.sdc.be.tosca.CommonCsarGenerator;
+import org.openecomp.sdc.be.tosca.DefaultCsarGenerator;
+
+public class CatalogBESpringConfigTest {
+
+ private CatalogBESpringConfig createTestSubject() {
+ return new CatalogBESpringConfig(mock(ComponentLocker.class));
+ }
+
+ @Test
+ public void testLifecycleBusinessLogic() throws Exception {
+ CatalogBESpringConfig testSubject;
+ LifecycleBusinessLogic result;
+
+ // default test
+ testSubject = createTestSubject();
+ result = testSubject.lifecycleBusinessLogic();
+ }
+
+ @Test
+ public void testConfigurationProvider() throws Exception {
+ CatalogBESpringConfig testSubject;
+ ConfigurationProvider result;
+
+ // default test
+ testSubject = createTestSubject();
+ result = testSubject.configurationProvider();
+ }
+
+ @Test
+ public void testAssetMetadataConverter() throws Exception {
+ CatalogBESpringConfig testSubject;
+ AssetMetadataConverter result;
+
+ // default test
+ testSubject = createTestSubject();
+ result = testSubject.assetMetadataConverter();
+ }
+
+ @Test
+ public void testComponentLockAspect() throws Exception {
+ CatalogBESpringConfig testSubject;
+ ComponentLockAspect result;
+
+ // default test
+ testSubject = createTestSubject();
+ result = testSubject.componentLockAspect();
+ }
+
+ @Test
+ public void testHttpClientConnectionManager() throws Exception {
+ CatalogBESpringConfig testSubject;
+ CloseableHttpClient result;
+
+ // default test
+ testSubject = createTestSubject();
+ result = testSubject.httpClientConnectionManager();
+ }
+
+ @Test
+ public void testPortalConfiguration() throws Exception {
+ CatalogBESpringConfig testSubject;
+ PortalConfiguration result;
+
+ // default test
+ testSubject = createTestSubject();
+ result = testSubject.portalConfiguration();
+ }
+
+ @Test
+ public void testThreadLocalUtils() throws Exception {
+ CatalogBESpringConfig testSubject;
+ ThreadLocalUtils result;
+
+ // default test
+ testSubject = createTestSubject();
+ result = testSubject.threadLocalUtils();
+ }
+
+ @Test
+ public void testPortalClient() throws Exception {
+ CatalogBESpringConfig testSubject;
+ PortalClient result;
+
+ // default test
+ testSubject = createTestSubject();
+ result = testSubject.portalClient();
+ }
+
+}
diff --git a/catalog-be/src/test/java/org/openecomp/sdc/config/MicrometerSpringConfigTest.java b/catalog-be/src/test/java/org/openecomp/sdc/config/MicrometerSpringConfigTest.java
new file mode 100644
index 0000000000..98bce96e4d
--- /dev/null
+++ b/catalog-be/src/test/java/org/openecomp/sdc/config/MicrometerSpringConfigTest.java
@@ -0,0 +1,44 @@
+/*
+ * -
+ * ============LICENSE_START=======================================================
+ * Copyright (C) 2022 Nordix Foundation.
+ * ================================================================================
+ * 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.
+ *
+ * SPDX-License-Identifier: Apache-2.0
+ * ============LICENSE_END=========================================================
+ */
+
+package org.openecomp.sdc.config;
+
+import io.micrometer.prometheus.PrometheusMeterRegistry;
+import org.junit.Test;
+import org.openecomp.sdc.be.components.lifecycle.LifecycleBusinessLogic;
+
+public class MicrometerSpringConfigTest {
+
+ private MicrometerSpringConfig createTestSubject() {
+ return new MicrometerSpringConfig();
+ }
+
+ @Test
+ public void testPrometheusRegistry() throws Exception {
+ MicrometerSpringConfig testSubject;
+ PrometheusMeterRegistry result;
+
+ // default test
+ testSubject = createTestSubject();
+ result = testSubject.prometheusRegistry();
+ }
+
+}